|
@@ -156,7 +156,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="lookTitle">其它</div>
|
|
|
- <el-form-item label="备注"
|
|
|
+ <el-form-item label="提交备注"
|
|
|
:label-width="formLabelWidth">
|
|
|
<el-input placeholder="请输入备注"
|
|
|
:disabled="!isAdd"
|
|
@@ -164,6 +164,15 @@
|
|
|
type="textarea"
|
|
|
:rows="3"></el-input>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="审核备注"
|
|
|
+ v-if="auditStatus != 'ING'"
|
|
|
+ :label-width="formLabelWidth">
|
|
|
+ <el-input placeholder="请输入备注"
|
|
|
+ :disabled="!isAdd"
|
|
|
+ v-model.trim="form.auditComment"
|
|
|
+ type="textarea"
|
|
|
+ :rows="3"></el-input>
|
|
|
+ </el-form-item>
|
|
|
|
|
|
</el-form>
|
|
|
<div class="lookTitle"
|
|
@@ -204,7 +213,8 @@ export default {
|
|
|
number: null
|
|
|
}],
|
|
|
applyType: null,
|
|
|
- userId: ''
|
|
|
+ userId: '',
|
|
|
+ auditComment: ''
|
|
|
},
|
|
|
isAdd: false,
|
|
|
cooperationList: [],
|
|
@@ -232,7 +242,8 @@ export default {
|
|
|
serviceAmount: orderInfo.serviceAmount,
|
|
|
saleAmount: orderInfo.saleAmount,
|
|
|
schoolId: orderInfo.schoolId,
|
|
|
- userId: orderInfo.userId
|
|
|
+ userId: orderInfo.userId,
|
|
|
+ auditComment: orderInfo.auditComment
|
|
|
}
|
|
|
this.auditStatus = orderInfo.auditStatus
|
|
|
this.$set(this.form, 'goodsList', this.getShopList(orderInfo.goodsJson))
|