|
@@ -396,7 +396,7 @@
|
|
|
<el-form-item label="下一节点审核人" prop="reportDetail.reviewBy"
|
|
|
:rules="[
|
|
|
]">
|
|
|
- <el-select v-model="inputForm.reportDetail.reviewBy" placeholder="请选择下一节点审核人" style="width:100%;">
|
|
|
+ <el-select :disabled="true" v-model="inputForm.reportDetail.reviewBy" placeholder="请选择下一节点审核人" style="width:100%;">
|
|
|
<el-option
|
|
|
v-for="item in reviewBys"
|
|
|
:key="item.index"
|
|
@@ -601,6 +601,17 @@
|
|
|
</el-row>
|
|
|
</el-row>
|
|
|
|
|
|
+ <el-row :gutter="15" style="margin-top: 30px">
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-form-item label="作废原因" prop="cancellateReason"
|
|
|
+ :rules="[
|
|
|
+ {required: true, message:'作废原因不能为空', trigger:'blur'}
|
|
|
+ ]">
|
|
|
+ <el-input type="textarea" v-model="inputForm.cancellateReason" placeholder="请填写作废原因" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+
|
|
|
<el-row>
|
|
|
<el-tabs v-model="activeName" type="border-card" @tab-click="tabHandleClick">
|
|
|
|
|
@@ -620,17 +631,6 @@
|
|
|
</el-tabs>
|
|
|
</el-row>
|
|
|
|
|
|
- <el-row :gutter="15" style="margin-top: 30px">
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="作废原因" prop="cancellateReason"
|
|
|
- :rules="[
|
|
|
- {required: true, message:'作废原因不能为空', trigger:'blur'}
|
|
|
- ]">
|
|
|
- <el-input type="textarea" v-model="inputForm.cancellateReason" placeholder="请填写作废原因" clearable></el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
-
|
|
|
</el-form>
|
|
|
</el-col>
|
|
|
</el-row>
|