| | |
| | | <el-dialog title="积分变动记录" :visible.sync="dialogVisible" width="80%"> |
| | | <el-bus-crud |
| | | v-if="customerId" |
| | | :key="customerId" |
| | | :key="dialogId" |
| | | :extra-query="{ customerId }" |
| | | v-bind="recordTableConfig" |
| | | /> |
| | |
| | | </template> |
| | | |
| | | <script> |
| | | import { v4 as uuidv4 } from 'uuid' |
| | | export default { |
| | | data() { |
| | | return { |
| | | dialogVisible: false, |
| | | customerId: null, |
| | | dialogId: null, |
| | | tableConfig: { |
| | | url: 'flower/api/customer/point/page', |
| | | hasNew: false, |
| | |
| | | { label: '用户信息', prop: 'customerName' }, |
| | | { label: '总积分', prop: 'totalPoint' }, |
| | | { label: '已使用积分', prop: 'usedPoint' }, |
| | | { label: '过期积分', prop: 'expiredPoint' }, |
| | | { label: '扣减积分', formatter: (row) => row.deductionPoint ?? 0 }, |
| | | { |
| | | label: '剩余积分', |
| | | formatter: (row) => |
| | | parseInt(row.totalPoint) - |
| | | parseInt(row.deductionPoint ?? 0) - |
| | | parseInt(row.usedPoint) - |
| | | parseInt(row.expiredPoint), |
| | | }, |
| | |
| | | el: { |
| | | precision: 0, |
| | | min: 1, |
| | | max: 99999999, |
| | | controls: false, |
| | | }, |
| | | rules: { |
| | |
| | | el: { |
| | | precision: 0, |
| | | min: 1, |
| | | max: 99999999, |
| | | controls: false, |
| | | }, |
| | | rules: { |
| | |
| | | { |
| | | text: '积分变动记录', |
| | | atClick: (row) => { |
| | | this.dialogId = uuidv4() |
| | | this.customerId = row.customerId |
| | | this.dialogVisible = true |
| | | }, |