|
|
@ -282,7 +282,6 @@
|
|
|
|
:on-success="handleSuccess"
|
|
|
|
:on-success="handleSuccess"
|
|
|
|
name="multipartFile"
|
|
|
|
name="multipartFile"
|
|
|
|
:multiple="false"
|
|
|
|
:multiple="false"
|
|
|
|
:accept="imgType"
|
|
|
|
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<i class="el-icon-upload"></i>
|
|
|
|
<i class="el-icon-upload"></i>
|
|
|
|
<div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
|
|
|
|
<div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
|
|
|
@ -739,10 +738,12 @@ export default {
|
|
|
|
/** 取消按钮 */
|
|
|
|
/** 取消按钮 */
|
|
|
|
cancel1() {
|
|
|
|
cancel1() {
|
|
|
|
this.open1 = false;
|
|
|
|
this.open1 = false;
|
|
|
|
|
|
|
|
this.reset();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
/** 取消按钮 */
|
|
|
|
/** 取消按钮 */
|
|
|
|
cancel2() {
|
|
|
|
cancel2() {
|
|
|
|
this.open2 = false;
|
|
|
|
this.open2 = false;
|
|
|
|
|
|
|
|
this.reset();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
/** 表单重置 */
|
|
|
|
/** 表单重置 */
|
|
|
|
reset() {
|
|
|
|
reset() {
|
|
|
@ -788,8 +789,6 @@ export default {
|
|
|
|
archiveId: undefined,
|
|
|
|
archiveId: undefined,
|
|
|
|
archiveState: undefined,
|
|
|
|
archiveState: undefined,
|
|
|
|
password: undefined,
|
|
|
|
password: undefined,
|
|
|
|
staffId: undefined,
|
|
|
|
|
|
|
|
staffName: undefined,
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
this.form1 = {
|
|
|
|
this.form1 = {
|
|
|
|
id: undefined,
|
|
|
|
id: undefined,
|
|
|
@ -814,6 +813,10 @@ export default {
|
|
|
|
this.open = true;
|
|
|
|
this.open = true;
|
|
|
|
this.title = "添加银行回单";
|
|
|
|
this.title = "添加银行回单";
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// 上传成功的函数
|
|
|
|
|
|
|
|
handleSuccess(res) {
|
|
|
|
|
|
|
|
console.log(res);
|
|
|
|
|
|
|
|
},
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
handleUpdate(row) {
|
|
|
|
handleUpdate(row) {
|
|
|
|
this.reset();
|
|
|
|
this.reset();
|
|
|
@ -826,6 +829,7 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
/** 认款按钮操作 */
|
|
|
|
/** 认款按钮操作 */
|
|
|
|
handleComfirm(val) {
|
|
|
|
handleComfirm(val) {
|
|
|
|
|
|
|
|
this.reset();
|
|
|
|
this.form1.id = val.id;
|
|
|
|
this.form1.id = val.id;
|
|
|
|
this.open2 = true;
|
|
|
|
this.open2 = true;
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -866,6 +870,7 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
//下载元数据
|
|
|
|
//下载元数据
|
|
|
|
handleDownloadData() {
|
|
|
|
handleDownloadData() {
|
|
|
|
|
|
|
|
this.reset();
|
|
|
|
this.open1 = true;
|
|
|
|
this.open1 = true;
|
|
|
|
this.queryParams.inputPassword = null;
|
|
|
|
this.queryParams.inputPassword = null;
|
|
|
|
},
|
|
|
|
},
|
|
|
|