weighModal.vue 8.1 KB

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