Commit 9c395bf2 authored by menglingjun's avatar menglingjun

feat: 项目款项管理

parent 0c1c9338
...@@ -79,7 +79,7 @@ ...@@ -79,7 +79,7 @@
:formatter="value => `$ ${value}`.replace(/\B(?=(\d{3})+(?!\d))/g, ',')" :formatter="value => `$ ${value}`.replace(/\B(?=(\d{3})+(?!\d))/g, ',')"
:parser="value => value.replace(/\$\s?|(,*)/g, '')" :parser="value => value.replace(/\$\s?|(,*)/g, '')"
@change="e=>handleChange(e, index)" @change="e=>handleChange(e, index)"
:defaultValue="text" v-model ='record.charge'
></a-input-number> ></a-input-number>
</span> </span>
</a-table> </a-table>
...@@ -148,6 +148,7 @@ export default { ...@@ -148,6 +148,7 @@ export default {
this.query.page = 1 this.query.page = 1
this.query.name = ""; this.query.name = "";
this.query.status = ""; this.query.status = "";
this.loadData(); this.loadData();
}, },
pageChange(page) { pageChange(page) {
...@@ -233,7 +234,6 @@ export default { ...@@ -233,7 +234,6 @@ export default {
}, },
activated() { activated() {
this.form.resetFields()
if (this.isFirstLoad == true) { if (this.isFirstLoad == true) {
this.loadData(this.defaultPageSize) this.loadData(this.defaultPageSize)
this.isFirstLoad = false this.isFirstLoad = false
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment