|
@@ -123,22 +123,7 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
|
|
|
- <h4 class="mb-2">备注说明:</h4>
|
|
|
- <el-input
|
|
|
- class="mb-2"
|
|
|
- v-model="curTaskApply.remark"
|
|
|
- type="textarea"
|
|
|
- resize="none"
|
|
|
- :rows="2"
|
|
|
- :maxlength="100"
|
|
|
- clearable
|
|
|
- show-word-limit
|
|
|
- placeholder="建议不超过100个字"
|
|
|
- :disabled="!IS_APPLY"
|
|
|
- ></el-input>
|
|
|
-
|
|
|
- <h4 class="mb-2" v-if="IS_APPLY">上传入库审核表(最多4张)</h4>
|
|
|
- <h4 class="mb-2" v-else>入库审核表</h4>
|
|
|
+ <h4 class="mb-2">附件<span v-if="IS_APPLY">(最多4张)</span>:</h4>
|
|
|
<div class="image-list">
|
|
|
<div
|
|
|
class="image-item"
|
|
@@ -161,7 +146,7 @@
|
|
|
<div
|
|
|
v-if="paperConfirmAttachments.length < 4 && IS_APPLY"
|
|
|
class="image-item image-add"
|
|
|
- title="上传入库审核表"
|
|
|
+ title="上传附件"
|
|
|
@click="toUploadPaperConfirm"
|
|
|
>
|
|
|
<i class="el-icon-plus"></i>
|
|
@@ -174,6 +159,24 @@
|
|
|
暂无数据
|
|
|
</div>
|
|
|
|
|
|
+ <h4 class="mb-2">附件说明:</h4>
|
|
|
+ <el-input
|
|
|
+ v-if="IS_APPLY"
|
|
|
+ class="mb-2"
|
|
|
+ v-model="curTaskApply.remark"
|
|
|
+ type="textarea"
|
|
|
+ resize="none"
|
|
|
+ :rows="2"
|
|
|
+ :maxlength="100"
|
|
|
+ clearable
|
|
|
+ show-word-limit
|
|
|
+ placeholder="建议不超过100个字"
|
|
|
+ ></el-input>
|
|
|
+ <div class="color-gray-2" v-else>
|
|
|
+ <p v-if="curTaskApply.remark">{{ curTaskApply.remark }}</p>
|
|
|
+ <p v-else>暂无</p>
|
|
|
+ </div>
|
|
|
+
|
|
|
<!-- audit -->
|
|
|
<div v-if="IS_AUDIT" class="task-audit">
|
|
|
<el-form
|
|
@@ -755,7 +758,7 @@ export default {
|
|
|
return;
|
|
|
}
|
|
|
// if (!this.paperConfirmAttachments.length) {
|
|
|
- // this.$message.error("请上传入库审核表!");
|
|
|
+ // this.$message.error("请上传附件!");
|
|
|
// return;
|
|
|
// }
|
|
|
|