Parcourir la source

发货单详情

czj il y a 4 ans
Parent
commit
d065c2ce74
3 fichiers modifiés avec 19 ajouts et 3 suppressions
  1. 17 3
      src/pageSubs/deliveryOrder/detail.vue
  2. 2 0
      src/pages.json
  3. BIN
      src/static/common/head_bg.png

+ 17 - 3
src/pageSubs/deliveryOrder/detail.vue

@@ -4,10 +4,12 @@
  * @Author: dream
  * @Date: 2021-03-31 18:03:25
  * @LastEditors: dream
- * @LastEditTime: 2021-03-31 18:04:08
+ * @LastEditTime: 2021-04-01 11:28:40
 -->
 <template>
-	<view>Delivery Orders Detail</view>
+	<view class="delivery-order-detail-main">
+    <view class="head-area"><text class="status-title">待发货</text></view>
+  </view>
 </template>
 
 <script>
@@ -28,5 +30,17 @@ export default {
 </script>
 
 <style lang="scss" scoped>
-
+.delivery-order-detail-main {
+  .head-area {
+    padding: 24px 24px 0;
+    height: 282px;
+    background: linear-gradient(180deg, #1677FF 0%, #7CB1FB 55%, #F5F5F5 100%);
+    .status-title {
+      font-size: 56px;
+      font-weight: 500;
+      line-height: 80px;
+      color: $iph-standby-text;
+    }
+  }
+}
 </style>

+ 2 - 0
src/pages.json

@@ -42,6 +42,8 @@
     }, {
       "path": "detail",
       "style": {
+        "navigationBarBackgroundColor": "#1677FF",
+        "navigationBarTextStyle": "white",
         "navigationBarTitleText": "发货单详情"
 			}
     }]

BIN
src/static/common/head_bg.png