吃个甘蔗嚼一年 3 年之前
父節點
當前提交
69975426cf

+ 3
- 4
src/components/CouponCard/Action/style.less 查看文件

@@ -1,4 +1,3 @@
1
-
2 1
 .cpn-action {
3 2
   height: 100%;
4 3
   display: flex;
@@ -13,12 +12,12 @@
13 12
 .cpn-icon-action {
14 13
   & > view {
15 14
     & > image {
16
-      width: 36px;
17
-      height: 36px;
15
+      width: 46px;
16
+      height: 46px;
18 17
       display: block;
19 18
       margin: 0 auto;
20 19
     }
21
-  
20
+
22 21
     & > text {
23 22
       margin-top: 20px;
24 23
       display: inline-block;

+ 1
- 4
src/hotel/components/shareCard/shareCard.jsx 查看文件

@@ -1,9 +1,6 @@
1 1
 import React from 'react'
2 2
 import Popup from '@/components/Popup'
3
-import Taro from '@tarojs/taro'
4
-import { Input, Button, View, Picker, Label } from '@tarojs/components'
5
-import { shareRoom } from '@/services/landlord'
6
-import { useState } from 'react'
3
+import { Button, View } from '@tarojs/components'
7 4
 import './shareCard.less'
8 5
 
9 6
 

+ 4
- 2
src/shop/pages/spread/spreadIndex.jsx 查看文件

@@ -1,6 +1,8 @@
1 1
 import React, { useState, useEffect, useRef } from 'react'
2 2
 import CustomNav from '@/components/CustomNav'
3 3
 import { useRouter } from '@tarojs/taro'
4
+import baozan from '@/assets/icons/housemantj/bgood.png'
5
+
4 6
 import { getShopList, getShopMoney, getAccount, getVerifiedOrder, setGetVerifiedOrder } from '@/services/shopBoss'
5 7
 import { withSubscribeMessage } from '@/utils/subscribeMessage'
6 8
 import withLayout from '@/layouts'
@@ -34,7 +36,7 @@ export default withLayout((props) => {
34 36
 
35 37
   const handleTabChange = (e) => {
36 38
     const { index } = e.detail
37
-    index?setAmountType('commission'):setAmountType('order')
39
+    index ? setAmountType('commission') : setAmountType('order')
38 40
     setCurrentTab(index)
39 41
     //如果context有的话代表他滚动了   那么切换tab页就置顶
40 42
     if (listRef.current?.context) {
@@ -102,7 +104,7 @@ export default withLayout((props) => {
102 104
   return (
103 105
     <view className='page-index'>
104 106
       <view className='index-navbar'>
105
-        <CustomNav title={shop?.shopName} />
107
+        <CustomNav logo='none' title={shop?.shopName} />
106 108
       </view>
107 109
       <view className='index-container'>
108 110
         {currentTab === 0 && <ShopKeeper isVerified={isVerified} shopId={shopId} amountType={amountType} setVer={setVer} onVarifiedTwo={onVarifiedTwo} onVarified={onVarified} verifiedOrder={verifiedOrder} shopList={shopList} shop={shop} onHotelChange={handleHotelChange} shopMoney={shopMoney} />