cloud-web-corejs 1.0.54-dev.159 → 1.0.54-dev.160
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
CHANGED
@@ -404,6 +404,12 @@
|
|
404
404
|
:disabled="!!row.systems || !!row.relationZd"
|
405
405
|
/>
|
406
406
|
</template>
|
407
|
+
<template #updateIgnore="{ row, rowIndex }">
|
408
|
+
<el-checkbox
|
409
|
+
v-model="row.updateIgnore"
|
410
|
+
:disabled="!!row.systems || !!row.relationZd"
|
411
|
+
/>
|
412
|
+
</template>
|
407
413
|
<template #codeType="{ row, rowIndex }">
|
408
414
|
<el-form-item
|
409
415
|
:prop="'szTaZdMbDTOs.' + rowIndex + '.codeType'"
|
@@ -398,6 +398,14 @@ modules = {
|
|
398
398
|
default: "atened"
|
399
399
|
}
|
400
400
|
},
|
401
|
+
{
|
402
|
+
title: this.$t1('是否更新忽略字段'),
|
403
|
+
field: 'updateIgnore',
|
404
|
+
width: 180,
|
405
|
+
slots: {
|
406
|
+
default: "updateIgnore"
|
407
|
+
}
|
408
|
+
},
|
401
409
|
{
|
402
410
|
title: this.$t1("编码类型"),
|
403
411
|
field: "codeType",
|
@@ -501,7 +509,8 @@ modules = {
|
|
501
509
|
fromTable: false,
|
502
510
|
toTaBmZd: null,
|
503
511
|
treeFlag: null,
|
504
|
-
atened: false
|
512
|
+
atened: false,
|
513
|
+
updateIgnore: false
|
505
514
|
};
|
506
515
|
this.szTaMb.szTaZdMbDTOs.splice(0, 0, item);
|
507
516
|
},
|