Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
a06a63c1be
@ -5,14 +5,6 @@ export const getAreaTree = async () => {
|
|||||||
return await request.get({ url: '/system/area/tree' })
|
return await request.get({ url: '/system/area/tree' })
|
||||||
}
|
}
|
||||||
|
|
||||||
export const getChildrenArea = async (id: number) => {
|
|
||||||
return await request.get({ url: '/system/area/get-children?id=' + id })
|
|
||||||
}
|
|
||||||
|
|
||||||
export const getAreaListByIds = async (ids) => {
|
|
||||||
return await request.get({ url: '/system/area/get-by-ids?ids=' + ids })
|
|
||||||
}
|
|
||||||
|
|
||||||
// 获得 IP 对应的地区名
|
// 获得 IP 对应的地区名
|
||||||
export const getAreaByIp = async (ip: string) => {
|
export const getAreaByIp = async (ip: string) => {
|
||||||
return await request.get({ url: '/system/area/get-by-ip?ip=' + ip })
|
return await request.get({ url: '/system/area/get-by-ip?ip=' + ip })
|
||||||
|
@ -405,7 +405,7 @@ const remainingRouter: AppRouteRecordRaw[] = [
|
|||||||
meta: { title: '订单详情', icon: 'ep:view', activeMenu: '/mall/trade/order' }
|
meta: { title: '订单详情', icon: 'ep:view', activeMenu: '/mall/trade/order' }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'after-sale/detail/:orderId(\\d+)',
|
path: 'after-sale/detail/:id(\\d+)',
|
||||||
component: () => import('@/views/mall/trade/afterSale/detail/index.vue'),
|
component: () => import('@/views/mall/trade/afterSale/detail/index.vue'),
|
||||||
name: 'TradeAfterSaleDetail',
|
name: 'TradeAfterSaleDetail',
|
||||||
meta: { title: '退款详情', icon: 'ep:view', activeMenu: '/mall/trade/after-sale' }
|
meta: { title: '退款详情', icon: 'ep:view', activeMenu: '/mall/trade/after-sale' }
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
<el-descriptions-item label="配送方式: ">
|
<el-descriptions-item label="配送方式: ">
|
||||||
<dict-tag :type="DICT_TYPE.TRADE_DELIVERY_TYPE" :value="formData.order.deliveryType" />
|
<dict-tag :type="DICT_TYPE.TRADE_DELIVERY_TYPE" :value="formData.order.deliveryType" />
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
<!-- TODO 营销活动待实现 -->
|
|
||||||
<el-descriptions-item label="订单类型: ">
|
<el-descriptions-item label="订单类型: ">
|
||||||
<dict-tag :type="DICT_TYPE.TRADE_ORDER_TYPE" :value="formData.order.type" />
|
<dict-tag :type="DICT_TYPE.TRADE_ORDER_TYPE" :value="formData.order.type" />
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
@ -29,8 +28,7 @@
|
|||||||
<el-descriptions-item label="付款方式: ">
|
<el-descriptions-item label="付款方式: ">
|
||||||
<dict-tag :type="DICT_TYPE.PAY_CHANNEL_CODE" :value="formData.order.payChannelCode" />
|
<dict-tag :type="DICT_TYPE.PAY_CHANNEL_CODE" :value="formData.order.payChannelCode" />
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
<!-- TODO 芋艿:待实现:跳转会员 -->
|
<el-descriptions-item label="买家: ">{{ formData?.user?.nickname }}</el-descriptions-item>
|
||||||
<!-- <el-descriptions-item label="买家: ">{{ formData.user.nickname }}</el-descriptions-item> -->
|
|
||||||
</el-descriptions>
|
</el-descriptions>
|
||||||
|
|
||||||
<!-- 售后信息 -->
|
<!-- 售后信息 -->
|
||||||
@ -46,7 +44,7 @@
|
|||||||
<dict-tag :type="DICT_TYPE.TRADE_AFTER_SALE_WAY" :value="formData.way" />
|
<dict-tag :type="DICT_TYPE.TRADE_AFTER_SALE_WAY" :value="formData.way" />
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
<el-descriptions-item label="退款金额: ">
|
<el-descriptions-item label="退款金额: ">
|
||||||
{{ floatToFixed2(formData.refundPrice) }}
|
{{ fenToYuan(formData.refundPrice) }}
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
<el-descriptions-item label="退款原因: ">{{ formData.applyReason }}</el-descriptions-item>
|
<el-descriptions-item label="退款原因: ">{{ formData.applyReason }}</el-descriptions-item>
|
||||||
<el-descriptions-item label="补充描述: ">
|
<el-descriptions-item label="补充描述: ">
|
||||||
@ -92,7 +90,7 @@
|
|||||||
<el-descriptions-item labelClassName="no-colon">
|
<el-descriptions-item labelClassName="no-colon">
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="15">
|
<el-col :span="15">
|
||||||
<el-table :data="formData.items" border>
|
<el-table :data="[formData.orderItem]" border>
|
||||||
<el-table-column label="商品" prop="spuName" width="auto">
|
<el-table-column label="商品" prop="spuName" width="auto">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
{{ row.spuName }}
|
{{ row.spuName }}
|
||||||
@ -102,19 +100,11 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="商品原价" prop="price" width="150">
|
<el-table-column label="商品原价" prop="price" width="150">
|
||||||
<template #default="{ row }">{{ floatToFixed2(row.price) }}元</template>
|
<template #default="{ row }">{{ fenToYuan(row.price) }} 元</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="数量" prop="count" width="100" />
|
<el-table-column label="数量" prop="count" width="100" />
|
||||||
<el-table-column label="合计" prop="payPrice" width="150">
|
<el-table-column label="合计" prop="payPrice" width="150">
|
||||||
<template #default="{ row }">{{ floatToFixed2(row.payPrice) }}元</template>
|
<template #default="{ row }">{{ fenToYuan(row.payPrice) }} 元</template>
|
||||||
</el-table-column>
|
|
||||||
<el-table-column label="售后状态" prop="afterSaleStatus" width="120">
|
|
||||||
<template #default="{ row }">
|
|
||||||
<dict-tag
|
|
||||||
:type="DICT_TYPE.TRADE_ORDER_ITEM_AFTER_SALE_STATUS"
|
|
||||||
:value="row.afterSaleStatus"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
</el-col>
|
</el-col>
|
||||||
@ -122,6 +112,8 @@
|
|||||||
</el-row>
|
</el-row>
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
</el-descriptions>
|
</el-descriptions>
|
||||||
|
|
||||||
|
<!-- 操作日志 -->
|
||||||
<el-descriptions title="售后日志">
|
<el-descriptions title="售后日志">
|
||||||
<el-descriptions-item labelClassName="no-colon">
|
<el-descriptions-item labelClassName="no-colon">
|
||||||
<el-timeline>
|
<el-timeline>
|
||||||
@ -153,7 +145,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import * as AfterSaleApi from '@/api/mall/trade/afterSale/index'
|
import * as AfterSaleApi from '@/api/mall/trade/afterSale/index'
|
||||||
import { floatToFixed2 } from '@/utils'
|
import { fenToYuan } from '@/utils'
|
||||||
import { DICT_TYPE, getDictLabel, getDictObj } from '@/utils/dict'
|
import { DICT_TYPE, getDictLabel, getDictObj } from '@/utils/dict'
|
||||||
import { formatDate } from '@/utils/formatTime'
|
import { formatDate } from '@/utils/formatTime'
|
||||||
import UpdateAuditReasonForm from '@/views/mall/trade/afterSale/form/AfterSaleDisagreeForm.vue'
|
import UpdateAuditReasonForm from '@/views/mall/trade/afterSale/form/AfterSaleDisagreeForm.vue'
|
||||||
@ -191,7 +183,7 @@ const getUserTypeColor = (type: number) => {
|
|||||||
|
|
||||||
/** 获得详情 */
|
/** 获得详情 */
|
||||||
const getDetail = async () => {
|
const getDetail = async () => {
|
||||||
const id = params.orderId as unknown as number
|
const id = params.id as unknown as number
|
||||||
if (id) {
|
if (id) {
|
||||||
const res = await AfterSaleApi.getAfterSale(id)
|
const res = await AfterSaleApi.getAfterSale(id)
|
||||||
// 没有表单信息则关闭页面返回
|
// 没有表单信息则关闭页面返回
|
||||||
@ -204,44 +196,56 @@ const getDetail = async () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** 同意售后 */
|
/** 同意售后 */
|
||||||
const agree = () => {
|
const agree = async () => {
|
||||||
message.confirm('是否同意售后?').then(() => {
|
try {
|
||||||
AfterSaleApi.agree(formData.value.id)
|
// 二次确认
|
||||||
|
await message.confirm('是否同意售后?')
|
||||||
|
await AfterSaleApi.agree(formData.value.id)
|
||||||
|
// 提示成功
|
||||||
message.success(t('common.success'))
|
message.success(t('common.success'))
|
||||||
getDetail()
|
await getDetail()
|
||||||
})
|
} catch {}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 拒绝售后 */
|
/** 拒绝售后 */
|
||||||
const disagree = () => {
|
const disagree = async () => {
|
||||||
updateAuditReasonFormRef.value?.open(formData.value)
|
updateAuditReasonFormRef.value?.open(formData.value)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 确认收货 */
|
/** 确认收货 */
|
||||||
const receive = () => {
|
const receive = async () => {
|
||||||
message.confirm('是否确认收货?').then(() => {
|
try {
|
||||||
AfterSaleApi.receive(formData.value.id)
|
// 二次确认
|
||||||
|
await message.confirm('是否确认收货?')
|
||||||
|
await AfterSaleApi.receive(formData.value.id)
|
||||||
|
// 提示成功
|
||||||
message.success(t('common.success'))
|
message.success(t('common.success'))
|
||||||
getDetail()
|
await getDetail()
|
||||||
})
|
} catch {}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 拒绝收货 */
|
/** 拒绝收货 */
|
||||||
const refuse = () => {
|
const refuse = async () => {
|
||||||
message.confirm('是否拒绝收货?').then(() => {
|
try {
|
||||||
AfterSaleApi.refuse(formData.value.id)
|
// 二次确认
|
||||||
|
await message.confirm('是否拒绝收货?')
|
||||||
|
await AfterSaleApi.refuse(formData.value.id)
|
||||||
|
// 提示成功
|
||||||
message.success(t('common.success'))
|
message.success(t('common.success'))
|
||||||
getDetail()
|
await getDetail()
|
||||||
})
|
} catch {}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 确认退款 */
|
/** 确认退款 */
|
||||||
const refund = () => {
|
const refund = async () => {
|
||||||
message.confirm('是否确认退款?').then(() => {
|
try {
|
||||||
AfterSaleApi.refund(formData.value.id)
|
// 二次确认
|
||||||
|
await message.confirm('是否确认退款?')
|
||||||
|
await AfterSaleApi.refund(formData.value.id)
|
||||||
|
// 提示成功
|
||||||
message.success(t('common.success'))
|
message.success(t('common.success'))
|
||||||
getDetail()
|
await getDetail()
|
||||||
})
|
} catch {}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 图片预览 */
|
/** 图片预览 */
|
||||||
|
@ -135,17 +135,16 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column align="center" label="订单金额" prop="refundPrice">
|
<el-table-column align="center" label="订单金额" prop="refundPrice">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<span>{{ floatToFixed2(scope.row.refundPrice) }}元</span>
|
<span>{{ fenToYuan(scope.row.refundPrice) }} 元</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<!-- TODO 芋艿:未来要加个会员链接 -->
|
|
||||||
<el-table-column align="center" label="买家" prop="user.nickname" />
|
<el-table-column align="center" label="买家" prop="user.nickname" />
|
||||||
<el-table-column align="center" label="申请时间" prop="createTime" width="180">
|
<el-table-column align="center" label="申请时间" prop="createTime" width="180">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<span>{{ formatDate(scope.row.createTime) }}</span>
|
<span>{{ formatDate(scope.row.createTime) }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column align="center" label="售后状态">
|
<el-table-column align="center" label="售后状态" width="100">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<dict-tag :type="DICT_TYPE.TRADE_AFTER_SALE_STATUS" :value="scope.row.status" />
|
<dict-tag :type="DICT_TYPE.TRADE_AFTER_SALE_STATUS" :value="scope.row.status" />
|
||||||
</template>
|
</template>
|
||||||
@ -177,7 +176,7 @@ import { formatDate } from '@/utils/formatTime'
|
|||||||
import { createImageViewer } from '@/components/ImageViewer'
|
import { createImageViewer } from '@/components/ImageViewer'
|
||||||
import { TabsPaneContext } from 'element-plus'
|
import { TabsPaneContext } from 'element-plus'
|
||||||
import { cloneDeep } from 'lodash-es'
|
import { cloneDeep } from 'lodash-es'
|
||||||
import { floatToFixed2 } from '@/utils'
|
import { fenToYuan } from '@/utils'
|
||||||
|
|
||||||
defineOptions({ name: 'TradeAfterSale' })
|
defineOptions({ name: 'TradeAfterSale' })
|
||||||
|
|
||||||
@ -240,7 +239,7 @@ const tabClick = async (tab: TabsPaneContext) => {
|
|||||||
|
|
||||||
/** 处理退款 */
|
/** 处理退款 */
|
||||||
const openAfterSaleDetail = (id: number) => {
|
const openAfterSaleDetail = (id: number) => {
|
||||||
push({ name: 'TradeAfterSaleDetail', params: { orderId: id } })
|
push({ name: 'TradeAfterSaleDetail', params: { id } })
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 查看订单详情 */
|
/** 查看订单详情 */
|
||||||
|
@ -64,6 +64,9 @@
|
|||||||
商城商品满多少金额即可包邮,单位:元
|
商城商品满多少金额即可包邮,单位:元
|
||||||
</el-text>
|
</el-text>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="启用门店自提" prop="deliveryPickUpEnabled">
|
||||||
|
<el-switch v-model="formData.deliveryPickUpEnabled" style="user-select: none" />
|
||||||
|
</el-form-item>
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
<!-- 分销 -->
|
<!-- 分销 -->
|
||||||
<el-tab-pane label="分销">
|
<el-tab-pane label="分销">
|
||||||
@ -206,7 +209,6 @@
|
|||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import * as ConfigApi from '@/api/mall/trade/config'
|
import * as ConfigApi from '@/api/mall/trade/config'
|
||||||
import { BrokerageBindModeEnum, BrokerageEnabledConditionEnum } from '@/utils/constants'
|
|
||||||
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
||||||
|
|
||||||
defineOptions({ name: 'TradeConfig' })
|
defineOptions({ name: 'TradeConfig' })
|
||||||
@ -221,6 +223,7 @@ const formData = ref({
|
|||||||
afterSaleReturnReasons: [],
|
afterSaleReturnReasons: [],
|
||||||
deliveryExpressFreeEnabled: false,
|
deliveryExpressFreeEnabled: false,
|
||||||
deliveryExpressFreePrice: 0,
|
deliveryExpressFreePrice: 0,
|
||||||
|
deliveryPickUpEnabled: false,
|
||||||
brokerageEnabled: false,
|
brokerageEnabled: false,
|
||||||
brokerageEnabledCondition: undefined,
|
brokerageEnabledCondition: undefined,
|
||||||
brokerageBindMode: undefined,
|
brokerageBindMode: undefined,
|
||||||
|
@ -7,17 +7,17 @@
|
|||||||
label-width="120px"
|
label-width="120px"
|
||||||
v-loading="formLoading"
|
v-loading="formLoading"
|
||||||
>
|
>
|
||||||
<el-form-item label="快递公司编码" prop="code">
|
<el-form-item label="公司编码" prop="code">
|
||||||
<el-input v-model="formData.code" placeholder="请输入快递编码" />
|
<el-input v-model="formData.code" placeholder="请输入快递编码" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="快递公司名称" prop="name">
|
<el-form-item label="公司名称" prop="name">
|
||||||
<el-input v-model="formData.name" placeholder="请输入快递名称" />
|
<el-input v-model="formData.name" placeholder="请输入快递名称" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="快递公司 logo" prop="logo">
|
<el-form-item label="公司 logo" prop="logo">
|
||||||
<UploadImg v-model="formData.logo" :limit="1" :is-show-tip="false" />
|
<UploadImg v-model="formData.logo" :limit="1" :is-show-tip="false" />
|
||||||
<div style="font-size: 10px" class="pl-10px">推荐 180x180 图片分辨率</div>
|
<div style="font-size: 10px" class="pl-10px">推荐 180x180 图片分辨率</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="分类排序" prop="sort">
|
<el-form-item label="排序" prop="sort">
|
||||||
<el-input-number v-model="formData.sort" controls-position="right" :min="0" />
|
<el-input-number v-model="formData.sort" controls-position="right" :min="0" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="开启状态" prop="status">
|
<el-form-item label="开启状态" prop="status">
|
||||||
|
@ -53,11 +53,11 @@
|
|||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
<ContentWrap>
|
<ContentWrap>
|
||||||
<el-table v-loading="loading" :data="list">
|
<el-table v-loading="loading" :data="list">
|
||||||
<el-table-column label="快递公司编号" prop="code" />
|
<el-table-column label="公司编码" prop="code" />
|
||||||
<el-table-column label="快递公司名称" prop="name" />
|
<el-table-column label="公司名称" prop="name" />
|
||||||
<el-table-column label="快递公司 logo " prop="logo">
|
<el-table-column label="公司 logo " prop="logo">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<img v-if="scope.row.logo" :src="scope.row.logo" alt="快递公司logo" class="h-100px" />
|
<img v-if="scope.row.logo" :src="scope.row.logo" alt="公司logo" class="h-40px" />
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="排序" align="center" prop="sort" />
|
<el-table-column label="排序" align="center" prop="sort" />
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<Dialog :title="dialogTitle" v-model="dialogVisible" width="80%">
|
<Dialog :title="dialogTitle" v-model="dialogVisible" width="1300px">
|
||||||
<el-form
|
<el-form
|
||||||
ref="formRef"
|
ref="formRef"
|
||||||
:model="formData"
|
:model="formData"
|
||||||
@ -21,23 +21,19 @@
|
|||||||
</el-radio>
|
</el-radio>
|
||||||
</el-radio-group>
|
</el-radio-group>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="运费" prop="templateCharge">
|
<el-form-item label="运费" prop="charges">
|
||||||
<el-table border style="width: 100%" :data="formData.templateCharge">
|
<el-table border style="width: 100%" :data="formData.charges">
|
||||||
<el-table-column align="center" label="区域" width="180">
|
<el-table-column align="center" label="区域" width="360">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<!-- 区域数据太多,用赖加载方式,要不然性能有问题 -->
|
<el-cascader
|
||||||
<el-tree-select
|
|
||||||
v-model="row.areaIds"
|
v-model="row.areaIds"
|
||||||
:load="loadChargeArea"
|
:options="areaTree"
|
||||||
:props="defaultProps"
|
:props="defaultProps2"
|
||||||
node-key="id"
|
class="w-1/1"
|
||||||
multiple
|
clearable
|
||||||
check-strictly
|
placeholder="请选择商品分类"
|
||||||
show-checkbox
|
filterable
|
||||||
lazy
|
collapse-tags
|
||||||
check-on-click-node
|
|
||||||
:render-after-expand="false"
|
|
||||||
:cache-data="areaCache"
|
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
@ -85,23 +81,19 @@
|
|||||||
<Icon icon="ep:plus" class="mr-5px" /> 添加区域
|
<Icon icon="ep:plus" class="mr-5px" /> 添加区域
|
||||||
</el-button>
|
</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="包邮区域" prop="templateFree">
|
<el-form-item label="包邮区域" prop="frees">
|
||||||
<el-table border style="width: 100%" :data="formData.templateFree">
|
<el-table border style="width: 100%" :data="formData.frees">
|
||||||
<el-table-column align="center" label="区域">
|
<el-table-column align="center" label="区域" width="360">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<!-- 区域数据太多,用赖加载方式,要不然性能有问题 -->
|
<el-cascader
|
||||||
<el-tree-select
|
|
||||||
v-model="row.areaIds"
|
v-model="row.areaIds"
|
||||||
multiple
|
:options="areaTree"
|
||||||
lazy
|
:props="defaultProps2"
|
||||||
:load="loadFreeArea"
|
class="w-1/1"
|
||||||
:props="defaultProps"
|
clearable
|
||||||
node-key="id"
|
placeholder="请选择商品分类"
|
||||||
check-strictly
|
filterable
|
||||||
show-checkbox
|
collapse-tags
|
||||||
check-on-click-node
|
|
||||||
:render-after-expand="true"
|
|
||||||
:cache-data="areaCache"
|
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
@ -140,13 +132,18 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
||||||
import * as DeliveryExpressTemplateApi from '@/api/mall/trade/delivery/expressTemplate'
|
import * as DeliveryExpressTemplateApi from '@/api/mall/trade/delivery/expressTemplate'
|
||||||
|
import * as AreaApi from '@/api/system/area'
|
||||||
import { defaultProps } from '@/utils/tree'
|
import { defaultProps } from '@/utils/tree'
|
||||||
import { yuanToFen, fenToYuan } from '@/utils'
|
import { yuanToFen, fenToYuan } from '@/utils'
|
||||||
import { getChildrenArea, getAreaListByIds } from '@/api/system/area'
|
|
||||||
import { cloneDeep } from 'lodash-es'
|
import { cloneDeep } from 'lodash-es'
|
||||||
const { t } = useI18n() // 国际化
|
const { t } = useI18n() // 国际化
|
||||||
const message = useMessage() // 消息弹窗
|
const message = useMessage() // 消息弹窗
|
||||||
|
|
||||||
|
const defaultProps2 = {
|
||||||
|
...defaultProps,
|
||||||
|
multiple: true
|
||||||
|
}
|
||||||
|
|
||||||
const dialogVisible = ref(false) // 弹窗的是否展示
|
const dialogVisible = ref(false) // 弹窗的是否展示
|
||||||
const dialogTitle = ref('') // 弹窗的标题
|
const dialogTitle = ref('') // 弹窗的标题
|
||||||
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
||||||
@ -156,8 +153,8 @@ const formData = ref({
|
|||||||
name: '',
|
name: '',
|
||||||
chargeMode: 1,
|
chargeMode: 1,
|
||||||
sort: 0,
|
sort: 0,
|
||||||
templateCharge: [],
|
charges: [],
|
||||||
templateFree: []
|
frees: []
|
||||||
})
|
})
|
||||||
const columnTitleMap = new Map()
|
const columnTitleMap = new Map()
|
||||||
const columnTitle = ref({
|
const columnTitle = ref({
|
||||||
@ -171,9 +168,6 @@ const formRules = reactive({
|
|||||||
sort: [{ required: true, message: '分类排序不能为空', trigger: 'blur' }]
|
sort: [{ required: true, message: '分类排序不能为空', trigger: 'blur' }]
|
||||||
})
|
})
|
||||||
const formRef = ref() // 表单 Ref
|
const formRef = ref() // 表单 Ref
|
||||||
const areaCache = ref([]) // 由于区域节点懒加载,已选区域节点需要缓存展示
|
|
||||||
// TODO @jason:配送的时候,只允许选择省市级别,不允许选择区;如果这样的话,是不是打开弹窗,直接把城市都请求过来;
|
|
||||||
// TODO @jaosn:因为只有省市两级,感觉就不用特殊做全国逻辑;选择全国,就默认把子节点都选择上;另外,选择父节点,要把子节点选中哈;
|
|
||||||
|
|
||||||
/** 打开弹窗 */
|
/** 打开弹窗 */
|
||||||
const open = async (type: string, id?: number) => {
|
const open = async (type: string, id?: number) => {
|
||||||
@ -187,30 +181,14 @@ const open = async (type: string, id?: number) => {
|
|||||||
formLoading.value = true
|
formLoading.value = true
|
||||||
formData.value = await DeliveryExpressTemplateApi.getDeliveryExpressTemplate(id)
|
formData.value = await DeliveryExpressTemplateApi.getDeliveryExpressTemplate(id)
|
||||||
columnTitle.value = columnTitleMap.get(formData.value.chargeMode)
|
columnTitle.value = columnTitleMap.get(formData.value.chargeMode)
|
||||||
const chargeAreaIds = []
|
formData.value.charges.forEach((item) => {
|
||||||
const freeAreaIds = []
|
// 前端价格以元展示
|
||||||
formData.value.templateCharge.forEach((item) => {
|
|
||||||
for (let i = 0; i < item.areaIds.length; i++) {
|
|
||||||
if (!chargeAreaIds.includes(item.areaIds[i])) {
|
|
||||||
chargeAreaIds.push(item.areaIds[i])
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//前端价格以元展示
|
|
||||||
item.startPrice = fenToYuan(item.startPrice)
|
item.startPrice = fenToYuan(item.startPrice)
|
||||||
item.extraPrice = fenToYuan(item.extraPrice)
|
item.extraPrice = fenToYuan(item.extraPrice)
|
||||||
})
|
})
|
||||||
formData.value.templateFree.forEach((item) => {
|
formData.value.frees.forEach((item) => {
|
||||||
for (let i = 0; i < item.areaIds.length; i++) {
|
|
||||||
if (!chargeAreaIds.includes(item.areaIds[i]) && !freeAreaIds.includes(item.areaIds[i])) {
|
|
||||||
freeAreaIds.push(item.areaIds[i])
|
|
||||||
}
|
|
||||||
}
|
|
||||||
item.freePrice = fenToYuan(item.freePrice)
|
item.freePrice = fenToYuan(item.freePrice)
|
||||||
})
|
})
|
||||||
// 已选的区域节点
|
|
||||||
const areaIds = chargeAreaIds.concat(freeAreaIds)
|
|
||||||
// 区域节点,懒加载方式。已选节点需要缓存展示
|
|
||||||
areaCache.value = await getAreaListByIds(areaIds.join(','))
|
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
formLoading.value = false
|
formLoading.value = false
|
||||||
@ -228,14 +206,13 @@ const submitForm = async () => {
|
|||||||
// 提交请求
|
// 提交请求
|
||||||
formLoading.value = true
|
formLoading.value = true
|
||||||
try {
|
try {
|
||||||
const data = formData.value as DeliveryExpressTemplateApi.DeliveryExpressTemplateVO
|
const data = cloneDeep(formData.value) as DeliveryExpressTemplateApi.DeliveryExpressTemplateVO
|
||||||
// 前端价格以元展示,提交到后端。用分计算
|
// 前端价格以元展示,提交到后端。用分计算
|
||||||
// TODO @jason:不能直接这样改,要复制出来改。不然后端操作失败,数据已经被改了
|
data.charges.forEach((item) => {
|
||||||
data.templateCharge.forEach((item) => {
|
|
||||||
item.startPrice = yuanToFen(item.startPrice)
|
item.startPrice = yuanToFen(item.startPrice)
|
||||||
item.extraPrice = yuanToFen(item.extraPrice)
|
item.extraPrice = yuanToFen(item.extraPrice)
|
||||||
})
|
})
|
||||||
data.templateFree.forEach((item) => {
|
data.frees.forEach((item) => {
|
||||||
item.freePrice = yuanToFen(item.freePrice)
|
item.freePrice = yuanToFen(item.freePrice)
|
||||||
})
|
})
|
||||||
if (formType.value === 'create') {
|
if (formType.value === 'create') {
|
||||||
@ -259,7 +236,7 @@ const resetForm = () => {
|
|||||||
id: undefined,
|
id: undefined,
|
||||||
name: '',
|
name: '',
|
||||||
chargeMode: 1,
|
chargeMode: 1,
|
||||||
templateCharge: [
|
charges: [
|
||||||
{
|
{
|
||||||
areaIds: [1],
|
areaIds: [1],
|
||||||
startCount: 2,
|
startCount: 2,
|
||||||
@ -268,7 +245,7 @@ const resetForm = () => {
|
|||||||
extraPrice: 10
|
extraPrice: 10
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
templateFree: [],
|
frees: [],
|
||||||
sort: 0
|
sort: 0
|
||||||
}
|
}
|
||||||
columnTitle.value = columnTitleMap.get(1)
|
columnTitle.value = columnTitleMap.get(1)
|
||||||
@ -279,37 +256,10 @@ const resetForm = () => {
|
|||||||
const changeChargeMode = (chargeMode: number) => {
|
const changeChargeMode = (chargeMode: number) => {
|
||||||
columnTitle.value = columnTitleMap.get(chargeMode)
|
columnTitle.value = columnTitleMap.get(chargeMode)
|
||||||
}
|
}
|
||||||
const defaultArea = [{ id: 1, name: '全国', disabled: false }]
|
|
||||||
|
|
||||||
/** 初始化数据 */
|
/** 初始化数据 */
|
||||||
// TODO @jason:是不是不用写这样一个初始化方法,columnTitleMap 直接就可以了呀
|
const areaTree = ref([])
|
||||||
// const columnTitleMap = {
|
|
||||||
// '1': {
|
|
||||||
// startCountTitle: '首件',
|
|
||||||
// extraCountTitle: '续件',
|
|
||||||
// freeCountTitle: '包邮件数'
|
|
||||||
// },
|
|
||||||
// '2': {
|
|
||||||
// startCountTitle: '首件重量(kg)',
|
|
||||||
// extraCountTitle: '续件重量(kg)',
|
|
||||||
// freeCountTitle: '包邮重量(kg)'
|
|
||||||
// },
|
|
||||||
// '3': {
|
|
||||||
// startCountTitle: '首件体积(m³)',
|
|
||||||
// extraCountTitle: '续件体积(m³)',
|
|
||||||
// freeCountTitle: '包邮体积(m³)'
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
const initData = async () => {
|
const initData = async () => {
|
||||||
// TODO 从服务端全量加载数据, 后面看懒加载是不是可以从前端获取数据。 目前从后端获取数据
|
|
||||||
// formLoading.value = true
|
|
||||||
// try {
|
|
||||||
// const data = await getAreaTree()
|
|
||||||
// areaTree = data
|
|
||||||
// console.log('areaTree', areaTree)
|
|
||||||
// } finally {
|
|
||||||
// formLoading.value = false
|
|
||||||
// }
|
|
||||||
// 表头标题和计费方式的映射
|
// 表头标题和计费方式的映射
|
||||||
columnTitleMap.set(1, {
|
columnTitleMap.set(1, {
|
||||||
startCountTitle: '首件',
|
startCountTitle: '首件',
|
||||||
@ -326,77 +276,14 @@ const initData = async () => {
|
|||||||
extraCountTitle: '续件体积(m³)',
|
extraCountTitle: '续件体积(m³)',
|
||||||
freeCountTitle: '包邮体积(m³)'
|
freeCountTitle: '包邮体积(m³)'
|
||||||
})
|
})
|
||||||
|
// 加载区域数据
|
||||||
|
areaTree.value = await AreaApi.getAreaTree()
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 懒加载运费区域树 */
|
|
||||||
const loadChargeArea = async (node, resolve) => {
|
|
||||||
//已选区域需要禁止再次选择
|
|
||||||
const areaIds = []
|
|
||||||
formData.value.templateCharge.forEach((item) => {
|
|
||||||
if (item.areaIds.length > 0) {
|
|
||||||
item.areaIds.forEach((areaId) => areaIds.push(areaId))
|
|
||||||
}
|
|
||||||
})
|
|
||||||
if (node.isLeaf) return resolve([])
|
|
||||||
const length = node.data.length
|
|
||||||
if (length === 0) {
|
|
||||||
const data = cloneDeep(defaultArea)
|
|
||||||
const item = data[0]
|
|
||||||
if (areaIds.includes(item.id)) {
|
|
||||||
// TODO 禁止选中的区域有些问题, 导致修改时候不能重新选择 不知道如何处理。 暂时注释掉 @芋艿 有空瞅瞅
|
|
||||||
// TODO @jason:先不做这个功能哈。
|
|
||||||
//item.disabled = true
|
|
||||||
}
|
|
||||||
resolve(data)
|
|
||||||
} else {
|
|
||||||
const id = node.data.id
|
|
||||||
const data = await getChildrenArea(id)
|
|
||||||
data.forEach((item) => {
|
|
||||||
if (areaIds.includes(item.id)) {
|
|
||||||
//item.disabled = true
|
|
||||||
}
|
|
||||||
})
|
|
||||||
resolve(data)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/** 懒加载包邮区域树 */
|
|
||||||
const loadFreeArea = async (node, resolve) => {
|
|
||||||
if (node.isLeaf) return resolve([])
|
|
||||||
//已选区域需要禁止再次选择
|
|
||||||
const areaIds = []
|
|
||||||
formData.value.templateFree.forEach((item) => {
|
|
||||||
if (item.areaIds.length > 0) {
|
|
||||||
item.areaIds.forEach((areaId) => areaIds.push(areaId))
|
|
||||||
}
|
|
||||||
})
|
|
||||||
const length = node.data.length
|
|
||||||
if (length === 0) {
|
|
||||||
// 为空,从全国开始选择。全国 id == 1
|
|
||||||
const data = cloneDeep(defaultArea)
|
|
||||||
const item = data[0]
|
|
||||||
if (areaIds.includes(item.id)) {
|
|
||||||
//item.disabled = true
|
|
||||||
}
|
|
||||||
resolve(data)
|
|
||||||
} else {
|
|
||||||
const id = node.data.id
|
|
||||||
const data = await getChildrenArea(id)
|
|
||||||
// 已选区域需要禁止再次选择
|
|
||||||
data.forEach((item) => {
|
|
||||||
if (areaIds.includes(item.id)) {
|
|
||||||
// TODO 禁止选中的区域有些问题, 导致修改时候不能重新选择 不知道如何处理。 暂时注释掉 @芋艿 有空瞅瞅
|
|
||||||
// TODO @jason:先不做这个功能哈。
|
|
||||||
//item.disabled = true
|
|
||||||
}
|
|
||||||
})
|
|
||||||
resolve(data)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/** 添加计费区域 */
|
/** 添加计费区域 */
|
||||||
const addChargeArea = () => {
|
const addChargeArea = () => {
|
||||||
const data = formData.value
|
const data = formData.value
|
||||||
data.templateCharge.push({
|
data.charges.push({
|
||||||
areaIds: [],
|
areaIds: [],
|
||||||
startCount: 1,
|
startCount: 1,
|
||||||
startPrice: 1,
|
startPrice: 1,
|
||||||
@ -408,13 +295,13 @@ const addChargeArea = () => {
|
|||||||
/** 删除计费区域 */
|
/** 删除计费区域 */
|
||||||
const deleteChargeArea = (index) => {
|
const deleteChargeArea = (index) => {
|
||||||
const data = formData.value
|
const data = formData.value
|
||||||
data.templateCharge.splice(index, 1)
|
data.charges.splice(index, 1)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 添加包邮区域 */
|
/** 添加包邮区域 */
|
||||||
const addFreeArea = () => {
|
const addFreeArea = () => {
|
||||||
const data = formData.value
|
const data = formData.value
|
||||||
data.templateFree.push({
|
data.frees.push({
|
||||||
areaIds: [],
|
areaIds: [],
|
||||||
freeCount: 1,
|
freeCount: 1,
|
||||||
freePrice: 1
|
freePrice: 1
|
||||||
@ -424,7 +311,7 @@ const addFreeArea = () => {
|
|||||||
/** 删除包邮区域 */
|
/** 删除包邮区域 */
|
||||||
const deleteFreeArea = (index) => {
|
const deleteFreeArea = (index) => {
|
||||||
const data = formData.value
|
const data = formData.value
|
||||||
data.templateFree.splice(index, 1)
|
data.frees.splice(index, 1)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 初始化 **/
|
/** 初始化 **/
|
||||||
|
@ -51,14 +51,14 @@
|
|||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
<ContentWrap>
|
<ContentWrap>
|
||||||
<el-table v-loading="loading" :data="list">
|
<el-table v-loading="loading" :data="list">
|
||||||
<el-table-column label="编号" prop="id" />
|
<el-table-column label="编号" min-width="60" prop="id" />
|
||||||
<el-table-column label="模板名称" prop="name" />
|
<el-table-column label="模板名称" min-width="100" prop="name" />
|
||||||
<el-table-column label="计费方式" prop="chargeMode" align="center">
|
<el-table-column label="计费方式" prop="chargeMode" min-width="100" align="center">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<dict-tag :type="DICT_TYPE.EXPRESS_CHARGE_MODE" :value="scope.row.chargeMode" />
|
<dict-tag :type="DICT_TYPE.EXPRESS_CHARGE_MODE" :value="scope.row.chargeMode" />
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="排序" prop="sort" />
|
<el-table-column label="排序" min-width="100" prop="sort" />
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="创建时间"
|
label="创建时间"
|
||||||
align="center"
|
align="center"
|
||||||
|
@ -51,7 +51,7 @@
|
|||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="门店所在地区" prop="areaId">
|
<el-form-item label="门店所在地区" prop="areaId">
|
||||||
<el-cascader v-model="formData.areaId" :options="areaList" :props="areaTreeProps" />
|
<el-cascader v-model="formData.areaId" :options="areaList" :props="defaultProps" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
@ -99,7 +99,7 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-form-item label="获取经纬度">
|
<el-form-item label="获取经纬度">
|
||||||
<el-button type="primary" @click="mapDialogVisible.value = true">获取</el-button>
|
<el-button type="primary" @click="mapDialogVisible = true">获取</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<template #footer>
|
<template #footer>
|
||||||
@ -121,8 +121,9 @@
|
|||||||
import * as DeliveryPickUpStoreApi from '@/api/mall/trade/delivery/pickUpStore'
|
import * as DeliveryPickUpStoreApi from '@/api/mall/trade/delivery/pickUpStore'
|
||||||
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
||||||
import { CommonStatusEnum } from '@/utils/constants'
|
import { CommonStatusEnum } from '@/utils/constants'
|
||||||
|
import { defaultProps } from '@/utils/tree'
|
||||||
import { getAreaTree } from '@/api/system/area'
|
import { getAreaTree } from '@/api/system/area'
|
||||||
import * as ConfigApi from '@/api/infra/config'
|
import * as ConfigApi from '@/api/mall/trade/config'
|
||||||
const { t } = useI18n() // 国际化
|
const { t } = useI18n() // 国际化
|
||||||
const message = useMessage() // 消息弹窗
|
const message = useMessage() // 消息弹窗
|
||||||
|
|
||||||
@ -161,12 +162,6 @@ const formRules = reactive({
|
|||||||
status: [{ required: true, message: '开启状态不能为空', trigger: 'blur' }]
|
status: [{ required: true, message: '开启状态不能为空', trigger: 'blur' }]
|
||||||
})
|
})
|
||||||
const formRef = ref() // 表单 Ref
|
const formRef = ref() // 表单 Ref
|
||||||
const areaTreeProps = {
|
|
||||||
children: 'children',
|
|
||||||
label: 'name',
|
|
||||||
value: 'id',
|
|
||||||
emitPath: false
|
|
||||||
}
|
|
||||||
const areaList = ref() // 区域树
|
const areaList = ref() // 区域树
|
||||||
const tencentLbsUrl = ref('') // 腾讯位置服务 url
|
const tencentLbsUrl = ref('') // 腾讯位置服务 url
|
||||||
|
|
||||||
@ -244,16 +239,8 @@ const selectAddress = function (loc: any): void {
|
|||||||
mapDialogVisible.value = false
|
mapDialogVisible.value = false
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 初始化数据 */
|
/** 初始化腾讯地图 */
|
||||||
const initData = async () => {
|
const initTencentLbsMap = async () => {
|
||||||
formLoading.value = true
|
|
||||||
try {
|
|
||||||
const data = await getAreaTree()
|
|
||||||
areaList.value = data
|
|
||||||
} finally {
|
|
||||||
formLoading.value = false
|
|
||||||
}
|
|
||||||
// TODO @jason:要不创建一个 initTencentLbsMap
|
|
||||||
window.selectAddress = selectAddress
|
window.selectAddress = selectAddress
|
||||||
window.addEventListener(
|
window.addEventListener(
|
||||||
'message',
|
'message',
|
||||||
@ -267,17 +254,16 @@ const initData = async () => {
|
|||||||
},
|
},
|
||||||
false
|
false
|
||||||
)
|
)
|
||||||
const data = await ConfigApi.getConfigKey('tencent.lbs.key')
|
const data = await ConfigApi.getTradeConfig()
|
||||||
let key = ''
|
const key = data.tencentLbsKey
|
||||||
if (data && data.length > 0) {
|
|
||||||
key = data
|
|
||||||
}
|
|
||||||
tencentLbsUrl.value = `https://apis.map.qq.com/tools/locpicker?type=1&key=${key}&referer=myapp`
|
tencentLbsUrl.value = `https://apis.map.qq.com/tools/locpicker?type=1&key=${key}&referer=myapp`
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 初始化 **/
|
/** 初始化 **/
|
||||||
onMounted(() => {
|
onMounted(async () => {
|
||||||
initData()
|
areaList.value = await getAreaTree()
|
||||||
|
// 加载地图
|
||||||
|
await initTencentLbsMap()
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
|
@ -65,16 +65,21 @@
|
|||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
<ContentWrap>
|
<ContentWrap>
|
||||||
<el-table v-loading="loading" :data="list">
|
<el-table v-loading="loading" :data="list">
|
||||||
<el-table-column label="编号" prop="id" />
|
<el-table-column label="编号" min-width="80" prop="id" />
|
||||||
<el-table-column label="门店 logo" prop="logo">
|
<el-table-column label="门店 logo" min-width="100" prop="logo">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<img v-if="scope.row.logo" :src="scope.row.logo" alt="门店 logo" class="h-100px" />
|
<img v-if="scope.row.logo" :src="scope.row.logo" alt="门店 logo" class="h-50px" />
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="门店名称" prop="name" />
|
<el-table-column label="门店名称" min-width="150" prop="name" />
|
||||||
<el-table-column label="门店手机" prop="phone" />
|
<el-table-column label="门店手机" min-width="100" prop="phone" />
|
||||||
<el-table-column align="center" label="门店详细地址" prop="detailAddress" />
|
<el-table-column label="地址" min-width="100" prop="detailAddress" />
|
||||||
<el-table-column align="center" label="开启状态" prop="status">
|
<el-table-column label="营业时间" min-width="180">
|
||||||
|
<template #default="scope">
|
||||||
|
{{ scope.row.openingTime }} ~ {{ scope.row.closingTime }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column align="center" label="开启状态" min-width="100" prop="status">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status" />
|
<dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status" />
|
||||||
</template>
|
</template>
|
||||||
|
Loading…
Reference in New Issue
Block a user