|
@@ -0,0 +1,352 @@
|
|
1
|
+<template>
|
|
2
|
+ <div class="g-spec-modal" v-if="show" :class="{ page_red: theme === 1 }">
|
|
3
|
+ <div class="bg" @click="close"></div>
|
|
4
|
+ <div class="main">
|
|
5
|
+ <div class="head">
|
|
6
|
+ <span class="tit">无码称重商品</span>
|
|
7
|
+ <span class="close" @click="close">×</span>
|
|
8
|
+ </div>
|
|
9
|
+ <ul class="g-list">
|
|
10
|
+ <li class="g-list__item">
|
|
11
|
+ <div class="g-list__title">单价:</div>
|
|
12
|
+ <div class="g-list__value">
|
|
13
|
+ <input
|
|
14
|
+ type="digit"
|
|
15
|
+ class="input"
|
|
16
|
+ v-model="weighData.price"
|
|
17
|
+ placeholder="请输入单价"
|
|
18
|
+ />
|
|
19
|
+ </div>
|
|
20
|
+ </li>
|
|
21
|
+ <li class="g-list__item">
|
|
22
|
+ <div class="g-list__title">重量:</div>
|
|
23
|
+ <div class="g-list__value">{{ weighData.weight }}kg</div>
|
|
24
|
+ </li>
|
|
25
|
+ <li class="g-list__item">
|
|
26
|
+ <div class="g-list__title">总价:</div>
|
|
27
|
+ <div class="g-list__value">{{ weighData.amt }}元</div>
|
|
28
|
+ </li>
|
|
29
|
+ <!-- <li style="text-align: right;">
|
|
30
|
+ <span class="refresh" @click="getData">刷新重量</span>
|
|
31
|
+ </li> -->
|
|
32
|
+ </ul>
|
|
33
|
+
|
|
34
|
+ <div class="modal-bottom">
|
|
35
|
+ <div class="price">
|
|
36
|
+ ¥
|
|
37
|
+ <span class="num">{{ weighData.amt }}</span>
|
|
38
|
+ </div>
|
|
39
|
+ <div class="btn" @click="addCart">加入列表</div>
|
|
40
|
+ </div>
|
|
41
|
+ </div>
|
|
42
|
+ </div>
|
|
43
|
+</template>
|
|
44
|
+
|
|
45
|
+<script>
|
|
46
|
+//#ifdef APP-PLUS
|
|
47
|
+var testModule = uni.requireNativePlugin("TestModule");
|
|
48
|
+//#endif
|
|
49
|
+export default {
|
|
50
|
+ name: "GSpecModal",
|
|
51
|
+ components: {},
|
|
52
|
+ props: {},
|
|
53
|
+
|
|
54
|
+ // 数据
|
|
55
|
+ data() {
|
|
56
|
+ return {
|
|
57
|
+ show: false,
|
|
58
|
+ callBack: "",
|
|
59
|
+ weighData: {
|
|
60
|
+ price: 0,
|
|
61
|
+ weight: "0",
|
|
62
|
+ amt: "0",
|
|
63
|
+ },
|
|
64
|
+ };
|
|
65
|
+ },
|
|
66
|
+
|
|
67
|
+ // 函数
|
|
68
|
+ methods: {
|
|
69
|
+ // 打开
|
|
70
|
+ open(callBack) {
|
|
71
|
+ const self = this;
|
|
72
|
+ self.show = true;
|
|
73
|
+ self.callBack = callBack;
|
|
74
|
+ this.getData();
|
|
75
|
+ },
|
|
76
|
+
|
|
77
|
+ // 关闭
|
|
78
|
+ close() {
|
|
79
|
+ const self = this;
|
|
80
|
+
|
|
81
|
+ self.show = false;
|
|
82
|
+ },
|
|
83
|
+
|
|
84
|
+ // 加入购物车
|
|
85
|
+ addCart() {
|
|
86
|
+ const self = this;
|
|
87
|
+
|
|
88
|
+ if (!this.weighData.weight) {
|
|
89
|
+ self.fn.showToast("没有称重数据");
|
|
90
|
+ }else if (!this.weighData.price){
|
|
91
|
+ self.fn.showToast("请输入商品单价");
|
|
92
|
+ } else {
|
|
93
|
+ this.callBack({
|
|
94
|
+ _type: "-1",
|
|
95
|
+ id: Date.now(),
|
|
96
|
+ name: "无码称重商品",
|
|
97
|
+ price: this.weighData.price * 100,
|
|
98
|
+ select_num: this.weighData.weight,
|
|
99
|
+ isWeightGood: true,
|
|
100
|
+
|
|
101
|
+ });
|
|
102
|
+ this.close();
|
|
103
|
+ this.$forceUpdate();
|
|
104
|
+ }
|
|
105
|
+ },
|
|
106
|
+
|
|
107
|
+ getData() {
|
|
108
|
+ // var ret = testModule.open({
|
|
109
|
+ // name: "unimp",
|
|
110
|
+ // age: 1,
|
|
111
|
+ // });
|
|
112
|
+ setInterval(() => {
|
|
113
|
+ this.getWeight();
|
|
114
|
+ // this.getPrice();
|
|
115
|
+ // this.getAmt();
|
|
116
|
+ }, 300);
|
|
117
|
+ },
|
|
118
|
+
|
|
119
|
+ getWeight() {
|
|
120
|
+ // var ret = testModule.getWeight({
|
|
121
|
+ // name: "unimp",
|
|
122
|
+ // age: 1,
|
|
123
|
+ // });
|
|
124
|
+ // if (!ret) {
|
|
125
|
+ // this.fn.showToast("获取weight错误");
|
|
126
|
+ // }
|
|
127
|
+ let ret = { code: "1.340" };
|
|
128
|
+ this.weighData.weight = ret.code;
|
|
129
|
+
|
|
130
|
+ let num = Number(ret.code);
|
|
131
|
+ if (this.weighData.price) {
|
|
132
|
+ if (num) {
|
|
133
|
+ let amt = num * this.weighData.price;
|
|
134
|
+ amt = amt.toFixed(2);
|
|
135
|
+ this.weighData.amt = Number(amt);
|
|
136
|
+ }
|
|
137
|
+ }
|
|
138
|
+ },
|
|
139
|
+ getPrice() {
|
|
140
|
+ var ret = testModule.getPrice({
|
|
141
|
+ name: "unimp",
|
|
142
|
+ age: 1,
|
|
143
|
+ });
|
|
144
|
+ if (!ret) {
|
|
145
|
+ this.fn.showToast("获取price错误");
|
|
146
|
+ }
|
|
147
|
+ this.weighData.price = ret.code;
|
|
148
|
+ },
|
|
149
|
+ getAmt() {
|
|
150
|
+ var ret = testModule.getAmt({
|
|
151
|
+ name: "unimp",
|
|
152
|
+ age: 1,
|
|
153
|
+ });
|
|
154
|
+ if (!ret) {
|
|
155
|
+ this.fn.showToast("获取Amt错误");
|
|
156
|
+ }
|
|
157
|
+ this.weighData.amt = ret.code;
|
|
158
|
+ },
|
|
159
|
+ },
|
|
160
|
+
|
|
161
|
+ // 数据计算
|
|
162
|
+ computed: {
|
|
163
|
+ // 判断主题 1:红色 2:绿色
|
|
164
|
+ theme() {
|
|
165
|
+ return this.$store.state.common.theme;
|
|
166
|
+ },
|
|
167
|
+ },
|
|
168
|
+
|
|
169
|
+ // 数据监听
|
|
170
|
+ watch: {},
|
|
171
|
+};
|
|
172
|
+</script>
|
|
173
|
+
|
|
174
|
+<style lang="scss" scoped>
|
|
175
|
+.g-spec-modal {
|
|
176
|
+ position: fixed;
|
|
177
|
+ top: 0;
|
|
178
|
+ left: 0;
|
|
179
|
+ right: 0;
|
|
180
|
+ bottom: 0;
|
|
181
|
+ z-index: 3000;
|
|
182
|
+ .bg {
|
|
183
|
+ width: 100%;
|
|
184
|
+ height: 100%;
|
|
185
|
+ background-color: rgba(0, 0, 0, 0.3);
|
|
186
|
+ }
|
|
187
|
+ .main {
|
|
188
|
+ background-color: #fff;
|
|
189
|
+ border-radius: px(30);
|
|
190
|
+ position: absolute;
|
|
191
|
+ top: 50%;
|
|
192
|
+ left: px(100);
|
|
193
|
+ right: px(100);
|
|
194
|
+ transform: translate(0, -50%);
|
|
195
|
+ max-height: 90vh;
|
|
196
|
+ overflow: auto;
|
|
197
|
+ z-index: 100;
|
|
198
|
+ padding: px(40) 0;
|
|
199
|
+ }
|
|
200
|
+ .head {
|
|
201
|
+ font-size: px(44);
|
|
202
|
+ position: relative;
|
|
203
|
+ padding-bottom: px(30);
|
|
204
|
+ border-bottom: 1px solid #f1f1f1;
|
|
205
|
+ line-height: px(88);
|
|
206
|
+ padding: 0 px(40);
|
|
207
|
+ .close {
|
|
208
|
+ font-size: px(80);
|
|
209
|
+ color: #666;
|
|
210
|
+ position: absolute;
|
|
211
|
+ right: px(40);
|
|
212
|
+ top: 0%;
|
|
213
|
+ z-index: 10;
|
|
214
|
+ }
|
|
215
|
+ .tit {
|
|
216
|
+ margin-right: px(80);
|
|
217
|
+ display: block;
|
|
218
|
+ @include omit(100%);
|
|
219
|
+ width: auto;
|
|
220
|
+ }
|
|
221
|
+ }
|
|
222
|
+}
|
|
223
|
+
|
|
224
|
+.g-list {
|
|
225
|
+ padding: 0 px(40) px(50);
|
|
226
|
+ border-bottom: solid px(3) #fafafa;
|
|
227
|
+
|
|
228
|
+ &__item {
|
|
229
|
+ padding-top: px(40);
|
|
230
|
+ display: flex;
|
|
231
|
+ align-items: center;
|
|
232
|
+ }
|
|
233
|
+
|
|
234
|
+ &__title {
|
|
235
|
+ font-size: px(44);
|
|
236
|
+ color: #333;
|
|
237
|
+ margin-right: px(30);
|
|
238
|
+ color: #999;
|
|
239
|
+ }
|
|
240
|
+}
|
|
241
|
+.refresh {
|
|
242
|
+ margin-top: px(30);
|
|
243
|
+
|
|
244
|
+ display: inline-block;
|
|
245
|
+ border: 1px solid #d9d9d9;
|
|
246
|
+ color: #333;
|
|
247
|
+ width: px(280);
|
|
248
|
+ height: px(80);
|
|
249
|
+ font-size: px(34);
|
|
250
|
+ text-align: center;
|
|
251
|
+ line-height: px(80);
|
|
252
|
+ border-radius: px(40);
|
|
253
|
+}
|
|
254
|
+
|
|
255
|
+.modal-bottom {
|
|
256
|
+ display: flex;
|
|
257
|
+ margin-top: px(50);
|
|
258
|
+ justify-content: space-between;
|
|
259
|
+ align-items: center;
|
|
260
|
+ padding: 0 px(40);
|
|
261
|
+ .price {
|
|
262
|
+ color: #fe6661;
|
|
263
|
+ font-size: px(40);
|
|
264
|
+ .num {
|
|
265
|
+ font-size: px(50);
|
|
266
|
+ }
|
|
267
|
+ }
|
|
268
|
+ .btn {
|
|
269
|
+ display: block;
|
|
270
|
+ background-color: #27a34f;
|
|
271
|
+ color: #fff;
|
|
272
|
+ width: px(280);
|
|
273
|
+ height: px(80);
|
|
274
|
+ font-size: px(34);
|
|
275
|
+ text-align: center;
|
|
276
|
+ line-height: px(80);
|
|
277
|
+ border-radius: px(40);
|
|
278
|
+ }
|
|
279
|
+}
|
|
280
|
+
|
|
281
|
+.btns {
|
|
282
|
+ display: flex;
|
|
283
|
+ align-items: center;
|
|
284
|
+ .cart-num {
|
|
285
|
+ // padding: px(30) px(10) px(10) px(30);
|
|
286
|
+ padding: 0 px(30);
|
|
287
|
+ box-sizing: border-box;
|
|
288
|
+ min-width: px(60);
|
|
289
|
+ }
|
|
290
|
+ &__add {
|
|
291
|
+ background-color: #27a34f;
|
|
292
|
+ width: px(60);
|
|
293
|
+ height: px(60);
|
|
294
|
+ border-radius: 50%;
|
|
295
|
+ // box-shadow: px(1) px(2) px(6) #27a34f;
|
|
296
|
+ position: relative;
|
|
297
|
+ &::after,
|
|
298
|
+ &::before {
|
|
299
|
+ content: "";
|
|
300
|
+ position: absolute;
|
|
301
|
+ top: 50%;
|
|
302
|
+ left: 50%;
|
|
303
|
+ z-index: 1;
|
|
304
|
+ width: 60%;
|
|
305
|
+ height: px(6);
|
|
306
|
+ border-radius: px(6);
|
|
307
|
+ background: #fff;
|
|
308
|
+ }
|
|
309
|
+ &::after {
|
|
310
|
+ transform: translate(-50%, -50%);
|
|
311
|
+ }
|
|
312
|
+ &::before {
|
|
313
|
+ transform-origin: center;
|
|
314
|
+ transform: translate(-50%, -50%) rotate(90deg);
|
|
315
|
+ }
|
|
316
|
+ }
|
|
317
|
+
|
|
318
|
+ &__remove {
|
|
319
|
+ background-color: #fff;
|
|
320
|
+ width: px(60);
|
|
321
|
+ height: px(60);
|
|
322
|
+ border-radius: 50%;
|
|
323
|
+ border: 1px solid #999;
|
|
324
|
+ position: relative;
|
|
325
|
+ &::after {
|
|
326
|
+ content: "";
|
|
327
|
+ position: absolute;
|
|
328
|
+ top: 50%;
|
|
329
|
+ left: 50%;
|
|
330
|
+ z-index: 1;
|
|
331
|
+ width: 60%;
|
|
332
|
+ height: px(6);
|
|
333
|
+ border-radius: px(6);
|
|
334
|
+ background: #999;
|
|
335
|
+ transform: translate(-50%, -50%);
|
|
336
|
+ }
|
|
337
|
+ }
|
|
338
|
+}
|
|
339
|
+
|
|
340
|
+.page_red {
|
|
341
|
+ .modal-bottom .btn {
|
|
342
|
+ background-color: #fe6661;
|
|
343
|
+ }
|
|
344
|
+ .btns__add {
|
|
345
|
+ background-color: #fe6661;
|
|
346
|
+ }
|
|
347
|
+}
|
|
348
|
+.input {
|
|
349
|
+ border: 1px solid #f1f1f1;
|
|
350
|
+ padding: px(5) px(10);
|
|
351
|
+}
|
|
352
|
+</style>
|