diff --git a/src/views/production-master-data/process-model/process-category/index.vue b/src/views/production-master-data/process-model/process-category/index.vue index 3b19420c..503b6e70 100644 --- a/src/views/production-master-data/process-model/process-category/index.vue +++ b/src/views/production-master-data/process-model/process-category/index.vue @@ -148,7 +148,6 @@ export default { }, created () { this.columns = useTableColumns([ - { prop: 'sort', label: this.key('sort'), width: 80 }, { prop: 'code', label: this.key('code'), minWidth: 120 }, { prop: 'name', label: this.key('name'), minWidth: 120 }, { prop: 'remark', label: this.key('remark') }, diff --git a/src/views/production-master-data/process-model/process-routing-card/index.vue b/src/views/production-master-data/process-model/process-routing-card/index.vue index 67da6cae..a7a417a6 100644 --- a/src/views/production-master-data/process-model/process-routing-card/index.vue +++ b/src/views/production-master-data/process-model/process-routing-card/index.vue @@ -314,7 +314,6 @@ export default { this.columns = useTableColumns([ { prop: 'up', label: '', slot: 'up', width: 40 }, { prop: 'down', label: '', slot: 'down', width: 40 }, - { prop: 'sort', label: this.key('sort'), slot: 'sort', width: 80 }, { prop: 'code', label: this.key('step_code'), minWidth: 120 }, { prop: 'name', label: this.key('step_name'), minWidth: 140 }, { prop: 'workingsubclass_name', label: this.key('process_unit_name'), minWidth: 140 }, diff --git a/src/views/production-master-data/process-model/process-routing/index.vue b/src/views/production-master-data/process-model/process-routing/index.vue index 1202e3f6..1486c053 100644 --- a/src/views/production-master-data/process-model/process-routing/index.vue +++ b/src/views/production-master-data/process-model/process-routing/index.vue @@ -228,7 +228,6 @@ export default { }, created () { this.columns = useTableColumns([ - { prop: 'sort', label: this.key('sort'), width: 80 }, { prop: 'code', label: this.key('code'), minWidth: 120 }, { prop: 'name', label: this.key('name'), minWidth: 140 }, { prop: 'flow_category_name', label: this.key('category'), minWidth: 120 }, diff --git a/src/views/production-master-data/process-model/process-step/index.vue b/src/views/production-master-data/process-model/process-step/index.vue index 0d3ebe70..f076be97 100644 --- a/src/views/production-master-data/process-model/process-step/index.vue +++ b/src/views/production-master-data/process-model/process-step/index.vue @@ -195,7 +195,6 @@ export default { }, created () { this.columns = useTableColumns([ - { prop: 'sort ', label: this.key('sort'), width: 80 }, { prop: 'code', label: this.key('process_unit_code'), minWidth: 120 }, { prop: 'name', label: this.key('process_unit_name'), minWidth: 120 }, { prop: 'device_category_name', label: this.key('device_category'), minWidth: 120 },