weighModal.vue 8.2 KB

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