458 lines
11 KiB
Vue
458 lines
11 KiB
Vue
<template>
|
|
<div class="page">
|
|
<topBar
|
|
v-if="topList.length > 0"
|
|
:topList="topList"
|
|
:moren="moren"
|
|
></topBar>
|
|
<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 clearable v-model="select.serviceCode"></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="4">
|
|
<el-form-item :label="'会员编号'">
|
|
<el-input clearable v-model="select.memberCode"></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="创建时间">
|
|
<el-date-picker
|
|
v-model="creationTime"
|
|
@change="changeTime"
|
|
value-format="yyyy-MM-dd"
|
|
type="daterange"
|
|
:clearable="false"
|
|
:range-separator="'至'"
|
|
:start-placeholder="'开始日期'"
|
|
:end-placeholder="'结束日期'"
|
|
>
|
|
</el-date-picker>
|
|
</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-has-buttons="['ServiceNumberAdd']"
|
|
size="small"
|
|
@click="openDig"
|
|
class="addBtn"
|
|
>{{ '添加' }}</el-button
|
|
>
|
|
<el-button
|
|
size="small"
|
|
@click="handleExport"
|
|
v-hasButtons="['ServiceNumberExport']"
|
|
class="exportBtn"
|
|
>
|
|
{{ '导出' }}</el-button
|
|
>
|
|
</div>
|
|
</div>
|
|
<div class="maintable">
|
|
<el-table
|
|
:data="tableData"
|
|
v-loading="loading"
|
|
style="width: 100%"
|
|
:header-cell-style="{ background: '#EEEEEE' }"
|
|
:row-class-name="tableRowClassName"
|
|
@selection-change="handleSelectionChange"
|
|
>
|
|
<el-table-column type="selection" width="55"> </el-table-column>
|
|
<el-table-column align="center" prop="serviceCode" label="服务编号" />
|
|
<el-table-column
|
|
align="center"
|
|
prop="memberCode"
|
|
:label="'会员编号'"
|
|
/>
|
|
<el-table-column
|
|
align="center"
|
|
prop="memberName"
|
|
:label="'会员姓名'"
|
|
/>
|
|
|
|
<el-table-column align="center" prop="nickName" label="会员昵称" />
|
|
<el-table-column
|
|
align="center"
|
|
prop="gradeName"
|
|
:label="'结算等级'"
|
|
/>
|
|
<el-table-column
|
|
align="center"
|
|
prop="awardsName"
|
|
:label="'荣誉奖衔'"
|
|
/>
|
|
<el-table-column align="center" prop="vertexName" label="所属体系" />
|
|
<el-table-column
|
|
align="center"
|
|
prop="creationTime"
|
|
:label="'创建时间'"
|
|
/>
|
|
<el-table-column
|
|
align="center"
|
|
:label="'操作'"
|
|
fixed="right"
|
|
>
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
@click="handleDelete(scope.row.memberCode)"
|
|
type="text"
|
|
v-has-buttons="['ServiceNumberDelete']"
|
|
size="small"
|
|
>
|
|
{{ '删除' }}
|
|
</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
</div>
|
|
<pagination
|
|
v-show="total > 0"
|
|
:total="total"
|
|
:page.sync="queryParams.pageNum"
|
|
:limit.sync="queryParams.pageSize"
|
|
@pagination="getList"
|
|
/>
|
|
<!-- 新增修改 -->
|
|
<el-dialog
|
|
:close-on-click-modal="false"
|
|
:visible.sync="dialogVisible"
|
|
:title="dialogTitle"
|
|
width="45%"
|
|
center
|
|
:before-close="handleClose"
|
|
>
|
|
<el-form ref="form" :rules="rules" :model="form" label-width="auto">
|
|
<el-row :gutter="20">
|
|
<el-col :span="12">
|
|
<el-form-item :label="'会员编号'" prop="memberCode">
|
|
<el-input
|
|
clearable
|
|
v-model="form.memberCode"
|
|
:placeholder="'请选择'"
|
|
@blur="checkName"
|
|
></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item :label="'会员姓名'">
|
|
<el-input
|
|
disabled
|
|
v-model="form.memberName"
|
|
:placeholder="'请输入会员姓名'"
|
|
></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
|
|
</el-row>
|
|
</el-form>
|
|
<span slot="footer" class="dialog-footer">
|
|
<el-button @click="handleClose">{{ '取消' }}</el-button>
|
|
<el-button type="primary" @click="onSubmit('form')">{{
|
|
'确认'
|
|
}}</el-button>
|
|
</span>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import topBar from "@/components/topBar";
|
|
import * as api from "@/api/configManage.js";
|
|
export default {
|
|
name: "ServiceNumber",
|
|
components: {
|
|
topBar,
|
|
},
|
|
data() {
|
|
return {
|
|
moren: "serviceNumber",
|
|
topList: [
|
|
{
|
|
name: "服务编号配置",
|
|
path: "serviceNumber",
|
|
},
|
|
],
|
|
select: {},
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 50,
|
|
},
|
|
total: 0,
|
|
dialogVisible: false,
|
|
tableData: [],
|
|
loading: false,
|
|
form: {},
|
|
dialogTitle: "",
|
|
rules: {
|
|
memberCode: [
|
|
{ required: true, message: '请输入', trigger: "blur" },
|
|
],
|
|
},
|
|
multipleSelection: [],
|
|
creationTime: [],
|
|
};
|
|
},
|
|
mounted() {
|
|
// 获取列表
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
changeTime(val) {
|
|
this.select.startDate = val ? val[0] : "";
|
|
this.select.endDate = val ? val[1] : "";
|
|
},
|
|
checkName() {
|
|
api
|
|
.checkMemberDetail({ memberCode: this.form.memberCode })
|
|
.then((res) => {
|
|
this.$set(this.form, "memberName", res.data.memberName);
|
|
});
|
|
},
|
|
handleSelectionChange(val) {
|
|
this.multipleSelection = val;
|
|
},
|
|
onSubmit(formName) {
|
|
this.$refs[formName].validate((valid) => {
|
|
if (valid) {
|
|
api.addServiceNumber(this.form).then((res) => {
|
|
if (res.code == 200) {
|
|
this.$message({
|
|
message: res.msg,
|
|
type: "success",
|
|
});
|
|
this.dialogVisible = false;
|
|
// 获取列表
|
|
this.getList();
|
|
this.$refs[formName].resetFields();
|
|
this.$refs[formName].clearValidate();
|
|
}
|
|
});
|
|
} else {
|
|
return false;
|
|
}
|
|
});
|
|
},
|
|
reset() {
|
|
this.select = {};
|
|
this.creationTime = [];
|
|
this.queryParams = {
|
|
pageNum: 1,
|
|
pageSize: 50,
|
|
};
|
|
this.getList();
|
|
},
|
|
// 删除
|
|
handleDelete(code) {
|
|
this.$confirm('确认删除?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: "warning",
|
|
}).then(() => {
|
|
api
|
|
.delServiceNumber({
|
|
memberCode: code,
|
|
})
|
|
.then((res) => {
|
|
this.$message({
|
|
message: res.msg,
|
|
type: "success",
|
|
});
|
|
this.getList();
|
|
});
|
|
});
|
|
},
|
|
openDig() {
|
|
this.form = {};
|
|
this.dialogVisible = true;
|
|
this.dialogTitle = '添加';
|
|
},
|
|
|
|
getList() {
|
|
this.loading = true;
|
|
api
|
|
.getServiceNumberList(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/manage/member-service-code/export",
|
|
Object.assign({}, this.queryParams, this.select),
|
|
`服务编号配置-${new Date().getTime()}.xlsx`
|
|
);
|
|
});
|
|
},
|
|
handleClose() {
|
|
this.dialogVisible = false;
|
|
},
|
|
|
|
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: 0;
|
|
}
|
|
</style>
|
|
|