|
@@ -6,7 +6,7 @@
|
|
|
</el-button>
|
|
|
</div>
|
|
|
<el-table :key="tableKey" v-loading="listLoading" :data="list" border fit highlight-current-row style="width:100%">
|
|
|
- <el-table-column label="序号" align="center" width="30">
|
|
|
+ <el-table-column label="序号" align="center" width="60">
|
|
|
<template slot-scope="scope">{{ scope.$index + 1 }}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="姓名" align="center">
|
|
@@ -68,10 +68,10 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
handleCreate() {
|
|
|
- this.$router.push({ path: '/finance/receipt/user/add' })
|
|
|
+ this.$router.push({ path: '/finance/receipts/user/add' })
|
|
|
},
|
|
|
handleUpdate(row) {
|
|
|
- this.$router.push({ path: '/finance/receipt/user/edit', query: { id: row.id }})
|
|
|
+ this.$router.push({ path: '/finance/receipts/user/edit', query: { id: row.id }})
|
|
|
},
|
|
|
handleDelete(row) {
|
|
|
this.$confirm('是否要删除该收款用户', '提示', {
|