|
@@ -1,8 +1,4 @@
|
|
|
<template>
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
<ContentWrap class="order-div">
|
|
|
<!-- 搜索 -->
|
|
|
<div style="position: relative;">
|
|
@@ -121,7 +117,7 @@
|
|
|
<el-dropdown-item v-if="
|
|
|
row.deliveryType === DeliveryTypeEnum.EXPRESS.type &&
|
|
|
row.status === TradeOrderStatusEnum.UNDELIVERED.status
|
|
|
- " command="delivery">
|
|
|
+ "command="delivery">
|
|
|
<Icon icon="ep:takeaway-box" />
|
|
|
发货
|
|
|
</el-dropdown-item>
|
|
@@ -137,28 +133,44 @@
|
|
|
</OrderTableColumn>
|
|
|
</el-table> -->
|
|
|
<el-row>
|
|
|
- <el-col v-for="(o, index) in list" class="product-card" :key="index" :span="7" @mouseover="handleMouseOver(index)" @mouseout="handleMouseOut(index)">
|
|
|
- <el-card @click="openDetail('view',o.id,o.no)">
|
|
|
+
|
|
|
+ <el-col v-for="(o, index) in list" class="product-card" :key="index" :span="7" :xl="7" :lg="7" :md="24" :sm="24" :xs="24" @mouseover="handleMouseOver(index)" @mouseout="handleMouseOut(index)">
|
|
|
+ <el-card @click="openDetail('view',o,o.no)">
|
|
|
<div style="display: flex;justify-content: space-between;align-items: center;margin-bottom: 5px;">
|
|
|
- <p style="width: 100%;white-space: nowrap;text-overflow: ellipsis;overflow: hidden;font-size: 16px;color:#000"
|
|
|
- title="">{{o.no}}
|
|
|
+ <p style="width: 95%;white-space: nowrap;text-overflow: ellipsis;overflow: hidden;font-size: 16px;color:#000"
|
|
|
+ title=""><span v-for="item in o.items" :key="item.id">{{item.spuName}}</span>
|
|
|
</p>
|
|
|
- <div
|
|
|
- class="setting" v-show="o.showSetting" >
|
|
|
- <el-icon size="20" color="rgb(220 223 231)">
|
|
|
- <Setting />
|
|
|
- </el-icon>
|
|
|
+ <div class="setting" @click.stop="">
|
|
|
+ <el-dropdown v-hasPermi="['trade:order:update']" @command="(command) => handleCommand(command, row)">
|
|
|
+ <span>
|
|
|
+ <el-icon size="20" color="rgb(220 223 231)">
|
|
|
+ <Operation />
|
|
|
+ </el-icon>
|
|
|
+ <!-- <el-icon class="el-icon--right">
|
|
|
+ <arrow-down />
|
|
|
+ </el-icon> -->
|
|
|
+ </span>
|
|
|
+ <template #dropdown >
|
|
|
+ <el-dropdown-menu >
|
|
|
+ <el-dropdown-item @click="handleDelivery(o.id)" v-if="o.deliveryType === DeliveryTypeEnum.EXPRESS.type && o.status === TradeOrderStatusEnum.UNDELIVERED.status">发货</el-dropdown-item>
|
|
|
+ <el-dropdown-item @click="handleRemark(o.id,o.remark)">备注</el-dropdown-item>
|
|
|
+ <el-dropdown-item @click="handleInvoice" v-if="o.status === TradeOrderStatusEnum.COMPLETED.status">开发票</el-dropdown-item>
|
|
|
+ <el-dropdown-item v-if="o.deliveryType === DeliveryTypeEnum.EXPRESS.type && o.status === TradeOrderStatusEnum.UNDELIVERED.status" @click="updateAddress(o.id,o.receiverAreaName,o.receiverMobile,o.receiverAreaId,o.receiverDetailAddress)">修改地址</el-dropdown-item>
|
|
|
+ </el-dropdown-menu>
|
|
|
+ </template>
|
|
|
+ </el-dropdown>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div style="display:flex;align-items: center;">
|
|
|
<div style="width: 178px;height: 100px;margin-right:10px;border:1px solid rgb(220 223 231);border-radius: 5px;display: flex;align-items: center;justify-content: center;"
|
|
|
>
|
|
|
- <img src="" style="width: auto;height: auto;max-width: 100%;max-height: 100%;" />
|
|
|
+ <img :src="o.items[0].picUrl" style="width: auto;height: auto;max-width: 100%;max-height: 100%;" />
|
|
|
</div>
|
|
|
|
|
|
<div style='line-height: 25px;'>
|
|
|
<p>¥{{ o.payPrice }}</p>
|
|
|
- <p> {{ getDictObj(DICT_TYPE.TRADE_ORDER_STATUS, o.status)?.label }}</p>
|
|
|
+ <p>{{ o.no }}</p>
|
|
|
+ <p>{{ getDictObj(DICT_TYPE.TRADE_ORDER_STATUS, o.status)?.label }}</p>
|
|
|
<p>{{o.user.nickname}}</p>
|
|
|
<p>{{formatDate(o.createTime)}}</p>
|
|
|
|
|
@@ -168,7 +180,7 @@
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<div v-if="list.length == 0">
|
|
|
- <p style="text-align: center;margin-top: 100px;">暂无商品</p>
|
|
|
+ <p style="text-align: center;margin-top: 100px;">暂无订单</p>
|
|
|
</div>
|
|
|
<!-- 分页 -->
|
|
|
<Pagination v-model:limit="queryParams.pageSize" v-model:page="queryParams.pageNo" :total="total"
|
|
@@ -178,6 +190,7 @@
|
|
|
<!-- 各种操作的弹窗 -->
|
|
|
<OrderDeliveryForm ref="deliveryFormRef" @success="getList" />
|
|
|
<OrderUpdateRemarkForm ref="updateRemarkForm" @success="getList" />
|
|
|
+ <OrderUpdateAddressForm ref="updateAddressFormRef" @success="getDetail" />
|
|
|
<OrderIndex ref="formRef" @success="getList" />
|
|
|
|
|
|
</template>
|
|
@@ -192,11 +205,10 @@
|
|
|
import * as DeliveryExpressApi from '@/api/mall/trade/delivery/express'
|
|
|
import { DeliveryTypeEnum, TradeOrderStatusEnum } from '@/utils/constants'
|
|
|
import { Setting, Search, Operation } from '@element-plus/icons-vue'
|
|
|
-
|
|
|
import { OrderTableColumn } from './components'
|
|
|
import { formatDate } from '@/utils/formatTime'
|
|
|
-
|
|
|
import OrderIndex from "./components/OrderIndex.vue"
|
|
|
+ import OrderUpdateAddressForm from '@/views/mall/trade/order/form/OrderUpdateAddressForm.vue'
|
|
|
|
|
|
const searchMoreShow = ref(false)
|
|
|
// 鼠标移入显示变动图标
|
|
@@ -215,10 +227,10 @@
|
|
|
searchMoreShow.value = false
|
|
|
}
|
|
|
const formRef = ref()
|
|
|
- const openDetail = (type:string,id : number,no:string) => {
|
|
|
- formRef.value.open(type,id,no)
|
|
|
+ const openDetail = (type:string,row : {},no:string) => {
|
|
|
+ formRef.value.open(type,row,no)
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
defineOptions({ name: 'TradeOrder' })
|
|
|
const { currentRoute, push } = useRouter() // 路由跳转
|
|
|
const loading = ref(true) // 列表的加载中
|
|
@@ -313,16 +325,17 @@
|
|
|
/** 操作分发 */
|
|
|
const deliveryFormRef = ref()
|
|
|
const updateRemarkForm = ref()
|
|
|
- const handleCommand = (command : string, row : TradeOrderApi.OrderVO) => {
|
|
|
- switch (command) {
|
|
|
- case 'remark':
|
|
|
- updateRemarkForm.value?.open(row)
|
|
|
- break
|
|
|
- case 'delivery':
|
|
|
- deliveryFormRef.value?.open(row)
|
|
|
- break
|
|
|
- }
|
|
|
+ const updateAddressFormRef = ref() // 收货地址表单 Ref
|
|
|
+ const updateAddress = (id,receiverName,receiverMobile,receiverAreaId,receiverDetailAddress) => {
|
|
|
+ updateAddressFormRef.value.open(id,receiverName,receiverMobile,receiverAreaId,receiverDetailAddress)
|
|
|
+ }
|
|
|
+ const handleDelivery = (id) =>{
|
|
|
+ deliveryFormRef.value?.open("订单列表",id)
|
|
|
}
|
|
|
+ const handleRemark = (id,remark) => {
|
|
|
+ updateRemarkForm.value?.open(id,remark)
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
// 监听路由变化更新列表,解决订单保存/更新后,列表不刷新的问题。
|
|
|
watch(
|
|
@@ -339,7 +352,9 @@
|
|
|
await getList()
|
|
|
pickUpStoreList.value = await PickUpStoreApi.getListAllSimple()
|
|
|
deliveryExpressList.value = await DeliveryExpressApi.getSimpleDeliveryExpressList()
|
|
|
+
|
|
|
})
|
|
|
+
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
.order-div {
|
|
@@ -405,7 +420,12 @@
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
|
}
|
|
|
-
|
|
|
+ .setting :focus-visible {
|
|
|
+ outline: 0;
|
|
|
+ }
|
|
|
+ .setting:focus-visible {
|
|
|
+ font-size: 20px;
|
|
|
+ }
|
|
|
.setting:hover {
|
|
|
background: #666
|
|
|
}
|