apply-clients 4.1.70 → 4.1.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/apply.js +72 -72
- package/src/components/product/Function/InstallInfoSelect.vue +281 -281
- package/src/components/product/Process/Processes/UserFireInfo.vue +409 -409
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +1236 -1233
- package/src/components/product/Process/Processes/devicesDetails.vue +834 -834
- package/src/components/product/Process/Service/ServiceControl.vue +7 -7
- package/src/components/product/Supervisory/SupervisoryhCart.vue +0 -7
|
@@ -726,13 +726,13 @@ export default {
|
|
|
726
726
|
this.$showAlert('合同编号已存在!!!', 'warning', 3000)
|
|
727
727
|
}
|
|
728
728
|
//拼写合同编号
|
|
729
|
-
if (this.selectdata.f_apply_type == '工商户报建') {
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
}else {
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
}
|
|
729
|
+
// if (this.selectdata.f_apply_type == '工商户报建') {
|
|
730
|
+
// this.show_data.fields[index].value = "ZS-S-" + this.show_data.fields[index].value
|
|
731
|
+
// // this.show_data.fields[index].value = "ZS-S-" + this.show_data.fields[index].value + "-" + new Date().Format('yyyy-MM-dd')
|
|
732
|
+
// }else {
|
|
733
|
+
// this.show_data.fields[index].value = "ZS-M-" + this.show_data.fields[index].value
|
|
734
|
+
// // this.show_data.fields[index].value = "ZS-M-" + this.show_data.fields[index].value + "-" + new Date().Format('yyyy-MM-dd')
|
|
735
|
+
// }
|
|
736
736
|
}
|
|
737
737
|
}
|
|
738
738
|
if (this.show_data.fields[index].label === '单价(户)') {
|
|
@@ -48,15 +48,8 @@
|
|
|
48
48
|
},
|
|
49
49
|
//点击获取节点名
|
|
50
50
|
getdefname(row){
|
|
51
|
-
if(row.defname === this.$workflow_vue.start_activity){
|
|
52
51
|
row = Object.assign({},this.selectdata,row)
|
|
53
52
|
this.$dispatch('apply', row)
|
|
54
|
-
}else if(this.check(row.actorexpression)){
|
|
55
|
-
row = Object.assign({},this.selectdata,row)
|
|
56
|
-
this.$dispatch('apply', row)
|
|
57
|
-
}else{
|
|
58
|
-
this.$showMessage("对不起,您没有查看此节点的权限!")
|
|
59
|
-
}
|
|
60
53
|
},
|
|
61
54
|
// 检测是否有权限
|
|
62
55
|
check(actorexpression){
|