123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421 |
- <template>
- <!-- 确认送达 -->
- <view>
- <u-navbar :title="navTitle" autoBack placeholder @leftClick="leftClick"></u-navbar>
- <view class="card_order_details">
- <view style="display: flex;align-items: center;margin-bottom: 10rpx;">
- <view class="details_title">{{getTitle(navTitle)}} <span class="line_title">*</span></view>
- <uni-datetime-picker type="datetime" :start="start" :end="end" v-model="valueTime" />
- </view>
- <view class="card_search">
- <view class="details_title">运单号 <span class="line_title">*</span></view>
- <view class="card_input">
- <u-input border="surround" v-model="frequencyCoding">
- <template slot="suffix">
- <u-icon name="scan" size="26" @click="sweep"></u-icon>
- </template>
- </u-input>
- </view>
- </view>
- <view v-if="selectiveType != 'signfor'">
- <view class="card_frequency">
- <view class="card_high space_between">
- <view class="card_frequency_title">已录入运单号</view>
- <view class="card_bottle">已扫<span>{{list.length}}</span></view>
- </view>
- <view style="width: 100%;" v-if="list.length > 0">
- <view class="item_coding" v-for="(item,index) in list" :key="index">
- {{item}}
- </view>
- </view>
- <view class="card_empty" v-else>
- <u-empty mode="list"></u-empty>
- </view>
- </view>
- </view>
- <view v-else>
- <view class="card_sign_in">
- <view class="details_title1">运单签收图片 <span class="line_title">*</span></view>
- <view>
- <u-upload :fileList="fileList1" name="1" :maxCount="1" @afterRead="afterRead"
- @delete="deletePic"></u-upload>
- </view>
- </view>
- <view class="card_sign_in">
- <view class="details_title1">随货通行单图片 <span class="line_title">*</span></view>
- <view>
- <u-upload :fileList="fileList2" name="2" :maxCount="1" @afterRead="afterRead"
- @delete="deletePic"></u-upload>
- </view>
- </view>
- <view class="card_sign_in">
- <view class="details_title1">冷链交接单图片 <span class="line_title">*</span></view>
- <view>
- <u-upload :fileList="fileList3" name="3" :maxCount="1" @afterRead="afterRead"
- @delete="deletePic"></u-upload>
- </view>
- </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>
- </view>
- </view>
- </template>
- <script>
- const ENV = require('@/.env.js')
- export default {
- data() {
- return {
- frequencyCoding: '',
- navTitle: '',
- selectiveType: '',
- cmpCode: '',
- list: [],
- orderId: '',
- valueTime: this.getDateTime(new Date()),
- start: Date.now() - 10 * 24 * 3600000,
- end: Date.now() + 10 * 24 * 3600000,
- fileList1: [],
- fileList2: [],
- fileList3: [],
- }
- },
- onLoad(receive) {
- this.navTitle = receive.title
- this.selectiveType = receive.id
- },
- methods: {
- leftClick() {
- uni.$emit('refresh');
- },
- submit() {
- this.getEntering()
- if (this.list.length > 0) {
- if (this.valueTime) {
- if (this.selectiveType == 'put') {
- // 扫码入库
- this.scanCodes('/api/waybill/warehouse-in')
- } else if (this.selectiveType == 'out') {
- // 扫码出库
- this.scanCodes('/api/waybill/warehouse-out')
- } else if (this.selectiveType == 'truck') {
- // 扫码装车
- this.scanCodes('/api/waybill/car-in')
- } else if (this.selectiveType == 'unload') {
- // 扫码下车
- this.scanCodes('/api/waybill/car-out')
- } else if (this.selectiveType == 'signfor') {
- if (this.fileList1.length > 0 && this.fileList2.length > 0 && this.fileList3.length > 0) {
- // 扫码签收
- this.scanCodesSignFor('/api/waybill/receipt')
- } else {
- uni.$u.toast('请完善表单')
- }
- }
- } else {
- const title = this.getTitle(this.navTitle)
- uni.$u.toast('请先选择' + title + '时间')
- }
- } else {
- uni.$u.toast('请先录入运单号')
- }
- },
- getTitle(value) {
- const title = value.split('扫码')
- const headline = title[1] + '时间'
- return headline
- },
- // 提交扫码列表
- scanCodes(url) {
- uni.showLoading();
- this.$api.post(url, {
- startTime: this.valueTime,
- waybillNoList: this.list
- }).then(res => {
- if (res.code == 200) {
- this.frequencyCoding = ''
- this.list = []
- uni.$u.toast(res.msg)
- } else {
- uni.$u.toast(res.data.msg)
- }
- uni.hideLoading();
- }).catch(() => {
- uni.hideLoading();
- })
- },
- // 提交扫码签收列表
- scanCodesSignFor(url) {
- const signUrl = this.fileList1[0].url + ',' + this.fileList2[0].url + ',' + this.fileList3[0].url
- this.$api.post(url, {
- startTime: this.valueTime,
- waybillNo: this.frequencyCoding,
- receiptImg: signUrl,
- }).then(res => {
- if (res.code == 200) {
- this.frequencyCoding = ''
- this.fileList1 = []
- this.fileList2 = []
- this.fileList3 = []
- this.list = []
- uni.$u.toast(res.msg)
- } else {
- uni.$u.toast(res.data.msg)
- }
- })
- },
- // 扫码录入
- getEntering() {
- if (this.frequencyCoding) {
- this.list.push(this.frequencyCoding)
- function methods1(arr) {
- return Array.from(new Set(arr));
- }
- this.list = methods1(this.list)
- }
- },
- // 扫一扫
- sweep() {
- // 允许从相机和相册扫码
- uni.scanCode({
- scanType: ['barCode'],
- // scanType: ['qrCode'],
- autoZoom: false,
- success: (res) => {
- console.log(res);
- if (res.result) {
- let url = res.result;
- this.frequencyCoding = url
- this.list.push(url)
- function methods1(arr) {
- return Array.from(new Set(arr));
- }
- this.list = methods1(this.list)
- } else {
- console.log('请重新扫描');
- return false;
- }
- },
- fail: (res) => {
- console.log('未识别到二维码');
- }
- })
- },
- // 新增图片
- async afterRead(event) {
- // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
- let lists = [].concat(event.file)
- let fileListLen = this[`fileList${event.name}`].length
- lists.map((item) => {
- this[`fileList${event.name}`].push({
- ...item,
- status: 'uploading',
- message: '上传中'
- })
- })
- for (let i = 0; i < lists.length; i++) {
- const result = await this.uploadFilePromise(lists[i].url)
- let item = this[`fileList${event.name}`][fileListLen]
- this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
- status: 'success',
- message: '',
- url: result
- }))
- fileListLen++
- }
- if (event.name == '1') {
- var arr = []
- this.fileList1.forEach(item1 => {
- arr.push(item1.url)
- })
- } else if (event.name == '2') {
- var arr1 = []
- this.fileList2.forEach(item2 => {
- arr1.push(item2.url)
- })
- } else if (event.name == '3') {
- var arr2 = []
- this.fileList3.forEach(item3 => {
- arr2.push(item3.url)
- })
- }
- },
- // 删除图片
- deletePic(event) {
- this[`fileList${event.name}`].splice(event.index, 1)
- },
- uploadFilePromise(url) {
- return new Promise((resolve, reject) => {
- let a = uni.uploadFile({
- url: ENV.APP_DEV_URL + '/api/upload', // 仅为示例,非真实的接口地址
- filePath: url,
- name: 'file',
- // formData: {
- // user: 'test'
- // },
- header: {
- 'Authorization': 'Bearer ' + uni.getStorageSync('access_token'),
- },
- success: (res) => {
- let state = JSON.parse(res.data)
- setTimeout(() => {
- if (state.code == 200) {
- resolve(state.data)
- }
- })
- }
- });
- })
- },
- getDateTime(date, addZero = true) {
- return `${this.getDate(date, addZero)} ${this.getTime(date, addZero)}`
- },
- getDate(date, addZero = true) {
- date = new Date(date)
- const year = date.getFullYear()
- const month = date.getMonth() + 1
- const day = date.getDate()
- return `${year}-${addZero ? this.addZero(month) : month}-${addZero ? this.addZero(day) : day}`
- },
- getTime(date, addZero = true) {
- date = new Date(date)
- const hour = date.getHours()
- const minute = date.getMinutes()
- const second = date.getSeconds()
- return this.hideSecond ?
- `${addZero ? this.addZero(hour) : hour}:${addZero ? this.addZero(minute) : minute}` :
- `${addZero ? this.addZero(hour) : hour}:${addZero ? this.addZero(minute) : minute}:${addZero ? this.addZero(second) : second}`
- },
- addZero(num) {
- if (num < 10) {
- num = `0${num}`
- }
- return num
- }
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #fff !important;
- }
- .card_order_details {
- margin: 10rpx 30rpx 30rpx 30rpx;
- }
- .details_title {
- flex: none;
- color: #333;
- font-size: 32rpx;
- font-weight: 500;
- margin-bottom: 10rpx;
- margin-right: 15rpx;
- }
- .details_title1 {
- width: 140rpx;
- text-align: center;
- flex: none;
- color: #333;
- font-size: 32rpx;
- font-weight: 500;
- margin-bottom: 10rpx;
- margin-right: 15rpx;
- }
- .card_time {
- width: 100%;
- border: 1rpx solid #dadbde;
- border-radius: 10rpx;
- padding: 6px 9px;
- margin-left: 10rpx;
- line-height: 48rpx;
- }
- .card_search {
- display: flex;
- align-items: center;
- margin: 20rpx 0rpx;
- }
- .card_sign_in {
- margin-top: 30rpx;
- display: flex;
- }
- .scan_title {
- font-size: 20rpx;
- }
- .card_sweep {
- display: flex;
- flex-direction: column;
- align-items: center;
- flex: none;
- }
- .card_input {
- width: 100%;
- margin-left: 30rpx;
- }
- .line_title {
- color: red;
- }
- .card_high {
- margin-top: 30rpx;
- }
- .card_frequency {
- display: flex;
- flex-wrap: wrap;
- }
- .card_frequency_title {
- font-size: 32rpx;
- }
- .card_bottle {
- font-size: 30rpx;
- span {
- color: red;
- }
- }
- .item_coding {
- margin-top: 26rpx;
- width: 100%;
- padding-bottom: 15rpx;
- border-bottom: 2rpx solid #dfdfdf;
- }
- .card_empty {
- width: 100%;
- margin-top: 50rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .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
- }
- </style>
|