|
|
@@ -56,7 +56,7 @@
|
|
|
<div class="dispatch-process-meta">
|
|
|
工序编码:{{ taskCodeDisplay(activeTask) }},所属班组:{{
|
|
|
dispatchTeamDisplay(activeTask)
|
|
|
- }}
|
|
|
+ }},班组长:{{ dispatchTeamLeaderDisplay(activeTask) }}
|
|
|
</div>
|
|
|
|
|
|
<div class="dispatch-toolbar">
|
|
|
@@ -1976,8 +1976,8 @@
|
|
|
this.$set(task, 'executionObjectType', '');
|
|
|
this.$set(task, 'executionObjectName', '');
|
|
|
this.$set(task, 'executionTeamName', '');
|
|
|
- this.$set(task, 'executionTeamLeader', '');
|
|
|
- this.$set(task, 'executionTeamLeaderId', '');
|
|
|
+ // this.$set(task, 'executionTeamLeader', '');
|
|
|
+ // this.$set(task, 'executionTeamLeaderId', '');
|
|
|
});
|
|
|
},
|
|
|
createDispatchTaskRow(row) {
|
|
|
@@ -2019,8 +2019,8 @@
|
|
|
this.$set(task, 'executionObjectType', '');
|
|
|
this.$set(task, 'executionObjectName', '');
|
|
|
this.$set(task, 'executionTeamName', '');
|
|
|
- this.$set(task, 'executionTeamLeader', '');
|
|
|
- this.$set(task, 'executionTeamLeaderId', '');
|
|
|
+ // this.$set(task, 'executionTeamLeader', '');
|
|
|
+ // this.$set(task, 'executionTeamLeaderId', '');
|
|
|
},
|
|
|
clearDispatchTaskBinding(row, task = this.getDispatchRowTask(row)) {
|
|
|
if (!task) {
|
|
|
@@ -2036,8 +2036,8 @@
|
|
|
this.$set(task, 'executionObjectType', '');
|
|
|
this.$set(task, 'executionObjectName', '');
|
|
|
this.$set(task, 'executionTeamName', '');
|
|
|
- this.$set(task, 'executionTeamLeader', '');
|
|
|
- this.$set(task, 'executionTeamLeaderId', '');
|
|
|
+ // this.$set(task, 'executionTeamLeader', '');
|
|
|
+ // this.$set(task, 'executionTeamLeaderId', '');
|
|
|
},
|
|
|
clearDispatchQuantityInput(row) {
|
|
|
this.clearDispatchObject(row);
|
|
|
@@ -2131,8 +2131,8 @@
|
|
|
this.$set(task, 'executionObjectType', '');
|
|
|
this.$set(task, 'executionObjectName', '');
|
|
|
this.$set(task, 'executionTeamName', '');
|
|
|
- this.$set(task, 'executionTeamLeader', '');
|
|
|
- this.$set(task, 'executionTeamLeaderId', '');
|
|
|
+ // this.$set(task, 'executionTeamLeader', '');
|
|
|
+ // this.$set(task, 'executionTeamLeaderId', '');
|
|
|
},
|
|
|
clearDispatchStartTime(row) {
|
|
|
if (row) {
|
|
|
@@ -2789,6 +2789,12 @@
|
|
|
]) || '所有班组'
|
|
|
);
|
|
|
},
|
|
|
+ dispatchTeamLeaderDisplay(row) {
|
|
|
+ return (
|
|
|
+ row?.executionTeamLeader ||
|
|
|
+ '-'
|
|
|
+ );
|
|
|
+ },
|
|
|
handleDispatchPageSizeChange(size) {
|
|
|
this.dispatchPageSize = size;
|
|
|
this.dispatchPage = 1;
|