吃个甘蔗嚼一年 3 gadus atpakaļ
vecāks
revīzija
3ea5bd38e8

+ 0
- 18
.vscode/launch.json Parādīt failu

@@ -1,18 +0,0 @@
1
-{
2
-    // 使用 IntelliSense 了解相关属性。 
3
-    // 悬停以查看现有属性的描述。
4
-    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
5
-    
6
-        "version": "0.2.0",
7
-        "configurations": [
8
-          {
9
-            "type": "pwa-msedge",
10
-            "request": "launch",
11
-            "name": "Launch Microsoft Edge and open the Edge DevTools",
12
-            "url": "http://localhost:8080",
13
-            "webRoot": "${workspaceFolder}"
14
-          }
15
-        ]
16
-      
17
-    
18
-}

+ 0
- 2
src/components/PayOrderCard/index.jsx Parādīt failu

@@ -39,7 +39,6 @@ export default (props) => {
39 39
       onShopContent(shoPnumber)
40 40
     })
41 41
     onShopNumber()
42
-    // console.log("🚀 ~ file: index.jsx ~ line 38 ~ ButtonOK ~ handeItemList", handeItemList)
43 42
 
44 43
 
45 44
   }
@@ -115,7 +114,6 @@ export default (props) => {
115 114
         </view>
116 115
       </view>
117 116
     </view>
118
-    // {moment(item.startTimeal).format('YYYY/MM/DD')}
119 117
 
120 118
 
121 119
   )

+ 0
- 2
src/pages/PayOrder/index.config.js Parādīt failu

@@ -8,6 +8,4 @@ export default {
8 8
     "mp-cells": "weui-miniprogram/cells/cells",
9 9
     "mp-dialog": "weui-miniprogram/dialog/dialog"
10 10
   }
11
-
12
-
13 11
 }

+ 3
- 5
src/pages/PayOrder/index.jsx Parādīt failu

@@ -2,13 +2,11 @@ import withLayout from "@/layouts";
2 2
 import image from "@/assets/icons/ProCard/8kb.jpg";
3 3
 import { useState, useEffect } from "react";
4 4
 import { Button, Checkbox, Input } from "@tarojs/components";
5
-
6 5
 import food from "@/assets/icons/ProCard/food.png";
7 6
 import ProCard_hot from "@/assets/icons/ProCard/ProCard_hot.png";
8 7
 import CustomNav from "@/components/CustomNav";
9 8
 import OrderMolded from "@/components/OrderMolded";
10 9
 import Popup from "@/components/Popup";
11
-
12 10
 import "./style.less";
13 11
 import Taro, { useDidShow } from "@tarojs/taro";
14 12
 import { getShopPackageDetail } from "@/services/home";
@@ -167,7 +165,7 @@ export default withLayout((props) => {
167 165
     <view class="container">
168 166
       <CustomNav title="订单" />
169 167
       <Popup show={showDialog} maskClosable={false}>
170
-        <OrderMolded item={detail}/>
168
+        <OrderMolded item={detail} />
171 169
         <view className="item-center-Number">
172 170
           <view
173 171
             className="buy-num-minus"
@@ -219,7 +217,7 @@ export default withLayout((props) => {
219 217
                   </view>
220 218
                   <text className="title-money">
221 219
                     ¥{(item.actualPrice || item.unitPrice || 0) / 100}元
222
-                    <text className="title-money-2"></text>
220
+                    <text className="title-money-2">
223 221
                       门市价{(item.standardPrice || 0) / 100}元
224 222
                     </text>
225 223
                   </text>
@@ -286,6 +284,6 @@ export default withLayout((props) => {
286 284
           </Button>
287 285
         </view>
288 286
       </view>
289
-    </view >
287
+    </view>
290 288
   );
291 289
 });