|
@@ -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
|
});
|