|
|
|
<template>
|
|
|
|
<div class="app-container">
|
|
|
|
<el-form
|
|
|
|
:model="queryParams"
|
|
|
|
ref="queryForm"
|
|
|
|
size="small"
|
|
|
|
:inline="true"
|
|
|
|
v-show="showSearch"
|
|
|
|
label-width="68px"
|
|
|
|
>
|
|
|
|
<el-form-item label="商户名称" prop="posName">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.posName"
|
|
|
|
placeholder="请输入商户名称"
|
|
|
|
clearable
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="联系人" prop="linkMan">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.linkMan"
|
|
|
|
placeholder="请输入联系人"
|
|
|
|
clearable
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="城市" prop="city">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.city"
|
|
|
|
placeholder="请输入城市"
|
|
|
|
clearable
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
icon="el-icon-search"
|
|
|
|
size="mini"
|
|
|
|
@click="handleQuery"
|
|
|
|
>搜索</el-button
|
|
|
|
>
|
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
|
|
|
|
>重置</el-button
|
|
|
|
>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
plain
|
|
|
|
icon="el-icon-plus"
|
|
|
|
size="mini"
|
|
|
|
@click="handleAdd"
|
|
|
|
v-hasPermi="['netEwm:shanghu:add']"
|
|
|
|
>新增</el-button
|
|
|
|
>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="success"
|
|
|
|
plain
|
|
|
|
icon="el-icon-edit"
|
|
|
|
size="mini"
|
|
|
|
:disabled="single"
|
|
|
|
@click="handleUpdate"
|
|
|
|
v-hasPermi="['netEwm:shanghu:edit']"
|
|
|
|
>修改</el-button
|
|
|
|
>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="danger"
|
|
|
|
plain
|
|
|
|
icon="el-icon-delete"
|
|
|
|
size="mini"
|
|
|
|
:disabled="multiple"
|
|
|
|
@click="handleDelete"
|
|
|
|
v-hasPermi="['netEwm:shanghu:remove']"
|
|
|
|
>删除</el-button
|
|
|
|
>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="warning"
|
|
|
|
plain
|
|
|
|
icon="el-icon-download"
|
|
|
|
size="mini"
|
|
|
|
@click="handleExport"
|
|
|
|
v-hasPermi="['netEwm:shanghu:export']"
|
|
|
|
>导出</el-button
|
|
|
|
>
|
|
|
|
</el-col>
|
|
|
|
<right-toolbar
|
|
|
|
:showSearch.sync="showSearch"
|
|
|
|
@queryTable="getList"
|
|
|
|
></right-toolbar>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
<el-table
|
|
|
|
v-loading="loading"
|
|
|
|
:data="shanghuList"
|
|
|
|
@selection-change="handleSelectionChange"
|
|
|
|
>
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
<el-table-column label="商户名称" align="center" prop="posName" />
|
|
|
|
<el-table-column label="联系人" align="center" prop="linkMan" />
|
|
|
|
<el-table-column label="手机号" align="center" prop="phoneNumber" />
|
|
|
|
<el-table-column label="城市" align="center" prop="city" />
|
|
|
|
<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-document-copy"
|
|
|
|
@click="handleFp(scope.row)"
|
|
|
|
v-hasPermi="['netEwm:shanghu:edit']"
|
|
|
|
>分配广告</el-button
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
size="mini"
|
|
|
|
type="text"
|
|
|
|
icon="el-icon-edit"
|
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
|
v-hasPermi="['netEwm:shanghu:edit']"
|
|
|
|
>修改</el-button
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
size="mini"
|
|
|
|
type="text"
|
|
|
|
icon="el-icon-view"
|
|
|
|
@click="handleUpdate(scope.row, 'info')"
|
|
|
|
v-hasPermi="['netEwm:shanghu:edit']"
|
|
|
|
>查看</el-button
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
size="mini"
|
|
|
|
type="text"
|
|
|
|
icon="el-icon-delete"
|
|
|
|
@click="handleDelete(scope.row)"
|
|
|
|
v-hasPermi="['netEwm:shanghu:remove']"
|
|
|
|
>删除</el-button
|
|
|
|
>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
<pagination
|
|
|
|
v-show="total > 0"
|
|
|
|
:total="total"
|
|
|
|
:page.sync="queryParams.pageNum"
|
|
|
|
:limit.sync="queryParams.pageSize"
|
|
|
|
@pagination="getList"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<!-- 添加或修改商户对话框 -->
|
|
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
|
<el-form-item label="商户名称" prop="posName">
|
|
|
|
<el-input v-model="form.posName" placeholder="请输入商户名称" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="联系人" prop="linkMan">
|
|
|
|
<el-input v-model="form.linkMan" placeholder="请输入联系人" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="手机号" prop="phoneNumber">
|
|
|
|
<el-input v-model="form.phoneNumber" placeholder="请输入手机号" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="城市" prop="city">
|
|
|
|
<el-input v-model="form.city" placeholder="请输入城市" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="地址信息" prop="address">
|
|
|
|
<el-input
|
|
|
|
type="textarea"
|
|
|
|
v-model="form.address"
|
|
|
|
placeholder="请输入地址信息"
|
|
|
|
/>
|
|
|
|
</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-dialog
|
|
|
|
:title="titleInfo"
|
|
|
|
:visible.sync="openInfo"
|
|
|
|
width="800px"
|
|
|
|
append-to-body
|
|
|
|
>
|
|
|
|
<el-descriptions border :column="2">
|
|
|
|
<el-descriptions-item label="商户名称">{{
|
|
|
|
form.posName
|
|
|
|
}}</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="联系人">{{
|
|
|
|
form.linkMan
|
|
|
|
}}</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="手机号">{{
|
|
|
|
form.phoneNumber
|
|
|
|
}}</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="城市">{{
|
|
|
|
form.city
|
|
|
|
}}</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="地址信息">{{
|
|
|
|
form.address
|
|
|
|
}}</el-descriptions-item>
|
|
|
|
</el-descriptions>
|
|
|
|
<div class="my-info">
|
|
|
|
<div class="cell-info">商户广告</div>
|
|
|
|
<div class="info-container">
|
|
|
|
<video
|
|
|
|
:src="form.videoPath"
|
|
|
|
class="avatar"
|
|
|
|
controls="controls"
|
|
|
|
></video>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</el-dialog>
|
|
|
|
<my-table ref="MyTable"></my-table>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import {
|
|
|
|
listShanghu,
|
|
|
|
getShanghu,
|
|
|
|
delShanghu,
|
|
|
|
addShanghu,
|
|
|
|
updateShanghu,
|
|
|
|
} from "@/api/netEwm/shanghu";
|
|
|
|
import { getPoster } from "@/api/netEwm/poster";
|
|
|
|
|
|
|
|
import MyTable from "./components/MyTable.vue";
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
MyTable,
|
|
|
|
},
|
|
|
|
name: "Shanghu",
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
baseUrl: process.env.VUE_APP_BASE_API,
|
|
|
|
//详情标题
|
|
|
|
titleInfo: "",
|
|
|
|
//详情弹出层
|
|
|
|
openInfo: false,
|
|
|
|
// 遮罩层
|
|
|
|
loading: true,
|
|
|
|
// 选中数组
|
|
|
|
ids: [],
|
|
|
|
// 非单个禁用
|
|
|
|
single: true,
|
|
|
|
// 非多个禁用
|
|
|
|
multiple: true,
|
|
|
|
// 显示搜索条件
|
|
|
|
showSearch: true,
|
|
|
|
// 总条数
|
|
|
|
total: 0,
|
|
|
|
// 商户表格数据
|
|
|
|
shanghuList: [],
|
|
|
|
// 弹出层标题
|
|
|
|
title: "",
|
|
|
|
// 是否显示弹出层
|
|
|
|
open: false,
|
|
|
|
// 查询参数
|
|
|
|
queryParams: {
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
posName: null,
|
|
|
|
linkMan: null,
|
|
|
|
city: null,
|
|
|
|
},
|
|
|
|
// 表单参数
|
|
|
|
form: {},
|
|
|
|
// 表单校验
|
|
|
|
rules: {
|
|
|
|
posName: [
|
|
|
|
{ required: true, message: "商户名称不能为空", trigger: "blur" },
|
|
|
|
],
|
|
|
|
phoneNumber: [
|
|
|
|
{ required: true, message: "手机号不能为空", trigger: "blur" },
|
|
|
|
],
|
|
|
|
linkMan: [
|
|
|
|
{ required: true, message: "联系人不能为空", trigger: "blur" },
|
|
|
|
],
|
|
|
|
city: [{ required: true, message: "城市不能为空", trigger: "blur" }],
|
|
|
|
address: [
|
|
|
|
{ required: true, message: "地址信息不能为空", trigger: "blur" },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
/**分配广告 */
|
|
|
|
handleFp(row) {
|
|
|
|
getShanghu(row.id).then((response) => {
|
|
|
|
let data = {
|
|
|
|
shanghuCity: response.data.city,
|
|
|
|
shanghuIds: [response.data.id],
|
|
|
|
shanghuName: response.data.posName,
|
|
|
|
};
|
|
|
|
let posterId = response.data.posterId;
|
|
|
|
this.$refs.MyTable.openDialog(data, posterId);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
/** 查询商户列表 */
|
|
|
|
getList() {
|
|
|
|
this.loading = true;
|
|
|
|
listShanghu(this.queryParams).then((response) => {
|
|
|
|
this.shanghuList = response.rows;
|
|
|
|
this.total = response.total;
|
|
|
|
this.loading = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// 取消按钮
|
|
|
|
cancel() {
|
|
|
|
this.open = false;
|
|
|
|
this.reset();
|
|
|
|
},
|
|
|
|
// 表单重置
|
|
|
|
reset() {
|
|
|
|
this.form = {
|
|
|
|
id: null,
|
|
|
|
posName: null,
|
|
|
|
phoneNumber: null,
|
|
|
|
linkMan: null,
|
|
|
|
city: null,
|
|
|
|
address: null,
|
|
|
|
posterId: null,
|
|
|
|
createBy: null,
|
|
|
|
createTime: null,
|
|
|
|
updateBy: null,
|
|
|
|
updateTime: null,
|
|
|
|
remark: null,
|
|
|
|
};
|
|
|
|
this.resetForm("form");
|
|
|
|
},
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
handleQuery() {
|
|
|
|
this.queryParams.pageNum = 1;
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
resetQuery() {
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
this.handleQuery();
|
|
|
|
},
|
|
|
|
// 多选框选中数据
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
this.ids = selection.map((item) => item.id);
|
|
|
|
this.single = selection.length !== 1;
|
|
|
|
this.multiple = !selection.length;
|
|
|
|
},
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
handleAdd() {
|
|
|
|
this.reset();
|
|
|
|
this.open = true;
|
|
|
|
this.title = "添加商户";
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
handleUpdate(row, type) {
|
|
|
|
this.reset();
|
|
|
|
const id = row.id || this.ids;
|
|
|
|
getShanghu(id).then((response) => {
|
|
|
|
this.form = response.data;
|
|
|
|
if (type == "info") {
|
|
|
|
getPoster(this.form.posterId).then((info) => {
|
|
|
|
this.form.videoPath = this.baseUrl + info.data.videoPath;
|
|
|
|
this.openInfo = true;
|
|
|
|
this.titleInfo = "查看商户详细信息";
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.open = true;
|
|
|
|
this.title = "修改商户";
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
/** 提交按钮 */
|
|
|
|
submitForm() {
|
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
|
if (valid) {
|
|
|
|
if (this.form.id != null) {
|
|
|
|
updateShanghu(this.form).then((response) => {
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
this.open = false;
|
|
|
|
this.getList();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
addShanghu(this.form).then((response) => {
|
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
this.open = false;
|
|
|
|
this.getList();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
handleDelete(row) {
|
|
|
|
const ids = row.id || this.ids;
|
|
|
|
this.$modal
|
|
|
|
.confirm('是否确认删除商户编号为"' + ids + '"的数据项?')
|
|
|
|
.then(function () {
|
|
|
|
return delShanghu(ids);
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
this.getList();
|
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
|
})
|
|
|
|
.catch(() => {});
|
|
|
|
},
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
handleExport() {
|
|
|
|
this.download(
|
|
|
|
"netEwm/shanghu/export",
|
|
|
|
{
|
|
|
|
...this.queryParams,
|
|
|
|
},
|
|
|
|
`shanghu_${new Date().getTime()}.xlsx`
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|