From e998d551df1c96572838bbf661be938aa79d1be8 Mon Sep 17 00:00:00 2001
From: xuxueyang <xuxy@fengyuntec.com>
Date: 星期四, 25 七月 2024 15:01:16 +0800
Subject: [PATCH] fix bug

---
 pages/user/supplier-user.vue |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/pages/user/supplier-user.vue b/pages/user/supplier-user.vue
index 24e8762..855d5bb 100644
--- a/pages/user/supplier-user.vue
+++ b/pages/user/supplier-user.vue
@@ -64,29 +64,29 @@
       <view class="user-util m-t-12">
         <view class="title flex">
           <view class="flex1">我的订单</view>
-          <view class="m-r-a m-r-0 more">全部订单
+          <view class="m-r-a m-r-0 more" @click="goto('/pages/order/order',true)">全部订单
             <uni-icons class="" type="right"
                        size="12"></uni-icons>
           </view>
         </view>
         <view class="flex order-icons-container">
-          <view class="order-icons">
+          <view class="order-icons" @click="goto('/pages/order/order?status=PENDING',true)">
             <image src="../../static/images/customer/order/order-type-1.png" class="order-icon dfk"></image>
             <view>待付款</view>
           </view>
-          <view class="order-icons">
+          <view class="order-icons" @click="goto('/pages/order/order?status=SEND',true)">
             <image src="../../static/images/customer/order/order-type-2.png" class="order-icon dfh"></image>
             <view>待发货</view>
           </view>
-          <view class="order-icons">
+          <view class="order-icons" @click="goto('/pages/order/order?status=RECEIVE',true)">
             <image src="../../static/images/customer/order/order-type-3.png" class="order-icon dsh"></image>
             <view>待收货</view>
           </view>
-          <view class="order-icons">
+          <view class="order-icons" @click="goto('/pages/order/order?status=EVALUATE',true)">
             <image src="../../static/images/customer/order/order-type-4.png" class="order-icon dpj"></image>
             <view>待评价</view>
           </view>
-          <view class="order-icons">
+          <view class="order-icons" @click="goto('/pages/order/order?status=COMPLETED',true)">
             <image src="../../static/images/customer/order/order-type-5.png" class="order-icon sh"></image>
             <view>售后</view>
           </view>
@@ -164,15 +164,15 @@
           <uni-icons type="right"></uni-icons>
         </view>
       </view>
-      <view class="user-util m-t-12 " @click="callTel"
+      <view class="user-util m-t-12 "
             v-if="selftype==='supplier'||selftype==='customer' || !selftype">
         <view class="title">我的客服</view>
         <view class="flex">
           <image class="icon-clock m-r-6 m-t-2" src="../../static/common/icon-call.png"></image>
-          <view class="name">
+          <view class="name" @click="callTel">
             客服电话 : &nbsp;&nbsp; <span class="topic-gray">{{ tel }}</span>
           </view>
-          <view class="right-icon"  @click="goto('/pages/help/help',false)">
+          <view class="right-icon"  open-type="contact">
             <uni-icons type="right"></uni-icons>
           </view>
         </view>

--
Gitblit v1.9.3