cloud-web-corejs 1.0.114 → 1.0.116
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/store/modules/tagsView.js +1 -14
- package/src/views/user/user/edit.vue +1059 -1041
- package/src/views/user/user/list.vue +19 -0
@@ -205,6 +205,24 @@ export default {
|
|
205
205
|
});
|
206
206
|
},
|
207
207
|
initTableList() {
|
208
|
+
let otherColumns = [];
|
209
|
+
let userType = this.userType
|
210
|
+
if(userType==1){
|
211
|
+
|
212
|
+
}else if(userType==2){
|
213
|
+
otherColumns.push(...[
|
214
|
+
{
|
215
|
+
field: 'signatoryName',
|
216
|
+
title: this.$t1('签约人'),
|
217
|
+
width: 150
|
218
|
+
},
|
219
|
+
{
|
220
|
+
field: 'signatoryMobile',
|
221
|
+
title: this.$t1('签约人电话'),
|
222
|
+
width: 150
|
223
|
+
},
|
224
|
+
])
|
225
|
+
}
|
208
226
|
let tableOption = {
|
209
227
|
vue: this,
|
210
228
|
tableRef: 'table-m1',
|
@@ -345,6 +363,7 @@ export default {
|
|
345
363
|
title: this.$t1('所属组织'),
|
346
364
|
width: 250
|
347
365
|
},
|
366
|
+
...otherColumns,
|
348
367
|
{
|
349
368
|
field: 'createBy',
|
350
369
|
title: this.$t1('创建人'),
|