@@ -341,6 +347,7 @@ export default {
abilityType: '', // 能力
beginTime: '', // 开始时间
endTime: '', // 结束时间
+ resourceName:'',//资源名称
typeOptions: [
{ name: '智能算法', value: 1 },
{ name: '图层服务', value: 2 },
@@ -523,7 +530,8 @@ export default {
approveStatus: this.status,
deptId: this.abilityDepartment,
startDate: this.startDate,
- endDate: this.endDate
+ endDate: this.endDate,
+ resourceName:this.resourceName
})
})
},
@@ -589,7 +597,9 @@ export default {
approveStatus: this.status,
deptId: this.abilityDepartment,
startDate: this.startDate,
- endDate: this.endDate
+ endDate: this.endDate,
+ resourceName:this.resourceName
+
})
})
},
@@ -658,7 +668,8 @@ export default {
deptId: this.abilityDepartment,
type: this.abilityType,
startDate: this.startDate,
- endDate: this.endDate
+ endDate: this.endDate,
+ resourceName:this.resourceName
}
})
.then((res) => {
@@ -670,7 +681,8 @@ export default {
approveStatus: this.status,
deptId: this.abilityDepartment,
startDate: this.startDate,
- endDate: this.endDate
+ endDate: this.endDate,
+ resourceName:this.resourceName
})
})
},
@@ -697,7 +709,8 @@ export default {
deptId: this.abilityDepartment,
type: this.abilityType,
startDate: this.startDate,
- endDate: this.endDate
+ endDate: this.endDate,
+ resourceName:this.resourceName
}
})
.then((res) => {
@@ -708,7 +721,8 @@ export default {
approveStatus: this.status,
deptId: this.abilityDepartment,
startDate: this.startDate,
- endDate: this.endDate
+ endDate: this.endDate,
+ resourceName:this.resourceName
})
})
},
@@ -952,7 +966,8 @@ export default {
approveStatus: this.status,
deptId: this.abilityDepartment,
startDate: this.startDate,
- endDate: this.endDate
+ endDate: this.endDate,
+ resourceName:this.resourceName
})
if (this.departmentId === 1) {
// if (this.detailFlag) {
diff --git a/back/src/views/modules/activiti/my-work-dynamics.vue b/back/src/views/modules/activiti/my-work-dynamics.vue
index 83c0809c..7e1bbb0a 100644
--- a/back/src/views/modules/activiti/my-work-dynamics.vue
+++ b/back/src/views/modules/activiti/my-work-dynamics.vue
@@ -508,7 +508,12 @@ export default {
},
// 删除数据
deleteData (row) {
- console.log(row)
+ if (this.deleteDataArr.length < 1) {
+ this.$message({
+ type: 'info',
+ message: '请选择要删除的数据'
+ })
+ }else{
this.$confirm('此操作将删除当前数据, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
@@ -542,7 +547,7 @@ export default {
type: 'info',
message: '已取消删除'
})
- })
+ })}
},
// 预览工作动态信息
async openPreviewData (row) {
diff --git a/back/src/views/modules/myAgent/ConferenceRoom.vue b/back/src/views/modules/myAgent/ConferenceRoom.vue
index 33422707..5c7bb638 100644
--- a/back/src/views/modules/myAgent/ConferenceRoom.vue
+++ b/back/src/views/modules/myAgent/ConferenceRoom.vue
@@ -252,8 +252,8 @@ export default {
{ required: true, message: '请填写描述内容', trigger: 'blur' },
{
min: 1,
- max: 500,
- message: '长度在 1 到 500 个字符',
+ max: 255,
+ message: '长度在 1 到 255 个字符',
trigger: 'blur'
}
]
diff --git a/front/src/views/home/AbilityToApplyFor.vue b/front/src/views/home/AbilityToApplyFor.vue
index a5741a02..dd1f572c 100644
--- a/front/src/views/home/AbilityToApplyFor.vue
+++ b/front/src/views/home/AbilityToApplyFor.vue
@@ -29,7 +29,8 @@
p-id="5928"
>
- 展开
+ 展开
+ (共{{totalDataNum}}条数据)
- 收起
+ 收起
+ const getDataTotalNum = () =>{
+ let totalNum =0;
+ dataForm.value.forEach((item)=>{
+ totalNum = totalNum +item.arr.length;
+ });
+ totalDataNum.value = totalNum;
+ }
+ getDataTotalNum();
+ //获取数据的总条数
+
+