|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
<template>
|
|
|
<a-spin :spinning="confirmLoading">
|
|
<a-spin :spinning="confirmLoading">
|
|
|
- <a-form-model ref="form" :model="model" :rules="validatorRules">
|
|
|
|
|
|
|
+ <a-form :form="form">
|
|
|
|
|
|
|
|
<!-- 查询区域 -->
|
|
<!-- 查询区域 -->
|
|
|
<div class="table-page-search-wrapper">
|
|
<div class="table-page-search-wrapper">
|
|
@@ -57,7 +57,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- </a-form-model>
|
|
|
|
|
|
|
+ </a-form>
|
|
|
</a-spin>
|
|
</a-spin>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -76,6 +76,7 @@
|
|
|
},
|
|
},
|
|
|
data () {
|
|
data () {
|
|
|
return {
|
|
return {
|
|
|
|
|
+ form: this.$form.createForm(this),
|
|
|
validatorRules:{},
|
|
validatorRules:{},
|
|
|
title:"操作",
|
|
title:"操作",
|
|
|
bodyStyle: {
|
|
bodyStyle: {
|
|
@@ -162,7 +163,7 @@
|
|
|
}
|
|
}
|
|
|
],
|
|
],
|
|
|
url: {
|
|
url: {
|
|
|
- list: "/wisdom/hlwPayment/detailList",
|
|
|
|
|
|
|
+ list: "/wisdom/hlwInvoice/paymentList",
|
|
|
},
|
|
},
|
|
|
dictOptions:{},
|
|
dictOptions:{},
|
|
|
}
|
|
}
|
|
@@ -179,6 +180,7 @@
|
|
|
initDictConfig(){
|
|
initDictConfig(){
|
|
|
},
|
|
},
|
|
|
edit (record) {
|
|
edit (record) {
|
|
|
|
|
+ this.form.resetFields();
|
|
|
this.model = Object.assign({}, record);
|
|
this.model = Object.assign({}, record);
|
|
|
this.visible = true;
|
|
this.visible = true;
|
|
|
},
|
|
},
|
|
@@ -192,7 +194,7 @@
|
|
|
this.ipagination.current = 1
|
|
this.ipagination.current = 1
|
|
|
}
|
|
}
|
|
|
var params = this.getQueryParams();//查询条件
|
|
var params = this.getQueryParams();//查询条件
|
|
|
- params.invoiceId=this.$route.query.id;
|
|
|
|
|
|
|
+ params.id=this.$route.query.id;
|
|
|
this.loading = true
|
|
this.loading = true
|
|
|
getAction(this.url.list, params).then((res) => {
|
|
getAction(this.url.list, params).then((res) => {
|
|
|
if (res.success) {
|
|
if (res.success) {
|
|
@@ -215,6 +217,7 @@
|
|
|
this.visible = false
|
|
this.visible = false
|
|
|
},
|
|
},
|
|
|
paymentDetail(record){
|
|
paymentDetail(record){
|
|
|
|
|
+ record.paymentId=record.id
|
|
|
this.$router.push({ path: '/wisdom/hlwInvoice/add',query:{record:record }})
|
|
this.$router.push({ path: '/wisdom/hlwInvoice/add',query:{record:record }})
|
|
|
}
|
|
}
|
|
|
|
|
|