406 lines
9.8 KiB
Vue
406 lines
9.8 KiB
Vue
<template>
|
|
<div class="page">
|
|
<topBar
|
|
v-if="topList.length > 0"
|
|
:top-list="topList"
|
|
:moren="moren"
|
|
/>
|
|
<div class="main">
|
|
<div class="form_all">
|
|
<el-form ref="select" :model="select" label-width="auto">
|
|
<el-row :gutter="10">
|
|
<el-col :span="4">
|
|
<el-form-item label="会员编号">
|
|
<el-input v-model="select.memberCode" clearable />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="4">
|
|
<el-form-item label="结算等级">
|
|
<el-select
|
|
v-model="select.pkGrade"
|
|
clearable
|
|
:placeholder="'请选择'"
|
|
>
|
|
<el-option
|
|
v-for="item in gradeRangList"
|
|
:key="item.pkId"
|
|
:label="item.gradeName"
|
|
:value="item.pkId"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="4">
|
|
<el-form-item label="当月奖衔">
|
|
<el-select
|
|
v-model="select.pkAwards"
|
|
clearable
|
|
:placeholder="'请选择'"
|
|
>
|
|
<el-option
|
|
v-for="item in awardsList"
|
|
:key="item.pkId"
|
|
:label="item.awardsName"
|
|
:value="item.pkId"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="4">
|
|
<el-form-item label="隶属体系">
|
|
<el-select
|
|
v-model="select.pkVertex"
|
|
clearable
|
|
:placeholder="'请选择'"
|
|
>
|
|
<el-option
|
|
v-for="item in vertexList"
|
|
:key="item.pkId"
|
|
:label="item.vertexName"
|
|
:value="item.pkId"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="晋升日期" prop="code">
|
|
<el-date-picker
|
|
v-model="select.cjsj"
|
|
type="daterange"
|
|
range-separator="——"
|
|
:start-placeholder="'开始时间'"
|
|
:end-placeholder="'结束日期'"
|
|
value-format="yyyy-MM-dd"
|
|
:unlink-panels="true"
|
|
@change="changeTime1"
|
|
/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="4">
|
|
<el-button type="primary" @click="getList">
|
|
{{ '搜索' }}</el-button>
|
|
<el-button type="" @click="reset"> {{ '重置' }}</el-button>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
</div>
|
|
<div class="maintop">
|
|
<div class="mainbtn">
|
|
<el-button
|
|
v-hasButtons="['memberFindExport']"
|
|
size="small"
|
|
class="thebtn2"
|
|
@click="handleExport"
|
|
>
|
|
{{ '导出' }}</el-button>
|
|
</div>
|
|
</div>
|
|
<div class="maintable">
|
|
<el-table
|
|
v-loading="loading"
|
|
:data="tableData"
|
|
style="width: 100%"
|
|
height="700px"
|
|
:header-cell-style="{ background: '#EEEEEE' }"
|
|
:row-class-name="tableRowClassName"
|
|
@selection-change="handleSelectionChange"
|
|
>
|
|
<el-table-column type="selection" width="55" />
|
|
<el-table-column align="center" prop="memberCode" label="会员编号" />
|
|
<el-table-column align="center" prop="memberName" label="会员姓名" />
|
|
<el-table-column align="center" prop="phone" label="联系方式" />
|
|
<el-table-column align="center" prop="awardsName" label="当月奖衔" />
|
|
|
|
<el-table-column
|
|
align="center"
|
|
prop="maxAwardsName"
|
|
label="最高奖衔"
|
|
/>
|
|
|
|
<el-table-column
|
|
align="center"
|
|
prop="historyAwardsName"
|
|
label="历史荣誉"
|
|
/>
|
|
<el-table-column align="center" prop="vertexName" label="隶属体系" />
|
|
<el-table-column align="center" prop="gradeName" label="结算等级" />
|
|
<el-table-column
|
|
align="center"
|
|
prop="newPv"
|
|
label="小区新增业绩(PV)"
|
|
/>
|
|
<el-table-column
|
|
show-overflow-tooltip
|
|
align="center"
|
|
prop="settleDate"
|
|
label="晋升日期"
|
|
width="130"
|
|
/>
|
|
</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 { getgradeRanglist, getAwardsListChiose } from '@/api/level'
|
|
import { getvertexValue } from '@/api/member'
|
|
import * as api from '@/api/member'
|
|
export default {
|
|
name: 'Bzpz',
|
|
components: {
|
|
topBar
|
|
},
|
|
data() {
|
|
const now = new Date()
|
|
const startOfMonth = new Date(now.getFullYear(), now.getMonth(), 1)
|
|
const endOfMonth = new Date(now.getFullYear(), now.getMonth() + 1, 0)
|
|
return {
|
|
moren: 'memberFind',
|
|
topList: [
|
|
{
|
|
name: '会员奖衔查询',
|
|
path: 'memberFind'
|
|
}
|
|
],
|
|
select: {
|
|
cjsj: [this.formatDate(startOfMonth), this.formatDate(endOfMonth)],
|
|
startDate: this.formatDate(startOfMonth),
|
|
endDate: this.formatDate(endOfMonth)
|
|
},
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 50
|
|
},
|
|
awardsList: [], // 真实奖衔
|
|
vertexList: [], // 隶属体系
|
|
gradeRangList: [], // 注册等级
|
|
total: 0,
|
|
tableData: [],
|
|
loading: false
|
|
}
|
|
},
|
|
mounted() {
|
|
// 获取列表
|
|
this.getList()
|
|
this.getvertexValue()
|
|
this.getAwardsListChiose()
|
|
this.getgradeRanglist()
|
|
},
|
|
methods: {
|
|
// 等级下拉
|
|
getgradeRanglist() {
|
|
getgradeRanglist().then((res) => {
|
|
this.gradeRangList = res.data
|
|
})
|
|
},
|
|
// 隶属体系下拉选
|
|
getvertexValue() {
|
|
getvertexValue().then((res) => {
|
|
this.vertexList = res.data
|
|
})
|
|
},
|
|
// 奖衔下拉选
|
|
getAwardsListChiose() {
|
|
getAwardsListChiose().then((res) => {
|
|
this.awardsList = res.rows
|
|
})
|
|
},
|
|
changeTime1(val) {
|
|
this.select.startDate = val ? val[0] : ''
|
|
this.select.endDate = val ? val[1] : ''
|
|
},
|
|
formatDate(date) {
|
|
const year = date.getFullYear()
|
|
const month = String(date.getMonth() + 1).padStart(2, '0')
|
|
const day = String(date.getDate()).padStart(2, '0')
|
|
return `${year}-${month}-${day}`
|
|
},
|
|
getList() {
|
|
this.loading = true
|
|
|
|
api
|
|
.member_awards(Object.assign({}, this.queryParams, this.select))
|
|
.then((res) => {
|
|
this.tableData = res.rows
|
|
this.total = res.total
|
|
this.loading = false
|
|
})
|
|
},
|
|
// 导出
|
|
handleExport() {
|
|
this.$confirm('是否确认导出所有数据项?', '警告', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then((_) => {
|
|
this.download(
|
|
'/member/manager/member/member_awards_query_export',
|
|
Object.assign({}, this.queryParams, this.select),
|
|
`会员奖衔${new Date().getTime()}.xlsx`
|
|
)
|
|
})
|
|
},
|
|
reset() {
|
|
this.select = {}
|
|
this.getList()
|
|
},
|
|
handleSelectionChange(val) {},
|
|
|
|
tableRowClassName({ row, rowIndex }) {
|
|
if (rowIndex % 2 == 1) {
|
|
return 'warning-row'
|
|
} else if (rowIndex % 2 == 0) {
|
|
return 'success-row'
|
|
}
|
|
return ''
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style scoped lang="scss">
|
|
::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: #ffffff;
|
|
border-radius: 8px;
|
|
box-shadow: 0px 2px 20px 0px rgba(238, 238, 238, 0.5);
|
|
|
|
.form_all {
|
|
padding: 0px 20px 0 20px;
|
|
// margin-bottom: 20px;
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.maintop {
|
|
display: flex;
|
|
padding: 0px 0px;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
background: #f8f8f8;
|
|
|
|
.mainbtn {
|
|
.thebtn1 {
|
|
background: #3181e5;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.thebtn2 {
|
|
background: #ffad41;
|
|
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 {
|
|
text-align: right;
|
|
margin-right: 10px;
|
|
color: #3181e5;
|
|
}
|
|
|
|
.dizhi {
|
|
::v-deep .el-cascader {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
::v-deep .el-date-editor.el-input,
|
|
.el-date-editor.el-input__inner {
|
|
width: auto;
|
|
}
|
|
|
|
::v-deep .el-form-item {
|
|
margin-bottom: 20px !important;
|
|
}
|
|
|
|
::v-deep .el-date-editor.el-input,
|
|
.el-date-editor.el-input__inner {
|
|
width: 100% !important;
|
|
}
|
|
|
|
.blueCor {
|
|
color: #589ff8;
|
|
cursor: pointer;
|
|
}
|
|
|
|
::v-deep .el-input__icon {
|
|
line-height: 33px;
|
|
}
|
|
|
|
::v-deep .el-button {
|
|
margin-top: 3px;
|
|
}
|
|
.bgImg {
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
</style>
|