This commit is contained in:
parent
a0b3d62482
commit
a8eb29a2d7
|
@ -49,7 +49,7 @@ export const sourceOptions = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: 'SPECIAL_WORK_TYPE',
|
value: 'SPECIAL_WORK_TYPE',
|
||||||
label: '特殊工单类型奖励积分(医保卫生)'
|
label: '特殊工单类型奖励积分'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: 'TITLE_EVALUATION',
|
value: 'TITLE_EVALUATION',
|
||||||
|
|
|
@ -42,6 +42,7 @@
|
||||||
<el-table-column label="用户名" prop="residentInformation.name" />
|
<el-table-column label="用户名" prop="residentInformation.name" />
|
||||||
<el-table-column label="店名" prop="residentInformation.speciallyBusinessInfo.name" />
|
<el-table-column label="店名" prop="residentInformation.speciallyBusinessInfo.name" />
|
||||||
<el-table-column label="结算积分数" prop="num" />
|
<el-table-column label="结算积分数" prop="num" />
|
||||||
|
<el-table-column label="积分兑换金额(元)" prop="money" />
|
||||||
|
|
||||||
<el-table-column label="提交时间">
|
<el-table-column label="提交时间">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
|
@ -286,8 +287,8 @@ export default {
|
||||||
handleExport() {
|
handleExport() {
|
||||||
const that = this
|
const that = this
|
||||||
import('@/vendor/Export2Excel').then(excel => {
|
import('@/vendor/Export2Excel').then(excel => {
|
||||||
const tHeader = ['用户名', '店名', '结算积分数', '提交时间', '结算状态', '已处理状态', '处理备注', '发票状态']
|
const tHeader = ['用户名', '店名', '结算积分数', '积分兑换金额(元)', '提交时间', '结算状态', '已处理状态', '处理备注', '发票状态']
|
||||||
const filterVal = ['residentInformation.name', 'residentInformation.speciallyBusinessInfo.name', 'num', 'createDate', 'settlementStatus', 'dealStatus', 'remark', 'invoiceStatus']
|
const filterVal = ['residentInformation.name', 'residentInformation.speciallyBusinessInfo.name', 'num', 'money', 'createDate', 'settlementStatus', 'dealStatus', 'remark', 'invoiceStatus']
|
||||||
this.exportLoading = true
|
this.exportLoading = true
|
||||||
const listQuery = JSON.parse(JSON.stringify(this.listQuery))
|
const listQuery = JSON.parse(JSON.stringify(this.listQuery))
|
||||||
const { dateArr } = listQuery
|
const { dateArr } = listQuery
|
||||||
|
|
Loading…
Reference in New Issue