799 lines
25 KiB
Vue
799 lines
25 KiB
Vue
<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="name">
|
||
<el-input
|
||
v-model="queryParams.name"
|
||
placeholder="请输入店铺名称"
|
||
clearable
|
||
@keyup.enter.native="handleQuery"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item label="联系人" prop="contactName">
|
||
<el-input
|
||
v-model="queryParams.contactName"
|
||
placeholder="请输入联系人"
|
||
clearable
|
||
@keyup.enter.native="handleQuery"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item label="联系电话" prop="contactMobile">
|
||
<el-input
|
||
v-model="queryParams.contactMobile"
|
||
placeholder="请输入联系电话"
|
||
clearable
|
||
@keyup.enter.native="handleQuery"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item label="状态" prop="status">
|
||
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable @change="handleQuery">
|
||
<el-option
|
||
v-for="dict in dict.type.ss_store_status"
|
||
:key="dict.value"
|
||
:label="dict.label"
|
||
:value="dict.value"
|
||
/>
|
||
</el-select>
|
||
</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="['system:store: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="['system:store: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="['system:store: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="['system:store:export']"
|
||
>导出</el-button>
|
||
</el-col>
|
||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
|
||
</el-row>
|
||
|
||
<el-table v-loading="loading" :data="storeList" @selection-change="handleSelectionChange" :default-sort="defaultSort" @sort-change="onSortChange">
|
||
<el-table-column type="selection" width="55" align="center" />
|
||
<template v-for="column of showColumns">
|
||
<el-table-column
|
||
:key="column.key"
|
||
:label="column.label"
|
||
:prop="column.key"
|
||
:align="column.align"
|
||
:min-width="column.minWidth"
|
||
:sort-orders="orderSorts"
|
||
:sortable="column.sortable"
|
||
:show-overflow-tooltip="column.overflow"
|
||
:width="column.width"
|
||
>
|
||
<template slot-scope="d">
|
||
<template v-if="column.key === 'name'">
|
||
<el-link
|
||
type="primary"
|
||
@click="handleView(d.row)"
|
||
v-hasPermi="['system:store:query']"
|
||
>
|
||
{{ d.row[column.key] }}
|
||
</el-link>
|
||
</template>
|
||
<template v-else-if="column.key === 'status'">
|
||
<dict-tag :options="dict.type.ss_store_status" :value="d.row[column.key]"/>
|
||
</template>
|
||
<template v-else-if="column.key === 'pictures'">
|
||
<image-preview
|
||
:src="Array.isArray(d.row[column.key]) ? d.row[column.key][0] : d.row[column.key]"
|
||
:width="50"
|
||
:height="50"
|
||
fit="cover"
|
||
/>
|
||
</template>
|
||
<template v-else-if="column.key === 'address'">
|
||
<el-link
|
||
type="primary"
|
||
@click="openMap(d.row.lng, d.row.lat)"
|
||
v-if="d.row.lng && d.row.lat"
|
||
>
|
||
{{ d.row.address || '-' }}
|
||
</el-link>
|
||
<span v-else>{{ d.row.address || '-' }}</span>
|
||
</template>
|
||
<template v-else-if="column.key === 'businessTime'">
|
||
{{ formatBusinessTime(d.row.businessTimeStart, d.row.businessTimeEnd) }}
|
||
</template>
|
||
<template v-else-if="column.key === 'tags'">
|
||
<dict-tag :options="dict.type.ss_store_tags" :value="d.row[column.key]"/>
|
||
</template>
|
||
<template v-else-if="column.key === 'typeTags'">
|
||
<dict-tag :options="dict.type.ss_room_type" :value="d.row[column.key]"/>
|
||
</template>
|
||
<template v-else-if="column.key === 'gateSn'">
|
||
<device-link
|
||
v-if="d.row.gateId"
|
||
:id="d.row.gateId"
|
||
:text="d.row.gateSn"
|
||
/>
|
||
<span v-else>-</span>
|
||
</template>
|
||
<template v-else>
|
||
{{d.row[column.key]}}
|
||
</template>
|
||
</template>
|
||
</el-table-column>
|
||
</template>
|
||
<el-table-column
|
||
label="操作"
|
||
align="center"
|
||
width="180"
|
||
class-name="small-padding fixed-width"
|
||
fixed="right"
|
||
>
|
||
<template slot-scope="scope">
|
||
<el-button
|
||
size="mini"
|
||
type="text"
|
||
icon="el-icon-view"
|
||
@click="handleView(scope.row)"
|
||
v-hasPermi="['system:store:query']"
|
||
>详情</el-button>
|
||
<el-button
|
||
size="mini"
|
||
type="text"
|
||
icon="el-icon-link"
|
||
@click="scope.row.gateId ? handleUnbindGate(scope.row) : handleBindGate(scope.row)"
|
||
v-hasPermi="['system:store:edit']"
|
||
>{{ scope.row.gateId ? '解除绑定' : '绑定大门' }}</el-button>
|
||
<el-button
|
||
size="mini"
|
||
type="text"
|
||
icon="el-icon-edit"
|
||
@click="handleUpdate(scope.row)"
|
||
v-hasPermi="['system:store:edit']"
|
||
>修改</el-button>
|
||
<el-button
|
||
size="mini"
|
||
type="text"
|
||
icon="el-icon-delete"
|
||
@click="handleDelete(scope.row)"
|
||
v-hasPermi="['system:store: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="1000px" append-to-body>
|
||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||
<el-col :span="12">
|
||
<el-form-item label="店铺名称" prop="name">
|
||
<el-input v-model="form.name" placeholder="请输入店铺名称" />
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="联系人" prop="contactName">
|
||
<el-input v-model="form.contactName" placeholder="请输入联系人" />
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="联系电话" prop="contactMobile">
|
||
<el-input v-model="form.contactMobile" placeholder="请输入联系电话" />
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="身份证号" prop="idcard">
|
||
<el-input v-model="form.idcard" placeholder="请输入身份证号" />
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="图片" prop="picture">
|
||
<image-upload
|
||
v-model="form.picture"
|
||
:value="form.picture || (Array.isArray(form.pictures) && form.pictures.length > 0 ? form.pictures[0] : '')"
|
||
:limit="5"
|
||
:fileSize="5"
|
||
:fileType="['png', 'jpg', 'jpeg']"
|
||
tip="建议尺寸:750px * 750px,大小不超过5M"
|
||
@input="val => {
|
||
form.picture = val;
|
||
form.pictures = val ? [val] : [];
|
||
}"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="地址" prop="address">
|
||
<map-select
|
||
v-model="form.address"
|
||
:default-location="{
|
||
lng: form.lng,
|
||
lat: form.lat,
|
||
address: form.address
|
||
}"
|
||
@select="handleMapSelect"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="营业时间" required>
|
||
<div class="time-range">
|
||
<el-time-picker
|
||
v-model="form.businessTimeStart"
|
||
prop="businessTimeStart"
|
||
format="HH:mm"
|
||
value-format="HH:mm"
|
||
placeholder="开始时间"
|
||
clearable
|
||
@change="validateBusinessTime"
|
||
/>
|
||
<span class="time-separator">-</span>
|
||
<el-time-picker
|
||
v-model="form.businessTimeEnd"
|
||
prop="businessTimeEnd"
|
||
format="HH:mm"
|
||
value-format="HH:mm"
|
||
placeholder="结束时间"
|
||
clearable
|
||
@change="validateBusinessTime"
|
||
/>
|
||
</div>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="客服电话" prop="serverPhone">
|
||
<el-input v-model="form.serverPhone" placeholder="请输入客服电话" />
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="标签" prop="tags">
|
||
<el-select v-model="form.tags" placeholder="请选择标签" multiple clearable>
|
||
<el-option
|
||
v-for="dict in dict.type.ss_store_tags"
|
||
:key="dict.value"
|
||
:label="dict.label"
|
||
:value="dict.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="类型" prop="typeTags" required>
|
||
<el-select v-model="form.typeTags" placeholder="请选择类型" multiple clearable>
|
||
<el-option
|
||
v-for="dict in dict.type.ss_room_type"
|
||
:key="dict.value"
|
||
:label="dict.label"
|
||
:value="dict.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
</el-col>
|
||
</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>
|
||
|
||
<!-- 绑定大门弹窗 -->
|
||
<BindGateDialog
|
||
:visible.sync="showBindGateDialog"
|
||
:storeName="selectedStoreName"
|
||
:storeId="selectedStoreId"
|
||
@bind-success="handleBindSuccess"
|
||
/>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import { listStore, getStore, delStore, addStore, updateStore } from "@/api/system/store";
|
||
import { $showColumns } from '@/utils/mixins';
|
||
import { listDevice } from "@/api/system/device";
|
||
import { bindGate, unbindDevice } from "@/api/system/store";
|
||
import DeviceLink from '@/components/Business/Device/DeviceLink';
|
||
import MapSelect from '@/components/MapSelect'
|
||
import BindGateDialog from './components/BindGateDialog.vue';
|
||
|
||
// 默认排序字段
|
||
const defaultSort = {
|
||
prop: "createTime",
|
||
order: "descending"
|
||
}
|
||
|
||
export default {
|
||
name: "Store",
|
||
components: {
|
||
DeviceLink,
|
||
MapSelect,
|
||
BindGateDialog
|
||
},
|
||
mixins: [$showColumns],
|
||
dicts: ['ss_store_status', 'ss_store_tags', 'ss_room_type'],
|
||
props: ['userId'],
|
||
data() {
|
||
return {
|
||
// 字段列表
|
||
columns: [
|
||
{key: 'storeId', visible: true, label: 'id', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||
{key: 'name', visible: true, label: '店铺名称', minWidth: null, sortable: true, overflow: false, align: 'center', width: 100},
|
||
{key: 'gateSn', visible: true, label: '大门', minWidth: null, sortable: true, overflow: false, align: 'center', width: 150},
|
||
// {key: 'managerName', visible: true, label: '店长', minWidth: null, sortable: true, overflow: false, align: 'center', width: 100},
|
||
{key: 'contactName', visible: true, label: '联系人', minWidth: null, sortable: true, overflow: false, align: 'center', width: 100},
|
||
{key: 'contactMobile', visible: true, label: '联系电话', minWidth: null, sortable: true, overflow: false, align: 'center', width: 100},
|
||
{key: 'pictures', visible: true, label: '商户图片', minWidth: null, sortable: true, overflow: false, align: 'center', width: 100},
|
||
{key: 'address', visible: true, label: '门店地址', minWidth: null, sortable: true, overflow: false, align: 'center', width: 150},
|
||
{key: 'businessTime', visible: true, label: '营业时间', minWidth: "120", sortable: false, overflow: false, align: 'center', width: null},
|
||
{key: 'serverPhone', visible: true, label: '客服电话', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||
{key: 'status', visible: true, label: '状态', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||
{key: 'tags', visible: true, label: '标签', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||
{key: 'typeTags', visible: true, label: '类型', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||
],
|
||
// 排序方式
|
||
orderSorts: ['ascending', 'descending', null],
|
||
// 遮罩层
|
||
loading: true,
|
||
// 选中数组
|
||
ids: [],
|
||
// 非单个禁用
|
||
single: true,
|
||
// 非多个禁用
|
||
multiple: true,
|
||
// 显示搜索条件
|
||
showSearch: true,
|
||
// 总条数
|
||
total: 0,
|
||
// 店铺表格数据
|
||
storeList: [],
|
||
// 弹出层标题
|
||
title: "",
|
||
// 是否显示弹出层
|
||
open: false,
|
||
defaultSort,
|
||
// 查询参数
|
||
queryParams: {
|
||
pageNum: 1,
|
||
pageSize: 20,
|
||
orderByColumn: defaultSort.prop,
|
||
isAsc: defaultSort.order,
|
||
name: null,
|
||
contactName: null,
|
||
contactMobile: null,
|
||
idcard: null,
|
||
picture: null,
|
||
address: null,
|
||
lng: null,
|
||
lat: null,
|
||
deleted: null,
|
||
businessTimeStart: null,
|
||
businessTimeEnd: null,
|
||
province: null,
|
||
city: null,
|
||
county: null,
|
||
serverPhone: null,
|
||
simpleAddress: null,
|
||
status: null,
|
||
gateSn: null,
|
||
managerName: null
|
||
},
|
||
// 表单参数
|
||
form: {
|
||
address: '',
|
||
lng: null,
|
||
lat: null
|
||
},
|
||
// 表单校验
|
||
rules: {
|
||
name: [
|
||
{ required: true, message: "店铺名称不能为空", trigger: "blur" }
|
||
],
|
||
businessTimeStart: [
|
||
{ required: true, message: "请选择营业开始时间", trigger: "change" }
|
||
],
|
||
businessTimeEnd: [
|
||
{ required: true, message: "请选择营业结束时间", trigger: "change" }
|
||
],
|
||
tags: [
|
||
{ required: true, message: "标签不能为空", trigger: "change" }
|
||
],
|
||
typeTags: [
|
||
{ required: true, message: "类型不能为空", trigger: "change" }
|
||
],
|
||
gateSn: [
|
||
{ required: true, message: "大门不能为空", trigger: "blur" }
|
||
],
|
||
contactName: [
|
||
{ required: true, message: "联系人不能为空", trigger: "blur" }
|
||
],
|
||
contactMobile: [
|
||
{ required: true, message: "联系电话不能为空", trigger: "blur" }
|
||
],
|
||
province: [
|
||
{ required: true, message: "省份不能为空", trigger: "blur" }
|
||
],
|
||
city: [
|
||
{ required: true, message: "城市不能为空", trigger: "blur" }
|
||
],
|
||
district: [
|
||
{ required: true, message: "区县不能为空", trigger: "blur" }
|
||
],
|
||
address: [
|
||
{ required: true, message: '请选择地址', trigger: 'change' }
|
||
],
|
||
idcard: [
|
||
{ validator: this.validateIdCard, trigger: 'blur' }
|
||
]
|
||
},
|
||
// 绑定大门相关数据
|
||
showBindGateDialog: false,
|
||
selectedStoreName: '',
|
||
selectedStoreId: null,
|
||
};
|
||
},
|
||
created() {
|
||
this.getList();
|
||
},
|
||
methods: {
|
||
/** 当排序按钮被点击时触发 **/
|
||
onSortChange(column) {
|
||
if (column.order == null) {
|
||
this.queryParams.orderByColumn = defaultSort.prop;
|
||
this.queryParams.isAsc = defaultSort.order;
|
||
} else {
|
||
this.queryParams.orderByColumn = column.prop;
|
||
this.queryParams.isAsc = column.order;
|
||
}
|
||
this.getList();
|
||
},
|
||
/** 查询店铺列表 */
|
||
getList() {
|
||
this.loading = true;
|
||
|
||
if (this.userId) {
|
||
this.queryParams.userId = this.userId;
|
||
}
|
||
listStore(this.queryParams).then(response => {
|
||
this.storeList = response.rows;
|
||
this.total = response.total;
|
||
this.loading = false;
|
||
});
|
||
},
|
||
// 取消按钮
|
||
cancel() {
|
||
this.open = false;
|
||
this.reset();
|
||
},
|
||
// 表单重置
|
||
reset() {
|
||
this.form = {
|
||
storeId: null,
|
||
name: null,
|
||
contactName: null,
|
||
contactMobile: null,
|
||
idcard: null,
|
||
picture: null,
|
||
pictures: [],
|
||
address: null,
|
||
lng: null,
|
||
lat: null,
|
||
createTime: null,
|
||
createBy: null,
|
||
updateTime: null,
|
||
updateBy: null,
|
||
deleted: null,
|
||
businessTimeStart: null,
|
||
businessTimeEnd: null,
|
||
province: null,
|
||
city: null,
|
||
county: null,
|
||
serverPhone: null,
|
||
simpleAddress: null,
|
||
merchantId: null,
|
||
status: null,
|
||
gateSn: null,
|
||
managerId: null,
|
||
managerName: 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.storeId)
|
||
this.single = selection.length!==1
|
||
this.multiple = !selection.length
|
||
},
|
||
/** 新增按钮操作 */
|
||
handleAdd() {
|
||
this.reset();
|
||
this.open = true;
|
||
this.title = "添加店铺";
|
||
},
|
||
/** 修改按钮操作 */
|
||
handleUpdate(row) {
|
||
this.reset();
|
||
const storeId = row.storeId || this.ids;
|
||
getStore(storeId).then(response => {
|
||
this.form = response.data;
|
||
// 保存 merchantId
|
||
this.form.merchantId = response.data.merchantId;
|
||
// 处理图片
|
||
if (!this.form.picture && Array.isArray(this.form.pictures) && this.form.pictures.length > 0) {
|
||
this.form.picture = this.form.pictures[0];
|
||
}
|
||
// 确保标签是数组格式
|
||
this.form.tags = Array.isArray(this.form.tags) ? this.form.tags : [];
|
||
this.form.typeTags = Array.isArray(this.form.typeTags) ? this.form.typeTags : [];
|
||
this.open = true;
|
||
this.title = "修改店铺";
|
||
});
|
||
},
|
||
/** 提交按钮 */
|
||
submitForm() {
|
||
this.$refs["form"].validate(valid => {
|
||
if (valid) {
|
||
const submitData = { ...this.form };
|
||
// 处理图片数据格式
|
||
if (submitData.picture) {
|
||
submitData.pictures = submitData.picture.split(',').filter(Boolean);
|
||
submitData.picture = submitData.pictures.join(',');
|
||
}
|
||
// 确保标签是数组格式
|
||
submitData.tags = Array.isArray(submitData.tags) ? submitData.tags : [];
|
||
submitData.typeTags = Array.isArray(submitData.typeTags) ? submitData.typeTags : [];
|
||
|
||
if (this.form.storeId != null) {
|
||
updateStore(submitData).then(response => {
|
||
this.$modal.msgSuccess("修改成功");
|
||
this.open = false;
|
||
this.getList();
|
||
});
|
||
} else {
|
||
addStore(submitData).then(response => {
|
||
this.$modal.msgSuccess("新增成功");
|
||
this.open = false;
|
||
this.getList();
|
||
});
|
||
}
|
||
}
|
||
});
|
||
},
|
||
/** 删除按钮操作 */
|
||
handleDelete(row) {
|
||
const storeIds = row.storeId || this.ids;
|
||
this.$modal.confirm('是否确认删除店铺编号为"' + storeIds + '"的数据项?').then(function() {
|
||
return delStore(storeIds);
|
||
}).then(() => {
|
||
this.getList();
|
||
this.$modal.msgSuccess("删除成功");
|
||
}).catch(() => {});
|
||
},
|
||
/** 导出按钮操作 */
|
||
handleExport() {
|
||
this.download('system/store/export', {
|
||
...this.queryParams
|
||
}, `store_${new Date().getTime()}.xlsx`)
|
||
},
|
||
// 添加打开地图方法
|
||
openMap(lng, lat) {
|
||
// 使用高德地图打开位置
|
||
window.open(`https://uri.amap.com/marker?position=${lng},${lat}&callnative=1`);
|
||
},
|
||
// 格式化营业时间
|
||
formatBusinessTime(start, end) {
|
||
if (!start || !end) return '-';
|
||
return `${start} - ${end}`;
|
||
},
|
||
/** 查看详情按钮操作 */
|
||
handleView(row) {
|
||
if (!row.storeId) {
|
||
this.$modal.msgError("店铺ID不能为空");
|
||
return;
|
||
}
|
||
console.log('跳转到店铺详情,ID:', row.storeId); // 添加日志
|
||
this.$router.push({
|
||
path: `/system/storeDetail/index/${row.storeId}`
|
||
}).catch(err => {
|
||
console.error('路由跳转错误:', err); // 添加错误日志
|
||
this.$modal.msgError("页面跳转失败");
|
||
});
|
||
},
|
||
// 格式化时间的辅助方法
|
||
parseTime(time) {
|
||
if (!time) return null;
|
||
// 如果已经是日期格式,直接返回
|
||
if (time instanceof Date) {
|
||
return this.parseTime(time, '{y}-{m}-{d}');
|
||
}
|
||
// 如果是时间戳或其他格式,尝试转换
|
||
try {
|
||
const date = new Date(time);
|
||
return this.parseTime(date, '{y}-{m}-{d}');
|
||
} catch (e) {
|
||
return null;
|
||
}
|
||
},
|
||
/** 打开绑定大门弹窗 */
|
||
handleBindGate(store) {
|
||
if (!store || !store.storeId) {
|
||
this.$modal.msgError("请选择一个店铺");
|
||
return;
|
||
}
|
||
this.selectedStoreName = store.name;
|
||
this.selectedStoreId = store.storeId;
|
||
this.showBindGateDialog = true;
|
||
},
|
||
handleBindSuccess() {
|
||
this.showBindGateDialog = false;
|
||
this.getList();
|
||
},
|
||
/** 解除绑定 */
|
||
handleUnbindGate(row) {
|
||
this.$modal.confirm('确定要解除该店铺的大门绑定吗?').then(() => {
|
||
this.bindLoading = true;
|
||
unbindDevice(row.gateId).then(() => {
|
||
this.$modal.msgSuccess("解除绑定成功");
|
||
this.getList(); // 刷新列表
|
||
}).finally(() => {
|
||
this.bindLoading = false;
|
||
});
|
||
}).catch(() => {});
|
||
},
|
||
handleMapSelect(location) {
|
||
this.form.address = location.address
|
||
this.form.lng = location.lng
|
||
this.form.lat = location.lat
|
||
},
|
||
validateIdCard(rule, value, callback) {
|
||
if (!value) {
|
||
callback();
|
||
} else {
|
||
const idCardPattern = /^[1-9]\d{5}(18|19|20)\d{2}((0[1-9])|(1[0-2]))(([0-2][1-9])|10|20|30|31)\d{3}(\d|X)$/;
|
||
if (!idCardPattern.test(value)) {
|
||
callback(new Error('请输入有效的身份证号'));
|
||
} else {
|
||
callback();
|
||
}
|
||
}
|
||
},
|
||
validateBusinessTime() {
|
||
if (this.form.businessTimeStart && this.form.businessTimeEnd) {
|
||
const start = this.form.businessTimeStart.split(':').map(Number);
|
||
const end = this.form.businessTimeEnd.split(':').map(Number);
|
||
if (start[0] > end[0] || (start[0] === end[0] && start[1] >= end[1])) {
|
||
this.$message.error('结束时间必须大于开始时间');
|
||
this.form.businessTimeEnd = '';
|
||
}
|
||
}
|
||
},
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
:deep(.el-link) {
|
||
font-size: 14px;
|
||
|
||
&:hover {
|
||
text-decoration: underline;
|
||
}
|
||
|
||
&.el-link--primary {
|
||
color: #11A983;
|
||
}
|
||
}
|
||
|
||
.dialog-content {
|
||
padding: 0 20px;
|
||
}
|
||
|
||
.device-list {
|
||
margin: 15px 0;
|
||
|
||
.el-table {
|
||
.el-table__row {
|
||
cursor: pointer;
|
||
|
||
&.current-row {
|
||
background-color: #f0f9eb;
|
||
}
|
||
|
||
&.placed-row {
|
||
background-color: #f5f7fa;
|
||
|
||
&:hover > td {
|
||
background-color: #ebeef5 !important;
|
||
}
|
||
}
|
||
}
|
||
|
||
.image-slot {
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
width: 100%;
|
||
height: 100%;
|
||
background: #f5f7fa;
|
||
color: #909399;
|
||
font-size: 20px;
|
||
}
|
||
}
|
||
}
|
||
|
||
.filter-container {
|
||
padding: 0 20px 15px;
|
||
.filter-item {
|
||
margin-right: 10px;
|
||
vertical-align: middle;
|
||
}
|
||
}
|
||
|
||
.pagination-container {
|
||
padding: 10px 20px;
|
||
text-align: right;
|
||
}
|
||
|
||
.time-range {
|
||
display: flex;
|
||
align-items: center;
|
||
|
||
.time-separator {
|
||
margin: 0 5px;
|
||
color: #606266;
|
||
}
|
||
|
||
.el-time-picker {
|
||
width: calc(50% - 10px);
|
||
}
|
||
}
|
||
</style>
|