页面修改

main
mo 1 year ago
parent 3592aa755d
commit ed156c4be3

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

@ -94,7 +94,6 @@
</el-button>
</template>
</el-table-column>
<el-table-column label="流程号" align="center" prop="flowId" />
<el-table-column label="摘要" align="center" prop="note" />
<el-table-column
label="创建时间"
@ -192,7 +191,7 @@
<el-col :span="8">
<el-form-item label="业务类型" prop="businessType">
<el-select
v-model="queryParams.businessType"
v-model="form.businessType"
placeholder="请选择业务类型"
clearable
size="small"
@ -356,6 +355,7 @@ export default {
/** 取消按钮 */
cancel1() {
this.open1 = false;
this.reset();
},
/** 表单重置 */
reset() {
@ -475,6 +475,7 @@ export default {
},
//
handleDownloadData() {
this.reset();
this.open1 = true;
this.queryParams.inputPassword = null;
},

Loading…
Cancel
Save