浏览代码

修改样式

潘超林 7 月之前
父节点
当前提交
36e2385bee

+ 28 - 4
TUIKit/components/TUIChat/message-list/message-elements/message-custom.vue

@@ -37,9 +37,15 @@
               <div class="label">
                 {{ isCustom.spuName }}
               </div>
-              <div style="font-weight: 400; font-size: 28rpx">
+
+              <div style="font-weight: 400; font-size: 28rpx" v-if="userType == 0">
                 {{ isCustom.price }}元/{{ isCustom.unit }}
               </div>
+              <div style="font-weight: 400; font-size: 28rpx" v-else>
+                {{
+                  isCustom.goodsAmount + isCustom.serviceFee + isCustom.freightFee
+                }}元/{{ isCustom.unit }}
+              </div>
             </div>
           </div>
           <div style="line-height: 32px; margin-top: 10px">
@@ -73,9 +79,14 @@
               <div class="label">
                 {{ isCustom.spuName }}
               </div>
-              <div style="font-weight: 400; font-size: 28rpx">
+              <div style="font-weight: 400; font-size: 28rpx" v-if="userType == 0">
                 {{ isCustom.price }}元/{{ isCustom.unit }}
               </div>
+              <div style="font-weight: 400; font-size: 28rpx" v-else>
+                {{
+                  isCustom.goodsAmount + isCustom.serviceFee + isCustom.freightFee
+                }}元/{{ isCustom.unit }}
+              </div>
             </div>
           </div>
           <div style="line-height: 32px; margin-top: 10px">
@@ -108,9 +119,14 @@
               <div class="label">
                 {{ isCustom.spuName }}
               </div>
-              <div style="font-weight: 400; font-size: 28rpx">
+              <div style="font-weight: 400; font-size: 28rpx" v-if="userType == 0">
                 {{ isCustom.price }}元/{{ isCustom.unit }}
               </div>
+              <div style="font-weight: 400; font-size: 28rpx" v-else>
+                {{
+                  isCustom.goodsAmount + isCustom.serviceFee + isCustom.freightFee
+                }}元/{{ isCustom.unit }}
+              </div>
             </div>
           </div>
           <div style="line-height: 32px; margin-top: 10px">
@@ -145,9 +161,14 @@
               <div class="label">
                 {{ isCustom.spuName }}
               </div>
-              <div style="font-weight: 400; font-size: 28rpx">
+              <div style="font-weight: 400; font-size: 28rpx" v-if="userType == 0">
                 {{ isCustom.price }}元/{{ isCustom.unit }}
               </div>
+              <div style="font-weight: 400; font-size: 28rpx" v-else>
+                {{
+                  isCustom.goodsAmount + isCustom.serviceFee + isCustom.freightFee
+                }}元/{{ isCustom.unit }}
+              </div>
             </div>
           </div>
         </div>
@@ -216,9 +237,11 @@ const openLink = (url: any) => {
 //     });
 //   }
 // };
+const userType = ref();
 const productOrder = async (record) => {
   let userid = uni.getStorageSync("userId");
   if (userid == record.shopOwnerId) {
+    userType.value = 1;
     let res = await mesApi.default.orderDetail(record.orderId);
     if (res.code == 200) {
       let item = res.data;
@@ -228,6 +251,7 @@ const productOrder = async (record) => {
     }
     console.log(res);
   } else {
+    userType.value = 0;
     webUni.webView.navigateTo({
       url: `/subpages/my/product-orders/buy-order-details?id=` + record.orderId,
     });

+ 1 - 1
TUIKit/components/TUIContact/index.vue

@@ -2,7 +2,7 @@
   <SelectFriend v-if="isShowSelectFriend" />
   <div v-else-if="isShowContactList" :class="['tui-contact', !isPC && 'tui-contact-h5']">
     <div :class="['tui-contact-left', !isPC && 'tui-contact-h5-left']">
-      <ContactSearch />
+      <!-- <ContactSearch /> -->
       <ContactList
         :class="['tui-contact-left-list', !isPC && 'tui-contact-h5-left-list']"
       />

+ 3 - 3
app.config.js

@@ -10,18 +10,18 @@ export const requestConfig = {
 	/**
 	 * 开发环境请求的根路径
 	 */
-	devBaseUrl: 'http://192.168.0.16:9001/api',
+	devBaseUrl: 'https://admin-test.sxdirectpurchase.com/api',
 	// devBaseUrl: 'https://admin-test.sxdirectpurchase.com/api/',
 	/**
 	 * 测试环境请求的根路径
 	 */
 	// testBaseUrl: 'http://192.168.0.22:9001/api/',//中亿云
-	testBaseUrl: 'http://169.254.18.122:9001/api',//WIFI6
+	testBaseUrl: 'https://admin-test.sxdirectpurchase.com/api',//WIFI6
 
 	/**
 	 * 生产环境请求的根路径
 	 */
-	prodBaseUrl: 'https://applet.sxdirectpurchase.com/api/',
+	prodBaseUrl: 'https://admin-test.sxdirectpurchase.com/api',
 	// applet.sxdirectpurchase.com
 	staticDir: 'https://bucket.sxdirectpurchase.com/wx',
 	/**

+ 1 - 1
manifest.json

@@ -122,7 +122,7 @@
     "h5" : {
         "optimization" : {
             "treeShaking" : {
-                "enable" : false
+                "enable" : true
             }
         },
         "devServer" : {

+ 1 - 1
pages/group/add.vue

@@ -1,7 +1,7 @@
 <template>
   <div style="padding-top: 20px">
     <u--input
-      placeholder="请输入"
+      placeholder="请输入手机号"
       prefixIcon="search"
       prefixIconStyle="font-size: 22px;color: #909399"
       border="surround"