From c98f292438de03787f87b62d0463cf21a17b5b7e Mon Sep 17 00:00:00 2001
From: wtq <2394975549@qq.com>
Date: Wed, 27 May 2026 09:29:51 +0800
Subject: [PATCH] '!'
---
src/manifest.json | 4 +-
src/pages/merchant/options/options.vue | 18 ++++----
.../childPages/component/orderListTop.vue | 41 +++++++++++++++++++
3 files changed, 52 insertions(+), 11 deletions(-)
diff --git a/src/manifest.json b/src/manifest.json
index 6620b90..3b4fb93 100644
--- a/src/manifest.json
+++ b/src/manifest.json
@@ -2,8 +2,8 @@
"name" : "京西到家商家版",
"appid" : "__UNI__F9A47D3",
"description" : "1、商户通过京西平台同时管理美团、淘宝闪购、京东等多个外卖平台实现一键上架、下架、修改、删除多个平台商品;2、商户通过京西平台可以同时对、美团专送、达达、顺丰同城等多个专送平台召唤偶骑手",
- "versionName" : "1.9.3",
- "versionCode" : 193,
+ "versionName" : "1.9.5",
+ "versionCode" : 195,
"transformPx" : false,
"uni-app" : {
"debug" : true
diff --git a/src/pages/merchant/options/options.vue b/src/pages/merchant/options/options.vue
index 88b63c2..e99bd47 100644
--- a/src/pages/merchant/options/options.vue
+++ b/src/pages/merchant/options/options.vue
@@ -92,12 +92,12 @@ const grindListData = ref([
title: '营业资质',
isIos: false,
},
- {
- id: 3,
- icon: '/static/merchant-icon/3.png',
- title: '我的店铺',
- isIos: false,
- },
+ // {
+ // id: 3,
+ // icon: '/static/merchant-icon/3.png',
+ // title: '我的店铺',
+ // isIos: false,
+ // },
{
id: 4,
icon: '/static/merchant-icon/4.png',
@@ -233,9 +233,9 @@ function grindData(title: number) {
url: '/subPages/merchantChild/businessLicense/businessLicense',
}) // 营业资质
break
- case 3:
- uni.navigateTo({ url: '/subPages/merchantChild/platformM/platformM' }) // 我的店铺
- break
+ // case 3:
+ // uni.navigateTo({ url: '/subPages/merchantChild/platformM/platformM' }) // 我的店铺
+ // break
case 4:
uni.navigateTo({
url: `/subPages/merchantChild/bill/bill?billList=${JSON.stringify(
diff --git a/src/pages/order-manager/childPages/component/orderListTop.vue b/src/pages/order-manager/childPages/component/orderListTop.vue
index a3d7d8a..2f3deb5 100644
--- a/src/pages/order-manager/childPages/component/orderListTop.vue
+++ b/src/pages/order-manager/childPages/component/orderListTop.vue
@@ -11,6 +11,7 @@
预计{{ expectedDeliveredTime }}前送达
+ 急
@@ -178,6 +179,19 @@ const isCancelTime = computed(() => {
)
})
+
+/**
+ * 是否显示急送 美团 饿百
+ */
+const isShowRushOrder = computed(() => {
+ return (props.item.vendorID === 1 || props.item.vendorID === 3)
+ && props.item.status <=20 ?
+ (props.item.couponIDs && props.item.couponIDs.includes('11002') || props.item.couponIDs.includes('11003') )
+ : false
+})
+
+
+
/**
* 是否显示预计送达时间
*/
@@ -387,6 +401,24 @@ const isShow = computed(() => {
}
}
+ .rushOrder{
+ height: 30px;
+ padding: 0 5px;
+ line-height: 30px;
+ background-color: rgba(245, 108, 108, .1);
+ border-color: rgba(245, 108, 108, .2);
+ color: #f56c6c;
+ font-size: 20px;
+ border-radius: 50%;
+ box-sizing: border-box;
+ // border: 1px solid rgba(64, 158, 255, .2);
+ border: 1px solid rgba(245, 108, 108, .2);
+ white-space: nowrap;
+ position: fixed;
+ left: 50%;
+ animation: blink 1.8s infinite; /* 1秒循环,无限播放 */
+ }
+
.index-color {
color: rgb(0, 0, 0);
}
@@ -430,6 +462,15 @@ const isShow = computed(() => {
font-weight: bold;
}
}
+
+/* 定义动画 */
+@keyframes blink {
+ 0% { opacity: 1; }
+ 50% { opacity: 0; }
+ 100% { opacity: 1; }
+}
+
+
// 顶部标题
.order-title {
display: flex;