123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- <template>
- <!-- 添加钢瓶 -->
- <view>
- <u-navbar title="添加钢瓶" autoBack placeholder @leftClick="leftClick"></u-navbar>
- <view class="card_cylinder">
- <view class="title_index">钢瓶编号</view>
- <view style="display: flex;align-items: center;">
- <u-input border="surround" placeholder="点击输入" v-model="frequencyCoding"></u-input>
- <view class="btn_add_card">
- <u-button type="primary" text="添加" @click="addCode"></u-button>
- </view>
- </view>
- <view class="scan_card_code">
- <view style="display: flex;align-items: center;" @click="addLine">
- <u-icon name="scan" size="26"></u-icon>
- <view class="title_subhead">增加一条</view>
- </view>
- <view style="display: flex;align-items: center;margin-left: 30rpx;" @click="continuousAddition">
- <u-icon name="scan" size="26"></u-icon>
- <view class="title_subhead">连续扫码增加</view>
- </view>
- </view>
- <view v-if="codeList.length > 0">
- <view class="space_between card_code_trac" v-for="(item,index) in codeList" :key="index">
- <view style="display: flex;align-items: center;">
- <view class="item_current">{{index + 1}}</view>
- <view class="item_title1">{{item}}</view>
- </view>
- <view class="item_title1 title_red" @click="delCode(index)">删除</view>
- </view>
- </view>
- <view style="margin-top: 20%;" v-else>
- <u-empty mode="list" text="请先扫描添加钢瓶编号"></u-empty>
- </view>
- </view>
- <view style="width: 100%;height: 120rpx;"></view>
- <view class="card_btn">
- <u-button style="margin-bottom: 20rpx;" type="primary" @click="submit">提交</u-button>
- </view>
- <u-popup :show="show" :round="10" mode="center" @close="close">
- <view class="card_coding_scan">
- <view class="title_coding">钢瓶编号</view>
- <view class="coding_title1">{{scanCoding}}</view>
- <view style="display: flex;align-items: center;">
- <u-icon color="#19be6b" size="30" name="checkmark-circle-fill"></u-icon>
- <view class="success_title">扫描成功</view>
- </view>
- <view class="title_coding">3秒后再次扫描</view>
- </view>
- </u-popup>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- frequencyCoding: '',
- codeList: [],
- scanType: 1,
- show: false,
- scanCoding: '',
- bottleType: 1,
- }
- },
- onLoad(value) {
- this.bottleType = value.status
- },
- methods: {
- // 返回
- leftClick(){
- uni.$emit('refresh');
- },
- // 添加钢瓶
- submit() {
- let arrList = []
- if (this.codeList.length == 0) {
- if (!this.frequencyCoding) {
- return uni.$u.toast('请先输入钢瓶编号')
- } else {
- arrList.push(this.frequencyCoding)
- }
- } else {
- arrList = this.codeList
- }
- this.$api.post('/api/gas-cylinder-status', {
- status: Number(this.bottleType),
- innerCodeList: arrList
- }).then(res => {
- if (res.code == 200) {
- this.codeList = []
- this.frequencyCoding = ''
- uni.$u.toast(res.msg)
- }
- })
- },
- // 删除录入钢瓶编号
- delCode(index) {
- this.codeList.splice(index, 1);
- },
- // 输入钢瓶编号添加
- addCode() {
- this.codeList.push(this.frequencyCoding)
- this.codeList = Array.from(new Set(this.codeList));
- this.frequencyCoding = ''
- },
- // 添加一条
- addLine() {
- this.scanType = 1
- this.sweep()
- },
- // 连续添加
- continuousAddition() {
- this.scanType = 2
- this.sweep()
- },
- // 扫一扫
- sweep() {
- // 允许从相机和相册扫码
- uni.scanCode({
- scanType: ['qrCode'],
- autoZoom: false,
- success: (res) => {
- console.log(res, '--------');
- if (res.result) {
- let url = res.result;
- const arrf = url.split('=')
- this.unitCoding(arrf[1])
- } else {
- console.log('请重新扫描');
- return false;
- }
- },
- fail: (res) => {
- console.log('未识别到二维码1');
- }
- })
- },
- // 单位内编码获取
- unitCoding(qrid) {
- uni.showLoading({
- title: '加载中'
- });
- uni.request({
- url: 'http://qr.uinshine.com:9000/CommonAPI/product/getDetails', //仅为示例,并非真实接口地址。
- method: 'POST',
- header: {
- 'content-type': 'application/x-www-form-urlencoded', // 默认值
- },
- data: {
- qr_id: qrid,
- },
- success: (res) => {
- if (res.data.code == 0) {
- var arr = res.data.data
- if (this.scanType == 1) {
- this.codeList.push(arr.inner_code)
- this.codeList = Array.from(new Set(this.codeList));
- } else {
- this.show = true
- this.codeList.push(arr.inner_code)
- this.codeList = Array.from(new Set(this.codeList));
- this.scanCoding = arr.inner_code
- // 扫码间隔两秒
- setTimeout(() => {
- this.sweep()
- this.show = false
- }, 3000)
- }
- uni.hideLoading();
- }
- }
- });
- },
- // 弹窗关闭
- close() {
- this.show = false
- }
- }
- }
- </script>
- <style lang="scss">
- .title_index {
- margin-bottom: 10rpx;
- font-size: 34rpx;
- }
- .btn_add_card {
- margin-left: 20rpx;
- }
- .card_cylinder {
- padding: 30rpx;
- }
- .title_subhead {
- margin-left: 6rpx;
- font-size: 34rpx;
- font-weight: 600;
- }
- .scan_card_code {
- display: flex;
- align-items: center;
- margin-top: 20rpx;
- padding-bottom: 20rpx;
- border-bottom: 1rpx solid #d7d7d7;
- }
- .card_code_trac {
- margin-top: 30rpx;
- padding-bottom: 30rpx;
- border-bottom: 1rpx solid #d7d7d7;
- }
- .item_current {
- width: 40rpx;
- color: #82848a;
- }
- .item_title1 {
- margin-left: 10rpx;
- }
- .title_red {
- color: #fa3534;
- }
- .card_btn {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- padding-left: 30rpx;
- padding-right: 30rpx;
- padding-top: 20rpx;
- background-color: #fff;
- padding-bottom: constant(safe-area-inset-bottom); //兼容 IOS<11.2
- padding-bottom: env(safe-area-inset-bottom); //兼容 IOS>11.2
- }
- .card_coding_scan {
- display: flex;
- align-items: center;
- flex-direction: column;
- width: 400rpx;
- padding: 30rpx;
- }
- .title_coding {
- font-size: 32rpx;
- margin: 20rpx;
- }
- .success_title {
- font-size: 40rpx;
- margin-left: 10rpx;
- }
- .coding_title1 {
- font-size: 60rpx;
- margin-bottom: 20rpx;
- font-weight: 600;
- }
- </style>
|