Merge branch 'dev' of 47.94.45.65:angelo/web-zk-admin into test

This commit is contained in:
woody 2025-09-26 14:02:51 +08:00
commit 4468c47a1d
6 changed files with 321 additions and 68 deletions

View File

@ -78,3 +78,12 @@ export function getAzFramewrokNodeInfo(params) {
params params
}) })
} }
// 会员点位列表查询
export function getMemberPointList(params) {
return request({
url: '/member/manager/member/member-point',
method: 'get',
params
})
}

View File

@ -148,6 +148,22 @@ export const constantRoutes = [
] ]
}, },
{
path: 'memberPointInfo',
name: 'MemberPointInfo',
meta: { title: '会员点位信息' },
component: ParentView,
redirect: 'memberPointInfo/index',
children: [
{
path: 'memberPointInfo',
name: 'MemberPointInfo',
component: () => import('@/views/information/memberPointInfo/index'),
meta: { title: '会员点位信息' }
}
]
},
{ {
path: 'realInfo', path: 'realInfo',
name: 'RealInfo', name: 'RealInfo',

View File

@ -183,4 +183,8 @@ tbody {
line-height: 36px; line-height: 36px;
} }
} }
.thebtn2 {
color: #ffffff !important;
background: #ffad41 !important;
}

View File

@ -179,7 +179,6 @@
:limit.sync="queryParams.pageSize" :limit.sync="queryParams.pageSize"
@pagination="getList" @pagination="getList"
/> />
{{ nodeInfoDialogVisible }}
<el-dialog <el-dialog
:visible.sync="nodeInfoDialogVisible" :visible.sync="nodeInfoDialogVisible"
title="子节点信息" title="子节点信息"
@ -401,6 +400,7 @@ export default {
this.queryParams = { this.queryParams = {
...initParmas ...initParmas
} }
this.queryParams.memberSettlePeriodId = this.memberSettlePeriodList[0].pkId
this.tableData = [] this.tableData = []
this.childNodeList = [] this.childNodeList = []
}, },
@ -466,80 +466,16 @@ export default {
font-size: 14px; font-size: 14px;
.main { .main {
background: #f9f9f9; background: #f9f9f9;
//border-radius: 8px;
//box-shadow: 0px 2px 20px 0px rgba(238, 238, 238, 0.5);
.maintop { .maintop {
display: flex; display: flex;
padding: 0 0; padding: 0 0;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
.mainbtn {
.thebtn1 {
background: #3181e5;
color: #ffffff;
}
.thebtn2 {
background: #F3A900;
color: #ffffff;
}
}
.maintitle {
font-size: 10px;
font-family: MicrosoftYaHei;
color: #999999;
}
}
}
.tem {
display: flex;
align-items: center;
justify-content: center;
img {
width: 28px;
height: 20px;
margin-right: 3px;
}
}
.isRed {
color: #ed1d25;
}
.isGreen {
color: #1ab62b;
}
.bgImg {
width: 48px;
height: 48px;
}
}
.openClose {
margin-right: 10px;
color: #666666;
text-align: center;
}
.kuang {
padding: 5px 20px;
background: rgba(255, 255, 255, 0);
border-radius: 4px;
border: 1px solid #cccccc;
margin-right: 10px;
}
.heji {
margin-top: 10px;
.dis {
display: flex;
justify-content: right;
padding: 5px 10px;
font-size: 14px;
color: #333333;
:nth-child(1) {
font-size: 14px;
font-weight: bold;
color: #333333;
margin-right: 20px;
}
}
}
}
} }
.searchbtn { .searchbtn {
width: 68px; width: 68px;
background: #c8161d; background: #c8161d;

View File

@ -394,6 +394,8 @@ export default {
stage: 7, stage: 7,
type: 1 type: 1
} }
this.queryParams.memberSettlePeriodId = this.memberSettlePeriodList[0].pkId
this.data = {} this.data = {}
this.childNodeList = [] this.childNodeList = []
}, },

View File

