- 模板列表操作列新增“配送区域”跳转链接,调整操作列宽度为200 - 配送区域页根据路由参数设置页面标题并过滤对应模板数据 - 合并省市列为配送地区列,显示具体地区名称 - 移除配送区域页模板ID和计费方式列 - 搜索组件去除模板ID搜索框,保留新增与批量删除 - 编辑表单用级联选择组件替代省市输入,移除所属模板与计费方式字段 - 编辑表单支持配送地区回显及动态标签显示,保存时自动赋值模板ID和计费方式 - 加载地区数据建立ID到名称映射以支持地区展示
277 lines
6.8 KiB
Vue
277 lines
6.8 KiB
Vue
<template>
|
|
<a-page-header :title="getPageTitle()" @back="() => $router.go(-1)">
|
|
<a-card :bordered="false" :body-style="{ padding: '16px' }">
|
|
<ele-pro-table
|
|
ref="tableRef"
|
|
row-key="id"
|
|
:columns="columns"
|
|
:datasource="datasource"
|
|
:customRow="customRow"
|
|
v-model:selection="selection"
|
|
tool-class="ele-toolbar-form"
|
|
class="sys-org-table"
|
|
>
|
|
<template #toolbar>
|
|
<search
|
|
@search="reload"
|
|
:selection="selection"
|
|
@add="openEdit"
|
|
@remove="removeBatch"
|
|
/>
|
|
</template>
|
|
<template #bodyCell="{ column, record }">
|
|
<template v-if="column.key === 'type'">
|
|
<a-tag v-if="record.type === true" color="blue">按件</a-tag>
|
|
<a-tag v-else-if="record.type === false" color="cyan">按重量</a-tag>
|
|
<span v-else>{{ record.type }}</span>
|
|
</template>
|
|
<template v-if="column.key === 'status'">
|
|
<a-tag v-if="record.status === 0" color="green">启用</a-tag>
|
|
<a-tag v-else color="red">禁用</a-tag>
|
|
</template>
|
|
<template v-if="column.key === 'action'">
|
|
<a-space>
|
|
<a @click="openEdit(record)">修改</a>
|
|
<a-divider type="vertical" />
|
|
<a @click="goDetail(record)">配送区域</a>
|
|
<a-divider type="vertical" />
|
|
<a-popconfirm
|
|
title="确定要删除此记录吗?"
|
|
@confirm="remove(record)"
|
|
>
|
|
<a class="ele-text-danger">删除</a>
|
|
</a-popconfirm>
|
|
</a-space>
|
|
</template>
|
|
</template>
|
|
</ele-pro-table>
|
|
</a-card>
|
|
|
|
<!-- 编辑弹窗 -->
|
|
<ShopExpressTemplateEdit
|
|
v-model:visible="showEdit"
|
|
:data="current"
|
|
@done="reload"
|
|
/>
|
|
</a-page-header>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { createVNode, ref } from 'vue';
|
|
import { useRouter } from 'vue-router';
|
|
import { message, Modal } from 'ant-design-vue';
|
|
import { ExclamationCircleOutlined } from '@ant-design/icons-vue';
|
|
import type { EleProTable } from 'ele-admin-pro';
|
|
import { toDateString } from 'ele-admin-pro';
|
|
import type {
|
|
DatasourceFunction,
|
|
ColumnItem
|
|
} from 'ele-admin-pro/es/ele-pro-table/types';
|
|
import Search from './components/search.vue';
|
|
import { getPageTitle } from '@/utils/common';
|
|
import ShopExpressTemplateEdit from './components/shopExpressTemplateEdit.vue';
|
|
import {
|
|
pageShopExpressTemplate,
|
|
removeShopExpressTemplate,
|
|
removeBatchShopExpressTemplate
|
|
} from '@/api/shop/shopExpressTemplate';
|
|
import type {
|
|
ShopExpressTemplate,
|
|
ShopExpressTemplateParam
|
|
} from '@/api/shop/shopExpressTemplate/model';
|
|
|
|
// 表格实例
|
|
const tableRef = ref<InstanceType<typeof EleProTable> | null>(null);
|
|
const router = useRouter();
|
|
|
|
// 表格选中数据
|
|
const selection = ref<ShopExpressTemplate[]>([]);
|
|
// 当前编辑数据
|
|
const current = ref<ShopExpressTemplate | null>(null);
|
|
// 是否显示编辑弹窗
|
|
const showEdit = ref(false);
|
|
|
|
// 表格数据源
|
|
const datasource: DatasourceFunction = ({
|
|
page,
|
|
limit,
|
|
where,
|
|
orders,
|
|
filters
|
|
}) => {
|
|
if (filters) {
|
|
where.status = filters.status;
|
|
}
|
|
return pageShopExpressTemplate({
|
|
...where,
|
|
...orders,
|
|
page,
|
|
limit
|
|
});
|
|
};
|
|
|
|
// 表格列配置
|
|
const columns = ref<ColumnItem[]>([
|
|
{
|
|
title: '模板名称',
|
|
dataIndex: 'title',
|
|
key: 'title',
|
|
align: 'center',
|
|
ellipsis: true
|
|
},
|
|
{
|
|
title: '计费方式',
|
|
dataIndex: 'type',
|
|
key: 'type',
|
|
align: 'center',
|
|
width: 100
|
|
},
|
|
{
|
|
title: '首件数量/重量',
|
|
dataIndex: 'firstNum',
|
|
key: 'firstNum',
|
|
align: 'center',
|
|
width: 120
|
|
},
|
|
{
|
|
title: '首件价格',
|
|
dataIndex: 'firstAmount',
|
|
key: 'firstAmount',
|
|
align: 'center',
|
|
width: 100
|
|
},
|
|
{
|
|
title: '续件数量/重量',
|
|
dataIndex: 'extraNum',
|
|
key: 'extraNum',
|
|
align: 'center',
|
|
width: 120
|
|
},
|
|
{
|
|
title: '续件价格',
|
|
dataIndex: 'extraAmount',
|
|
key: 'extraAmount',
|
|
align: 'center',
|
|
width: 100
|
|
},
|
|
{
|
|
title: '状态',
|
|
dataIndex: 'status',
|
|
key: 'status',
|
|
align: 'center',
|
|
width: 80
|
|
},
|
|
{
|
|
title: '排序',
|
|
dataIndex: 'sortNumber',
|
|
key: 'sortNumber',
|
|
align: 'center',
|
|
width: 80,
|
|
sorter: true
|
|
},
|
|
{
|
|
title: '创建时间',
|
|
dataIndex: 'createTime',
|
|
key: 'createTime',
|
|
align: 'center',
|
|
width: 120,
|
|
sorter: true,
|
|
ellipsis: true,
|
|
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd')
|
|
},
|
|
{
|
|
title: '操作',
|
|
key: 'action',
|
|
width: 200,
|
|
fixed: 'right',
|
|
align: 'center',
|
|
hideInSetting: true
|
|
}
|
|
]);
|
|
|
|
/* 搜索 */
|
|
const reload = (where?: ShopExpressTemplateParam) => {
|
|
selection.value = [];
|
|
tableRef?.value?.reload({ where: where });
|
|
};
|
|
|
|
/* 打开编辑弹窗 */
|
|
const openEdit = (row?: ShopExpressTemplate) => {
|
|
current.value = row ?? null;
|
|
showEdit.value = true;
|
|
};
|
|
|
|
/* 跳转到配送区域 */
|
|
const goDetail = (row: ShopExpressTemplate) => {
|
|
router.push({
|
|
path: '/shop/shopExpressTemplateDetail',
|
|
query: {
|
|
templateId: String(row.id),
|
|
title: row.title || '',
|
|
type: String(row.type)
|
|
}
|
|
});
|
|
};
|
|
|
|
/* 删除单个 */
|
|
const remove = (row: ShopExpressTemplate) => {
|
|
const hide = message.loading('请求中..', 0);
|
|
removeShopExpressTemplate(row.id)
|
|
.then((msg) => {
|
|
hide();
|
|
message.success(msg);
|
|
reload();
|
|
})
|
|
.catch((e) => {
|
|
hide();
|
|
message.error(e.message);
|
|
});
|
|
};
|
|
|
|
/* 批量删除 */
|
|
const removeBatch = () => {
|
|
if (!selection.value.length) {
|
|
message.error('请至少选择一条数据');
|
|
return;
|
|
}
|
|
Modal.confirm({
|
|
title: '提示',
|
|
content: '确定要删除选中的记录吗?',
|
|
icon: createVNode(ExclamationCircleOutlined),
|
|
maskClosable: true,
|
|
onOk: () => {
|
|
const hide = message.loading('请求中..', 0);
|
|
removeBatchShopExpressTemplate(
|
|
selection.value.map((d) => d.id)
|
|
)
|
|
.then((msg) => {
|
|
hide();
|
|
message.success(msg);
|
|
reload();
|
|
})
|
|
.catch((e) => {
|
|
hide();
|
|
message.error(e.message);
|
|
});
|
|
}
|
|
});
|
|
};
|
|
|
|
/* 自定义行属性 */
|
|
const customRow = (record: ShopExpressTemplate) => {
|
|
return {
|
|
onDblclick: () => {
|
|
openEdit(record);
|
|
}
|
|
};
|
|
};
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
name: 'ShopExpressTemplate'
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped></style>
|