123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352 |
- <template>
- <div class="g-spec-modal" v-if="show" :class="{ page_red: theme === 1 }">
- <div class="bg" @click="close"></div>
- <div class="main">
- <div class="head">
- <span class="tit">无码称重商品</span>
- <span class="close" @click="close">×</span>
- </div>
- <ul class="g-list">
- <li class="g-list__item">
- <div class="g-list__title">单价:</div>
- <div class="g-list__value">
- <input
- type="digit"
- class="input"
- v-model="weighData.price"
- placeholder="请输入单价"
- />
- </div>
- </li>
- <li class="g-list__item">
- <div class="g-list__title">重量:</div>
- <div class="g-list__value">{{ weighData.weight }}kg</div>
- </li>
- <li class="g-list__item">
- <div class="g-list__title">总价:</div>
- <div class="g-list__value">{{ weighData.amt }}元</div>
- </li>
- <!-- <li style="text-align: right;">
- <span class="refresh" @click="getData">刷新重量</span>
- </li> -->
- </ul>
- <div class="modal-bottom">
- <div class="price">
- ¥
- <span class="num">{{ weighData.amt }}</span>
- </div>
- <div class="btn" @click="addCart">加入列表</div>
- </div>
- </div>
- </div>
- </template>
- <script>
- //#ifdef APP-PLUS
- var testModule = uni.requireNativePlugin("TestModule");
- //#endif
- export default {
- name: "GSpecModal",
- components: {},
- props: {},
- // 数据
- data() {
- return {
- show: false,
- callBack: "",
- weighData: {
- price: 0,
- weight: "0",
- amt: "0",
- },
- };
- },
- // 函数
- methods: {
- // 打开
- open(callBack) {
- const self = this;
- self.show = true;
- self.callBack = callBack;
- this.getData();
- },
- // 关闭
- close() {
- const self = this;
- self.show = false;
- },
- // 加入购物车
- addCart() {
- const self = this;
- if (!this.weighData.weight) {
- self.fn.showToast("没有称重数据");
- }else if (!this.weighData.price){
- self.fn.showToast("请输入商品单价");
- } else {
- this.callBack({
- _type: "-1",
- id: Date.now(),
- name: "无码称重商品",
- price: this.weighData.price * 100,
- select_num: this.weighData.weight,
- isWeightGood: true,
- });
- this.close();
- this.$forceUpdate();
- }
- },
- getData() {
- // var ret = testModule.open({
- // name: "unimp",
- // age: 1,
- // });
- setInterval(() => {
- this.getWeight();
- // this.getPrice();
- // this.getAmt();
- }, 300);
- },
- getWeight() {
- // var ret = testModule.getWeight({
- // name: "unimp",
- // age: 1,
- // });
- // if (!ret) {
- // this.fn.showToast("获取weight错误");
- // }
- let ret = { code: "1.340" };
- this.weighData.weight = ret.code;
- let num = Number(ret.code);
- if (this.weighData.price) {
- if (num) {
- let amt = num * this.weighData.price;
- amt = amt.toFixed(2);
- this.weighData.amt = Number(amt);
- }
- }
- },
- getPrice() {
- var ret = testModule.getPrice({
- name: "unimp",
- age: 1,
- });
- if (!ret) {
- this.fn.showToast("获取price错误");
- }
- this.weighData.price = ret.code;
- },
- getAmt() {
- var ret = testModule.getAmt({
- name: "unimp",
- age: 1,
- });
- if (!ret) {
- this.fn.showToast("获取Amt错误");
- }
- this.weighData.amt = ret.code;
- },
- },
- // 数据计算
- computed: {
- // 判断主题 1:红色 2:绿色
- theme() {
- return this.$store.state.common.theme;
- },
- },
- // 数据监听
- watch: {},
- };
- </script>
- <style lang="scss" scoped>
- .g-spec-modal {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 3000;
- .bg {
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.3);
- }
- .main {
- background-color: #fff;
- border-radius: px(30);
- position: absolute;
- top: 50%;
- left: px(100);
- right: px(100);
- transform: translate(0, -50%);
- max-height: 90vh;
- overflow: auto;
- z-index: 100;
- padding: px(40) 0;
- }
- .head {
- font-size: px(44);
- position: relative;
- padding-bottom: px(30);
- border-bottom: 1px solid #f1f1f1;
- line-height: px(88);
- padding: 0 px(40);
- .close {
- font-size: px(80);
- color: #666;
- position: absolute;
- right: px(40);
- top: 0%;
- z-index: 10;
- }
- .tit {
- margin-right: px(80);
- display: block;
- @include omit(100%);
- width: auto;
- }
- }
- }
- .g-list {
- padding: 0 px(40) px(50);
- border-bottom: solid px(3) #fafafa;
- &__item {
- padding-top: px(40);
- display: flex;
- align-items: center;
- }
- &__title {
- font-size: px(44);
- color: #333;
- margin-right: px(30);
- color: #999;
- }
- }
- .refresh {
- margin-top: px(30);
- display: inline-block;
- border: 1px solid #d9d9d9;
- color: #333;
- width: px(280);
- height: px(80);
- font-size: px(34);
- text-align: center;
- line-height: px(80);
- border-radius: px(40);
- }
- .modal-bottom {
- display: flex;
- margin-top: px(50);
- justify-content: space-between;
- align-items: center;
- padding: 0 px(40);
- .price {
- color: #fe6661;
- font-size: px(40);
- .num {
- font-size: px(50);
- }
- }
- .btn {
- display: block;
- background-color: #27a34f;
- color: #fff;
- width: px(280);
- height: px(80);
- font-size: px(34);
- text-align: center;
- line-height: px(80);
- border-radius: px(40);
- }
- }
- .btns {
- display: flex;
- align-items: center;
- .cart-num {
- // padding: px(30) px(10) px(10) px(30);
- padding: 0 px(30);
- box-sizing: border-box;
- min-width: px(60);
- }
- &__add {
- background-color: #27a34f;
- width: px(60);
- height: px(60);
- border-radius: 50%;
- // box-shadow: px(1) px(2) px(6) #27a34f;
- position: relative;
- &::after,
- &::before {
- content: "";
- position: absolute;
- top: 50%;
- left: 50%;
- z-index: 1;
- width: 60%;
- height: px(6);
- border-radius: px(6);
- background: #fff;
- }
- &::after {
- transform: translate(-50%, -50%);
- }
- &::before {
- transform-origin: center;
- transform: translate(-50%, -50%) rotate(90deg);
- }
- }
- &__remove {
- background-color: #fff;
- width: px(60);
- height: px(60);
- border-radius: 50%;
- border: 1px solid #999;
- position: relative;
- &::after {
- content: "";
- position: absolute;
- top: 50%;
- left: 50%;
- z-index: 1;
- width: 60%;
- height: px(6);
- border-radius: px(6);
- background: #999;
- transform: translate(-50%, -50%);
- }
- }
- }
- .page_red {
- .modal-bottom .btn {
- background-color: #fe6661;
- }
- .btns__add {
- background-color: #fe6661;
- }
- }
- .input {
- border: 1px solid #f1f1f1;
- padding: px(5) px(10);
- }
- </style>
|