weighModal2.vue 8.5 KB

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