yangys
2025-09-19 ce70bd97c7f2577f0978b39b9da1ccdd8d5b768f
src/views/flowmgr/taskassign.vue
@@ -198,13 +198,13 @@
            rules: [{ required: true, message: '必填', trigger: 'blur' }],
          },
          {
            label: '偏离单号',
            label: '临时更改单号',
            prop: 'deviation',
            type: 'input',
            span: 12,
            dataType: 'string',
            class:'input_holder_warn',
            placeholder:'无偏离单任务请留空',
            placeholder:'非临时更改单任务请留空',
            blur: (col) => {
              this.handleTrim(col)
            },
@@ -214,6 +214,7 @@
            label: '主管工艺',
            prop: 'producePlanId',
            type: 'select',//column 12
            clearable:true,
            remote: true,
            placeholder:'无法匹配人员职责表时请选择主管工艺',
            dicUrl: `/blade-mdm/producedivision/select-programmer?programmer={{key}}`,
@@ -222,7 +223,7 @@
                let item = new Object();
                item.value = obj.id;
                item.label = obj.programmerName;
                item.desc = `专业组长:${obj.teamLeaderName},校对:${obj.checkerName},审核:${obj.checkerName}`
                item.desc = `专业组长:${obj.teamLeaderName},校对:${obj.checkerName},审核:${obj.seniorName}`
                return item;
              }); ;
            },
@@ -368,7 +369,7 @@
    },
    formSubmit(form, done) {
      var form = { ...form };
      console.log('submit',form);
      if(this.attachForm.producePlanId){
        //手动指定了人员职责表id,不用继续从服务端验证
         this.startDispatch(form,done);
@@ -381,10 +382,6 @@
          res => {
            
            if(res.data.code == 200){
              this.$message({
                type: 'success',
                message: '操作成功!',
              });
            
              this.attachForm.producePlanId = res.data.data.id;
              //this.drawingNoMatch = true;