大件运输联网系统前端代码
guoshilong
2023-01-02 29bf5936bf1da2eea81f3abe07dc738f5267c42c
src/views/work/process/delayAudit/form.vue
@@ -4,7 +4,7 @@
      <avue-form :option="option" v-model="form" @submit="handleSubmit">
        <template slot="noType" slot-scope="{item,value,label}">
          <span>申请编号:{{item.no}}---申请时间:{{item.createTime}}---到期时间:{{item.endTime}}</span>
          <span>申请编号:{{item.no}}---申请时间:{{item.createTime}}---到期时间:{{item.endPassTime}}</span>
        </template>
      </avue-form>
@@ -29,6 +29,14 @@
      option: option
    }
  },
  watch:{
    'form.passTime':{
      handler(newVal){
        this.form.delayStartTime = newVal[0]
        this.form.delayEndTime = newVal[1]
      }
    }
  },
  created() {
    this.processDefinitionId = this.$route.params.processDefinitionId;
  },