|
@@ -0,0 +1,420 @@
|
|
|
|
+<template>
|
|
|
|
+ <div class="app-container">
|
|
|
|
+<!--固态等级-->
|
|
|
|
+ <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-button icon="el-icon-refresh" size="mini" @click="handleAdd" v-hasPermi="['customer:setting:add']" >添加等级</el-button>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-form>
|
|
|
|
+ <el-table v-loading="loading" :data="settingList" >
|
|
|
|
+ <el-table-column label="id" align="center" prop="id" v-if="false"/>
|
|
|
|
+ <el-table-column label="等级名称" align="center" prop="grade" />
|
|
|
|
+ <el-table-column label="优惠方式" align="center" prop="discountWay" />
|
|
|
|
+ <el-table-column label="汽油优惠/L" align="center" prop="gasoilDiscountLitre" />
|
|
|
|
+ <el-table-column label="柴油优惠/L" align="center" prop="dieseloilDiscountLitre" />
|
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ icon="el-icon-edit"
|
|
|
|
+ @click="handleUpdate(scope.row)"
|
|
|
|
+ v-hasPermi="['customer:setting:edit']"
|
|
|
|
+ >修改</el-button>
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ icon="el-icon-delete"
|
|
|
|
+ @click="handleDelete(scope.row)"
|
|
|
|
+ v-hasPermi="['customer:setting:remove']"
|
|
|
|
+ >删除</el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table>
|
|
|
|
+ <!-- 添加或修改客户优惠等级设置对话框 -->
|
|
|
|
+ <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="90px">
|
|
|
|
+ <el-form-item label="等级" prop="grade">
|
|
|
|
+ <el-input v-model="form.grade" placeholder="请输入等级" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="优惠方式" prop="discountWay">
|
|
|
|
+ <el-input v-model="form.discountWay" placeholder="请输入优惠方式" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="汽油优惠/L" prop="gasoilDiscountLitre">
|
|
|
|
+ <el-input v-model="form.gasoilDiscountLitre" placeholder="请输入汽油优惠/L" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="柴油优惠/L" prop="dieseloilDiscountLitre">
|
|
|
|
+ <el-input v-model="form.dieseloilDiscountLitre" placeholder="请输入柴油优惠/L" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="类型" v-show="false" prop="growthValue">
|
|
|
|
+ <el-input v-model="form.gradeType" value="1" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-form>
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
+ <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
+ <el-button @click="cancel">取 消</el-button>
|
|
|
|
+ </div>
|
|
|
|
+ </el-dialog>
|
|
|
|
+
|
|
|
|
+ <el-form ref="ruleForm" :model="ruleForm" inline="true" label-width="110px">
|
|
|
|
+ <el-row>
|
|
|
|
+ <el-col :span="6">
|
|
|
|
+ <el-form-item label="汽油消费" prop="gasoilConsume">
|
|
|
|
+ <el-input size="small" v-model="ruleForm.gasoilConsume" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="6">
|
|
|
|
+ <el-form-item label="获得成长值" prop="gasoilGrowthValue">
|
|
|
|
+ <el-input size="small" v-model="ruleForm.gasoilGrowthValue" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ <el-row>
|
|
|
|
+ <el-col :span="6">
|
|
|
|
+ <el-form-item label="柴油消费" prop="dieseloilConsume">
|
|
|
|
+ <el-input size="small" v-model="ruleForm.dieseloilConsume" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="6">
|
|
|
|
+ <el-form-item label="获得成长值" prop="dieseloilGrowthValue">
|
|
|
|
+ <el-input size="small" v-model="ruleForm.dieseloilGrowthValue" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ <el-row>
|
|
|
|
+ <el-col :span="6">
|
|
|
|
+ <el-form-item label="会员充值" prop="memberRecharge">
|
|
|
|
+ <el-input size="small" v-model="ruleForm.memberRecharge" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="6">
|
|
|
|
+ <el-form-item label="获得成长值" prop="payPrintNum">
|
|
|
|
+ <el-input size="small" v-model="ruleForm.memberGrowthValue" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ </el-form>
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
+ <el-button type="primary" @click="submitForm">保存</el-button>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <!--动态等级-->
|
|
|
|
+ <el-form :model="selectParams" ref="selectFrom" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-button icon="el-icon-refresh" size="mini" @click="handleAddDT" v-hasPermi="['customer:setting:add']" >添加动态等级</el-button>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-form>
|
|
|
|
+ <el-table v-loading="loading" :data="DTsettingList" >
|
|
|
|
+ <el-table-column label="id" align="center" prop="id" v-if="false" />
|
|
|
|
+ <el-table-column label="等级名称" align="center" prop="grade" />
|
|
|
|
+ <el-table-column label="成长值" align="center" prop="growthValue" />
|
|
|
|
+ <el-table-column label="有效期" align="center" prop="date" width="180">
|
|
|
|
+ <template slot-scope="scope1">
|
|
|
|
+ <span>{{ parseTime(scope1.row.date, '{y}-{m}-{d}') }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="到期扣除成长值" align="center" prop="deductionGrowthValue" />
|
|
|
|
+ <el-table-column label="汽油优惠/L" align="center" prop="gasoilDiscountLitre" />
|
|
|
|
+ <el-table-column label="柴油优惠/L" align="center" prop="dieseloilDiscountLitre" />
|
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
+ <template slot-scope="scope1">
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ icon="el-icon-edit"
|
|
|
|
+ @click="handleUpdateDT(scope1.row)"
|
|
|
|
+ v-hasPermi="['customer:setting:edit']"
|
|
|
|
+ >修改</el-button>
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ icon="el-icon-delete"
|
|
|
|
+ @click="handleDeleteDT(scope1.row)"
|
|
|
|
+ v-hasPermi="['customer:setting:remove']"
|
|
|
|
+ >删除</el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table>
|
|
|
|
+ <!-- 添加或修改动态客户优惠等级设置对话框 -->
|
|
|
|
+ <el-dialog :title="title" :visible.sync="opendt" width="500px" append-to-body>
|
|
|
|
+ <el-form ref="dtform" :model="dtform" :rules="dtrules" label-width="110px">
|
|
|
|
+ <el-form-item label="等级" prop="grade">
|
|
|
|
+ <el-input v-model="dtform.grade" placeholder="请输入等级" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="成长值" prop="growthValue">
|
|
|
|
+ <el-input v-model="dtform.growthValue" placeholder="请输入成长值" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="类型" v-show="false" prop="gradeType">
|
|
|
|
+ <el-input v-model="dtform.gradeType"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="有效期" prop="date">
|
|
|
|
+ <el-date-picker clearable size="small" style="width: 200px"
|
|
|
|
+ v-model="dtform.date"
|
|
|
|
+ type="date"
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
+ placeholder="选择有效期">
|
|
|
|
+ </el-date-picker>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="到期扣除成长值" prop="deductionGrowthValue">
|
|
|
|
+ <el-input v-model="dtform.deductionGrowthValue" placeholder="请输入到期扣除成长值" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="汽油优惠/L" prop="gasoilDiscountLitre">
|
|
|
|
+ <el-input v-model="dtform.gasoilDiscountLitre" placeholder="请输入汽油优惠/L" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="柴油优惠/L" prop="dieseloilDiscountLitre">
|
|
|
|
+ <el-input v-model="dtform.dieseloilDiscountLitre" placeholder="请输入柴油优惠/L" />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-form>
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
+ <el-button type="primary" @click="submitFormDT">确 定</el-button>
|
|
|
|
+ <el-button @click="cancelDT">取 消</el-button>
|
|
|
|
+ </div>
|
|
|
|
+ </el-dialog>
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import { listSetting, getSetting, delSetting, addSetting, updateSetting, exportSetting } from "@/api/customer/setting";
|
|
|
|
+
|
|
|
|
+export default {
|
|
|
|
+ name: "Setting",
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+ // 遮罩层
|
|
|
|
+ loading: true,
|
|
|
|
+ // 选中数组
|
|
|
|
+ ids: [],
|
|
|
|
+ // 非单个禁用
|
|
|
|
+ single: true,
|
|
|
|
+ // 非多个禁用
|
|
|
|
+ multiple: true,
|
|
|
|
+ // 显示搜索条件
|
|
|
|
+ showSearch: true,
|
|
|
|
+ // 总条数
|
|
|
|
+ total: 0,
|
|
|
|
+ // 客户优惠等级设置表格数据
|
|
|
|
+ settingList: [],
|
|
|
|
+ DTsettingList: [],
|
|
|
|
+ // 弹出层标题
|
|
|
|
+ title: "",
|
|
|
|
+ // 是否显示弹出层
|
|
|
|
+ open: false,
|
|
|
|
+ opendt: false,
|
|
|
|
+ // 查询参数
|
|
|
|
+ queryParams: {
|
|
|
|
+ pageNum: 1,
|
|
|
|
+ pageSize: 10,
|
|
|
|
+ grade: null,
|
|
|
|
+ discountWay: null,
|
|
|
|
+ gasoilDiscountLitre: null,
|
|
|
|
+ dieseloilDiscountLitre: null,
|
|
|
|
+ gradeType: null,
|
|
|
|
+ gasoilConsume: null,
|
|
|
|
+ gasoilGrowthValue: null,
|
|
|
|
+ dieseloilConsume: null,
|
|
|
|
+ dieseloilGrowthValue: null,
|
|
|
|
+ growthValue: null,
|
|
|
|
+ date: null,
|
|
|
|
+ deductionGrowthValue: null
|
|
|
|
+ },// 查询参数
|
|
|
|
+
|
|
|
|
+ selectParams: {
|
|
|
|
+ pageNum: 1,
|
|
|
|
+ pageSize: 10,
|
|
|
|
+ grade: null,
|
|
|
|
+ discountWay: null,
|
|
|
|
+ gasoilDiscountLitre: null,
|
|
|
|
+ dieseloilDiscountLitre: null,
|
|
|
|
+ gradeType: null,
|
|
|
|
+ gasoilConsume: null,
|
|
|
|
+ gasoilGrowthValue: null,
|
|
|
|
+ dieseloilConsume: null,
|
|
|
|
+ dieseloilGrowthValue: null,
|
|
|
|
+ growthValue: null,
|
|
|
|
+ date: null,
|
|
|
|
+ deductionGrowthValue: null
|
|
|
|
+ },
|
|
|
|
+ // 表单参数
|
|
|
|
+ form: {},
|
|
|
|
+ dtform: {},
|
|
|
|
+ ruleForm: {},
|
|
|
|
+ // 表单校验
|
|
|
|
+ rules: {
|
|
|
|
+ },
|
|
|
|
+ dtrules: {
|
|
|
|
+ }
|
|
|
|
+ };
|
|
|
|
+ },
|
|
|
|
+ created() {
|
|
|
|
+ this.getList();
|
|
|
|
+ this.getList2();
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ /** 查询客户优惠等级设置列表 */
|
|
|
|
+ getList() {
|
|
|
|
+ this.queryParams.gradeType="1";
|
|
|
|
+ this.loading = true;
|
|
|
|
+ listSetting(this.queryParams).then(response => {
|
|
|
|
+ this.settingList = response.rows;
|
|
|
|
+ this.total = response.total;
|
|
|
|
+ this.loading = false;
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ getList2() {
|
|
|
|
+ this.selectParams.gradeType="3";
|
|
|
|
+ this.loading = true;
|
|
|
|
+ listSetting(this.selectParams).then(response => {
|
|
|
|
+ this.DTsettingList = response.rows;
|
|
|
|
+ this.total = response.total;
|
|
|
|
+ this.loading = false;
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ // 取消按钮
|
|
|
|
+ cancel() {
|
|
|
|
+ this.open = false;
|
|
|
|
+ this.reset();
|
|
|
|
+ },
|
|
|
|
+ // 取消按钮
|
|
|
|
+ cancelDT() {
|
|
|
|
+ this.opendt = false;
|
|
|
|
+ this.reset();
|
|
|
|
+ },
|
|
|
|
+ // 表单重置
|
|
|
|
+ reset() {
|
|
|
|
+ this.form = {
|
|
|
|
+ id: null,
|
|
|
|
+ grade: null,
|
|
|
|
+ discountWay: null,
|
|
|
|
+ gasoilDiscountLitre: null,
|
|
|
|
+ dieseloilDiscountLitre: null,
|
|
|
|
+ gradeType: null,
|
|
|
|
+ gasoilConsume: null,
|
|
|
|
+ gasoilGrowthValue: null,
|
|
|
|
+ dieseloilConsume: null,
|
|
|
|
+ dieseloilGrowthValue: null,
|
|
|
|
+ growthValue: null,
|
|
|
|
+ date: null,
|
|
|
|
+ deductionGrowthValue: null
|
|
|
|
+ };
|
|
|
|
+ this.resetForm("form");
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ /** 新增按钮操作 */
|
|
|
|
+ handleAdd() {
|
|
|
|
+ this.reset();
|
|
|
|
+ this.open = true;
|
|
|
|
+ this.title = "添加客户优惠等级设置";
|
|
|
|
+ },
|
|
|
|
+ /** 修改按钮操作 */
|
|
|
|
+ handleUpdate(row) {
|
|
|
|
+ this.reset();
|
|
|
|
+ const id = row.id || this.ids
|
|
|
|
+ getSetting(id).then(response => {
|
|
|
|
+ this.form = response.data;
|
|
|
|
+ this.open = true;
|
|
|
|
+ this.title = "修改客户优惠等级设置";
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ /** 新增按钮操作 */
|
|
|
|
+ handleAddDT() {
|
|
|
|
+ this.reset();
|
|
|
|
+ this.opendt = true;
|
|
|
|
+ this.title = "添加客户优惠等级设置";
|
|
|
|
+ },
|
|
|
|
+ /** 修改按钮操作 */
|
|
|
|
+ handleUpdateDT(row) {
|
|
|
|
+ this.reset();
|
|
|
|
+ const id = row.id || this.ids
|
|
|
|
+ getSetting(id).then(response => {
|
|
|
|
+ this.dtform = response.data;
|
|
|
|
+ this.opendt = true;
|
|
|
|
+ this.title = "修改客户优惠等级设置";
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ /** 提交按钮 */
|
|
|
|
+ submitForm() {
|
|
|
|
+ this.form.gradeType="1";
|
|
|
|
+ this.$refs["form"].validate(valid => {
|
|
|
|
+ if (valid) {
|
|
|
|
+ if (this.form.id != null) {
|
|
|
|
+ updateSetting(this.form).then(response => {
|
|
|
|
+ this.msgSuccess("修改成功");
|
|
|
|
+ this.open = false;
|
|
|
|
+ this.getList();
|
|
|
|
+ });
|
|
|
|
+ } else {
|
|
|
|
+ addSetting(this.form).then(response => {
|
|
|
|
+ this.msgSuccess("新增成功");
|
|
|
|
+ this.open = false;
|
|
|
|
+ this.getList();
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ /** 提交按钮 */
|
|
|
|
+ submitFormDT() {
|
|
|
|
+ this.dtform.gradeType="3";
|
|
|
|
+ this.$refs["dtform"].validate(valid => {
|
|
|
|
+ if (valid) {
|
|
|
|
+ if (this.dtform.id != null) {
|
|
|
|
+ updateSetting(this.dtform).then(response => {
|
|
|
|
+ this.msgSuccess("修改成功");
|
|
|
|
+ this.opendt = false;
|
|
|
|
+ this.getList2();
|
|
|
|
+ });
|
|
|
|
+ } else {
|
|
|
|
+ addSetting(this.dtform).then(response => {
|
|
|
|
+ this.msgSuccess("新增成功");
|
|
|
|
+ this.opendt= false;
|
|
|
|
+ this.getList2();
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ /** 删除按钮操作 */
|
|
|
|
+ handleDelete(row) {
|
|
|
|
+ const ids = row.id || this.ids;
|
|
|
|
+ this.$confirm('是否确认删除客户优惠等级设置编号为"' + ids + '"的数据项?', "警告", {
|
|
|
|
+ confirmButtonText: "确定",
|
|
|
|
+ cancelButtonText: "取消",
|
|
|
|
+ type: "warning"
|
|
|
|
+ }).then(function() {
|
|
|
|
+ return delSetting(ids);
|
|
|
|
+ }).then(() => {
|
|
|
|
+ this.getList();
|
|
|
|
+ this.msgSuccess("删除成功");
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ /** 删除按钮操作 */
|
|
|
|
+ handleDeleteDT(row) {
|
|
|
|
+ const ids = row.id || this.ids;
|
|
|
|
+ this.$confirm('是否确认删除客户优惠等级设置编号为"' + ids + '"的数据项?', "警告", {
|
|
|
|
+ confirmButtonText: "确定",
|
|
|
|
+ cancelButtonText: "取消",
|
|
|
|
+ type: "warning"
|
|
|
|
+ }).then(function() {
|
|
|
|
+ return delSetting(ids);
|
|
|
|
+ }).then(() => {
|
|
|
|
+ this.getList();
|
|
|
|
+ this.msgSuccess("删除成功");
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ /** 导出按钮操作 */
|
|
|
|
+ handleExport() {
|
|
|
|
+ const queryParams = this.queryParams;
|
|
|
|
+ this.$confirm('是否确认导出所有客户优惠等级设置数据项?', "警告", {
|
|
|
|
+ confirmButtonText: "确定",
|
|
|
|
+ cancelButtonText: "取消",
|
|
|
|
+ type: "warning"
|
|
|
|
+ }).then(function() {
|
|
|
|
+ return exportSetting(queryParams);
|
|
|
|
+ }).then(response => {
|
|
|
|
+ this.download(response.msg);
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+</script>
|