| | |
| | | <view class="square-content"> |
| | | <view class="content-input"> |
| | | <input v-model="barcode" type="text" placeholder="扫码 / 输入" |
| | | :focus="barcodeFocus" @input="checkedBarcode()" @confirm="barcodeInput()" placeholder-style="line-height: 85rpx;"> |
| | | :focus="barcodeFocus" @input="checkedBarcode()" placeholder-style="line-height: 85rpx;"> |
| | | <uni-icons type="closeempty" size="20" color="#dadada" @click="removeBarcode()"></uni-icons> |
| | | </view> |
| | | </view> |
| | |
| | | 'token':uni.getStorageSync('token') |
| | | }, |
| | | success(result) { |
| | | console.log(result); |
| | | var res = result.data |
| | | if (res.code === 500) { |
| | | that.barcodeFocuss() |
| | | uni.showToast({title: res.msg, icon: "none", position: 'top'}); |
| | | } else if(res.code === 200) { |
| | | that.barcodeInput() |
| | | } |
| | | } |
| | | }) |
| | | }, |