页面修改

main
mo 1 year ago
parent 3592aa755d
commit ed156c4be3

@ -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;
}, },

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

Loading…
Cancel
Save