|
@@ -165,7 +165,7 @@
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
|
|
|
- <el-dialog title="查看" :visible.sync="appendixInfoStatus" width="70%" :close-on-press-escape="false"
|
|
|
+ <el-dialog title="回复详情" :visible.sync="appendixInfoStatus" width="70%" :close-on-press-escape="false"
|
|
|
:show-close="true" :before-close="closeAppendixInfo" :destroy-on-close="true"
|
|
|
:modal-append-to-body="false"
|
|
|
:close-on-click-modal="false" :fullscreen="true">
|
|
@@ -309,6 +309,7 @@ export default {
|
|
|
excelId: row.appendixId,
|
|
|
name: row.appendixName
|
|
|
}
|
|
|
+ this.appendixInfoPageSize = 1;
|
|
|
this.getAppendixInfoPage(this.appendixInfoParams, this.appendixInfoPageSize);
|
|
|
this.appendixInfoStatus = true;
|
|
|
},
|
|
@@ -410,6 +411,20 @@ export default {
|
|
|
});
|
|
|
return;
|
|
|
}
|
|
|
+ if (this.addDialogParam.name.length > 240) {
|
|
|
+ this.$message({
|
|
|
+ message: '名称长度不能大于240字',
|
|
|
+ type: 'error'
|
|
|
+ });
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (this.addDialogParam.remark.length > 300) {
|
|
|
+ this.$message({
|
|
|
+ message: '材料说明长度不能大于300字',
|
|
|
+ type: 'error'
|
|
|
+ });
|
|
|
+ return;
|
|
|
+ }
|
|
|
if (this.attList.length == 0) {
|
|
|
this.$message({
|
|
|
message: '请上传附件',
|