@ -0,0 +1,286 @@
<template>
<div class="page">
<topBar
v-if="topList.length > 0"
:top-list="topList"
:moren="moren"
/>
<div class="thetopbox">
<el-form ref="form" :model="queryParams" label-width="100px">
<el-row>
<el-col :span="4">
<el-form-item :label="'结算期数'" prop="memberSettlePeriodId">
<el-select
v-model="queryParams.memberSettlePeriodId"
:placeholder="'请选择'"
>
<el-option
v-for="item in memberSettlePeriodList"
:key="item.pkId"
:label="item.settleDate"
:value="item.pkId"
/>
</el-select>
</el-form-item>
</el-col>
<el-col :span="4">
<el-form-item :label="'会员编号'" prop="memberCode">
<el-input
v-model="queryParams.memberCode"
clearable
/>
</el-form-item>
</el-col>
<el-col :span="4" style="margin-left: 30px">
<div class="searchbox">
<el-button
:loading="loading"
class="searchbtn"
@click="handleSearch"
> {{ '搜索' }}</el-button>
<el-button @click="resetHandle"> {{ '重置' }}</el-button>
</div>
</el-col>
</el-row>
</el-form>
</div>
<div class="maintop">
<div class="mainbtn">
<el-button v-hasButtons="['MemberPointInfoExport']" size="small" class="thebtn2" @click="handleExport">导出</el-button>
</div>
</div>
<div class="main">
<div class="maintable">
<el-table
ref="table"
v-loading="loading"
:data="tableData"
:height="'630px'"
:header-cell-style="{ background: '#EEEEEE' }"
lass="content"
style="width: 100%;"
:row-class-name="tableRowClassName"
>
<el-table-column type="selection" />
<el-table-column
align="center"
prop="memberCode"
label="会员编号"
width="180"
/>
<el-table-column
align="center"
prop="memberName"
label="会员姓名"
/>
<el-table-column
align="center"
prop="pointCount"
label="子点位总数"
/>
<el-table-column
align="center"
prop="repPvBalance"
label="复购业绩余额"
/>
</el-table>
</div>
</div>
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
</template>
<script>
import topBar from '@/components/topBar'
import {
getMemberPointList,
getMemberSettlePeriod
} from '@/api/archityecture'
import { isLocals } from '../../../utils/numberToCurrency'
const initParmas = {
pageNum: 1,
pageSize: 50,
memberSettlePeriodId: '',
memberCode: ''
}
export default {
name: 'MemberPointInfo',
components: {
topBar
},
data() {
return {
moren: 'memberPointInfo',
queryParams: {
...initParmas
},
tableData: [],
memberSettlePeriodList: [], //
loading: false,
total: 0,
nodeInfo: {},
nodeInfoDialogVisible: false,
tempMemberCode: '',
topList: [
{
name: '会员点位信息',
path: 'memberPointInfo'
}
]
}
},
created() {
getMemberSettlePeriod().then((res) => {
if (res.code === 200) {
this.memberSettlePeriodList = (res.data || []).filter(item => item.isThisDay !== 0)
this.queryParams.memberSettlePeriodId = this.memberSettlePeriodList[0].pkId
this.handleSearch()
}
})
},
methods: {
isLocals,
handleSearch() {
this.tempMemberCode = this.queryParams.memberCode
this.queryParams.pageNum = 1
this.getList()
},
getList() {
this.loading = true
getMemberPointList(this.queryParams).then((res) => {
if (res.code === 200) {
this.tableData = res.data.rows
this.total = res.data.total
}
}).finally(() => {
this.loading = false
})
},
handleExport() {
this.$confirm('是否确认导出所有数据项?', '警告', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then((_) => {
this.download(
'/member/manager/member/member-point-export',
{ ...this.queryParams },
`${'会员点位信息'}${new Date().getTime()}.xlsx`
)
})
},
resetHandle() {
this.queryParams = {
...initParmas
}
this.queryParams.memberSettlePeriodId = this.memberSettlePeriodList[0].pkId
this.handleSearch()
},
tableRowClassName({ row, rowIndex }) {
if (rowIndex % 2 === 1) {
return 'warning-row'
} else if (rowIndex % 2 === 0) {
return 'success-row'
}
return ''
},
copyContent(content) {
// this.$message.success('')
}
}
}
</script>
<style scoped lang="scss">
::v-deep .el-range-editor.el-input__inner{
width: 100%!important;
}
::v-deep .el-button{
padding: 8px 20px;
}
::v-deep .el-date-editor .el-range__close-icon{
margin-top: -10px;
}
::v-deep .el-date-editor .el-range-separator{
margin-top: -10px;
}
::v-deep .el-date-editor .el-range__icon{
margin-top: -10px;
}
::v-deep .el-input__inner{
//height:28px;
//line-height: 28px;
}
::v-deep .el-form-item__label{
color: #333;
font-weight: inherit;
}
::v-deep .el-table .warning-row {
background: #f9f9f9;
}
::v-deep .el-table .success-row {
background: #ffffff;
}
::v-deep .el-table thead {
color: #000000;
}
::v-deep .el-select {
width: 100%;
}
.uploadIcon ::v-deep .el-upload--picture-card {
display: none !important; /* 上传按钮隐藏 */
}
.page {
padding: 20px;
background: #f9f9f9;
font-size: 14px;
.main {
background: #f9f9f9;
.maintop {
display: flex;
padding: 0 0;
justify-content: space-between;
align-items: center;
}
}
}
.searchbtn {
width: 68px;
background: #c8161d;
color: #ffffff;
}
.node-wrapper {
width: 20px;
height: 20px;
//
background-color: #007bff;
border-radius: 50%;
cursor: pointer;
}
.empty-node {
background-color: #fff;
border: 2px dashed #95a5a6;
}
.title {
font-size: 16px;
font-weight: bold;
color: #333333;
margin-bottom: 18px;
}
</style>