feat(topPerformance): 顶点奖金拨比列表统计改名及列表字段调整

This commit is contained in:
woody 2025-06-17 13:42:40 +08:00
parent 67b238e11d
commit 42dc9205b0
1 changed files with 6 additions and 6 deletions

View File

@ -46,7 +46,7 @@
</el-col> --> </el-col> -->
<el-col :span="8"> <el-col :span="8">
<el-form-item :label="'业绩时间'"> <el-form-item :label="'统计时间'">
<el-date-picker <el-date-picker
v-model="creationTime" v-model="creationTime"
value-format="yyyy-MM-dd" value-format="yyyy-MM-dd"
@ -59,7 +59,7 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-form-item label="顶点"> <el-form-item label="系统编号">
<el-select v-model="select.pkVertex"> <el-select v-model="select.pkVertex">
<el-option <el-option
v-for="item in verList" v-for="item in verList"
@ -192,13 +192,13 @@ export default {
}, },
{ {
id: 31, id: 31,
text: '顶点名称', text: '系统名称',
checked: true, checked: true,
prop: 'memberName' prop: 'memberName'
}, },
{ {
id: 27, id: 27,
text: '业绩时间', text: '统计时间',
checked: false, checked: false,
prop: 'creationTime' prop: 'creationTime'
}, },
@ -374,7 +374,7 @@ export default {
moren: '/settlementCenter/topPerformance', moren: '/settlementCenter/topPerformance',
topList: [ topList: [
{ {
name: '顶点奖金拨比列表统计', name: '零线系统拨比统计',
path: '/settlementCenter/topPerformance', path: '/settlementCenter/topPerformance',
url: 'topPerformance', url: 'topPerformance',
changed: false changed: false
@ -515,7 +515,7 @@ export default {
this.download( this.download(
'/member/manage/bonus-vertex-statis/export', '/member/manage/bonus-vertex-statis/export',
Object.assign({}, this.queryParams, this.select), Object.assign({}, this.queryParams, this.select),
`顶点奖金拨比列表统计-${new Date().getTime()}.xlsx` `零线系统拨比统计-${new Date().getTime()}.xlsx`
) )
}) })
}, },