遮罩条
This commit is contained in:
parent
adc4f901b8
commit
2a9df497fe
@ -241,7 +241,6 @@
|
||||
</div>
|
||||
</template>
|
||||
</el-table-column> -->
|
||||
|
||||
<el-table-column prop="pkgName" label="操作" show-overflow-tooltip >
|
||||
<template slot-scope="scope">
|
||||
<div class="table-row flex-column justify-content-between">
|
||||
@ -250,7 +249,7 @@
|
||||
<el-checkbox-group v-model="selectionData">
|
||||
<!-- 此处的label是复选框右边显示的值,也是选中后的值。如果要一行的数据,直接使用row即可 -->
|
||||
<!-- label的内容会显示在页面上,需要配合css把label的内容隐藏掉 -->
|
||||
<el-checkbox :disabled="scope.row.disabled" :key="scope.row.id" :label="scope.row.id"></el-checkbox>
|
||||
<el-checkbox :disabled="scope.row.caseStatus == 1 ? true :false" :key="scope.row.id" :label="scope.row.id"></el-checkbox>
|
||||
</el-checkbox-group>
|
||||
</span>
|
||||
<span class="f-weight500 color-000 f16">被申请人:
|
||||
@ -563,10 +562,11 @@ import { values } from "lodash";
|
||||
},
|
||||
// 全选
|
||||
handleCheckAllChange(value){
|
||||
|
||||
this.selectionData = value ? this.enabledDataList.map(el=>el.id) : [];
|
||||
// console.log(value,this.enabledDataList,'this.enabledDataList')
|
||||
let chooseData = this.enabledDataList.filter(el=>el.caseStatus == 0)
|
||||
this.selectionData = value ? chooseData.map(el=>el.id) : [];
|
||||
this.indeterminate = false;
|
||||
console.log(this.selectionData,'his.selectionData')
|
||||
// console.log(this.selectionData,'his.selectionData')
|
||||
},
|
||||
|
||||
// 导入
|
||||
|
||||
@ -169,11 +169,9 @@ import api from "@/services/caseManagement";
|
||||
export default {
|
||||
components: {
|
||||
caseVideoReservationDialog: () => import('./caseVideoReservationDialog'),//
|
||||
|
||||
singleofficeWritPopover: () => import('./singleofficeWritPopover.vue'),//发起签字
|
||||
singleofficeSealPopover: () => import('./singleofficeSealPopover.vue'),//发起签章
|
||||
singleofficeDeliveryPopover: () => import('./singleofficeDeliveryPopover.vue'),//发起送达
|
||||
|
||||
singleJointlyPopover: () => import('./singleJointlyPopover.vue'),//案件协办
|
||||
singlesmsPopover: () => import('./singlesmsPopover.vue'),//发送短信
|
||||
VideoRoom: () => import('./VideoRoom'),
|
||||
|
||||
@ -40,7 +40,7 @@ const caseManagementApi = {
|
||||
},
|
||||
// 通过id获取案件详情
|
||||
getCaseInfoById: data => {
|
||||
return service.service.get(`${apiAdmin}cases/caseInfo/getCaseInfoById?id=${data}`)
|
||||
return service.service.get(`${apiAdmin}cases/caseInfo/getCaseInfoById?id=${data}`,{hideLoading:true})
|
||||
},
|
||||
// 新增案件
|
||||
addCaseInfo: data => {
|
||||
@ -149,7 +149,7 @@ const caseManagementApi = {
|
||||
|
||||
// 短信模板
|
||||
getSmsTemplate: data => {
|
||||
return service.service.get(`${apiAdmin}api/trace/sms/template`, data)
|
||||
return service.service.get(`${apiAdmin}api/trace/sms/template`,{hideLoading:true})
|
||||
},
|
||||
// 发送短信
|
||||
smsSend: data => {
|
||||
@ -205,7 +205,7 @@ const caseManagementApi = {
|
||||
|
||||
// 案件文书-列表
|
||||
getCaseGenerateList: data => {
|
||||
return service.service.post(`${apiAdmin}api/trace/traceGenerate/getCaseGenerateList`, data)
|
||||
return service.service.post(`${apiAdmin}api/trace/traceGenerate/getCaseGenerateList`, data, {hideLoading:true})
|
||||
},
|
||||
// 案件文书-上传模板
|
||||
customFileUpload: data => {
|
||||
@ -251,7 +251,7 @@ const caseManagementApi = {
|
||||
|
||||
// 同组的用户列表(协办员选择项)
|
||||
getCurrGroupUserList: data => {
|
||||
return service.service.get(`${apiAdmin}system/user/getCurrGroupUserList`, data, {hideLoading:true})
|
||||
return service.service.get(`${apiAdmin}system/user/getCurrGroupUserList`, {hideLoading:true})
|
||||
},
|
||||
// 配置协办员
|
||||
updateAssistMediator: data => {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user