Commit c2829df0226d21a1561d851aa8aa6ffd73ac16a9

Authored by guzijian
1 parent 08664d9e

feat: 还原我的界面

garbage-removal/src/pages.json
... ... @@ -175,8 +175,8 @@
175 175 },{
176 176 "path": "pages/wode/index",
177 177 "style": {
178   - "navigationStyle":"custom",
179   - "navigationBarBackgroundColorr":"#ffffff00",
  178 + "navigationBarTitleText": "个人信息",
  179 + "navigationBarBackgroundColor":"#ffffff",
180 180 "enablePullDownRefresh": false
181 181 }
182 182 }
... ...
garbage-removal/src/pages/order/handler-home/scan-detail/index.vue
... ... @@ -63,8 +63,8 @@
63 63 车辆载重
64 64 </view>
65 65 <view class="scan-car-num-content">
66   - <up-input placeholder="单位吨 1.5 标识1.5吨" border="surround" v-model="details.garCarryingWeight"
67   - @change="handlerInputChange"></up-input>
  66 + <up-input :disabled="!isDeletable" placeholder="单位吨 1.5 标识1.5吨" border="surround"
  67 + v-model="details.garCarryingWeight" @change="handlerInputChange"></up-input>
68 68 </view>
69 69 </view>
70 70 <view class="scan-upload-fill-image-box">
... ...
garbage-removal/src/pages/order/other-home/index.vue
... ... @@ -8,7 +8,7 @@
8 8 }
9 9 ">
10 10 <view class="header-box-left-message" v-if="userType == '用户'" @click="handlerMessageClick">
11   - <u-icon name="bell-fill" size="32" color="#ffffff" @click="goBack"></u-icon>
  11 + <u-icon name="bell-fill" size="37" color="#ffffff" @click="goBack"></u-icon>
12 12 <up-badge :type="type" max="99" :value="messageCount"></up-badge>
13 13 </view>
14 14 <view class="header-box-left-message" v-else>
... ...
garbage-removal/src/pages/wode/index.vue
... ... @@ -18,7 +18,7 @@
18 18  
19 19 <view class="u-m-t-20">
20 20 <u-cell-group>
21   - <u-cell icon="map" @click="handleAddressManager" title="地址管理"></u-cell>
  21 + <u-cell icon="map" iconStyle="font-size:28rpx" @click="handleAddressManager" title="地 址 管 理"></u-cell>
22 22 </u-cell-group>
23 23 </view>
24 24  
... ... @@ -33,7 +33,8 @@
33 33  
34 34 <view class="u-m-t-40">
35 35 <u-cell-group>
36   - <u-cell class="logout-cell" icon="setting" @click="handleLoginOut" title="退出登录"></u-cell>
  36 + <u-cell class="logout-cell" icon="setting" iconStyle="font-size:28rpx" @click="handleLoginOut"
  37 + title="退 出 登 录"></u-cell>
37 38 </u-cell-group>
38 39 </view>
39 40 </view>
... ... @@ -80,17 +81,14 @@ const handleLoginOut = () =&gt; {
80 81 </script>
81 82  
82 83 <style lang="scss" scoped>
83   -page {}
84   -
85 84 .wode-container {
86 85 height: 100%;
87 86 box-sizing: border-box;
88   - background: linear-gradient(to bottom, #19a97c, #22cf98, $u-bg-color, $u-bg-color, $u-bg-color, $u-bg-color, $u-bg-color);
89   - padding-top: 100rpx;
90 87  
91 88 .head-top-box {
92 89 display: flex;
93 90 align-items: center;
  91 + background: white;
94 92  
95 93 .head-image-box {
96 94 display: flex;
... ... @@ -140,7 +138,7 @@ page {}
140 138 color: $u-info-dark;
141 139 font-weight: 600;
142 140 margin-bottom: 10rpx;
143   - background: #ffffffad;
  141 + background: #e7e7e7ad;
144 142 border: 3rpx solid white;
145 143 }
146 144 }
... ...