This commit is contained in:
那些花儿
2025-09-19 17:46:12 +08:00
parent 4a4066e275
commit de683fd98d
2 changed files with 79 additions and 1 deletions
@@ -35,6 +35,10 @@ const MEMBER_MANAGE_TABLE = {
<el-button type="primary" size="small" icon="el-icon-printer" @click="exportExcel">导出会员名单
</el-button>
<el-button type="primary" size="small" icon="el-icon-printer" @click="exportNotEqPhoneExcel">导出会员福利号码不一致名单
</el-button>
</table-tool>
<el-table :data="tableData" :size="tableSize" @sort-change="pageOrder" ref="table" row-key="id"
@@ -320,6 +324,10 @@ const MEMBER_MANAGE_TABLE = {
exportExcel() {
const pageForm = clone(this.pageForm)
this.$downLoad(loc() + "/doExport", pageForm)
},
exportNotEqPhoneExcel(){
const pageForm = clone(this.pageForm)
this.$downLoad(loc() + "/doExportNotEqPhone", pageForm)
}
},
created() {