Browse Source

修复部分bug, 新增零担备货

dev
qb 12 months ago
parent
commit
0ee32c1b76
  1. 13
      api/user.js
  2. 29
      compoment/BasicContainer/BasicContainer.vue
  3. 2
      compoment/InputNum/InputNum.vue
  4. 26
      compoment/PullDownBox/PullDownBox.vue
  5. 8
      config/host.js
  6. 18
      pages.json
  7. 2
      pagesHome/pages/SelfPScanList/SelfPScanList.vue
  8. 41
      pagesHome/pages/StockUplist/StockUplist.vue
  9. 472
      pagesHome/pages/StockUplistByZero/StockUplistByZero.vue
  10. 9
      pagesHome/pages/StowageListDetails/StowageListDetails.vue
  11. 174
      pagesHome/pages/directGoMarket/directGoMarket.vue
  12. 8
      pagesHome/pages/directGoMarketDetails/directGoMarketDetails.vue
  13. 6
      pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue
  14. BIN
      unpackage/debug/android_debug.apk
  15. 2
      unpackage/dist/dev/app-plus/app-config-service.js
  16. 1145
      unpackage/dist/dev/app-plus/app-service.js
  17. 9
      unpackage/dist/dev/app-plus/manifest.json
  18. 2
      utils/request.js
  19. 5
      utils/style/common.scss

13
api/user.js

@ -2974,4 +2974,17 @@ export function postGoodsAllocation(data, loadingObj = {}) {
},
loadingObj
);
}
/**
* 获取运单 / 订单数据
*/
export function postUploadSignPhoto(data, loadingObj = {}) {
return request({
url: `logpm-trunkline/api/carsLoad/uploadSignPhoto`,
method: "post",
data
},
loadingObj
);
}

29
compoment/BasicContainer/BasicContainer.vue

@ -1,8 +1,8 @@
<template>
<view>
<!-- 顶部导航栏 -->
<u-navbar :title="title" placeholder :autoBack="false" @leftClick="leftClick" leftIconSize='35' bgColor='#d3832a'
leftIconColor='#ffffff' titleStyle='color:#ffffff'></u-navbar>
<u-navbar :title="props.option.title" placeholder :autoBack="false" @leftClick="leftClick" leftIconSize='35'
bgColor='#d3832a' leftIconColor='#ffffff' titleStyle='color:#ffffff'></u-navbar>
</view>
<view class="pageContainer">
@ -11,7 +11,7 @@
<!-- 插槽 -->
<template v-if="props.option.haveData">
<slot name="body"></slot>
<!-- <view v-show="isEnd" class="footer-end">
<!-- <view v-show="props.option.isEnd" class="footer-end">
到底啦 ~
</view> -->
</template>
@ -26,7 +26,6 @@
import {
defineProps,
ref,
toRefs,
watch
} from 'vue';
@ -52,12 +51,11 @@
}
})
let { title, isEnd, haveData } = toRefs(props.option)
if (!title) title = ref('货无忧')
if (!props.option.title) props.option.title = ref('货无忧')
//
if (isEnd === undefined) isEnd = ref(false)
if (props.option.isEnd === undefined) props.option.isEnd = ref(false)
//
const pullDownRefreshInitPage = props.option.pullDownRefreshInitPage || function () { console.log('刷新'); }
@ -80,7 +78,7 @@
//
onReachBottom(() => {
// ,
if (isEnd.value) {
if (props.option.isEnd) {
return uni.showToast({
icon: 'success',
title: '数据已加载完毕'
@ -117,18 +115,19 @@
} catch (e) {
//TODO handle the exception
} finally {
const timer = setTimeout(() => {
//
uni.stopPullDownRefresh()
//
clearTimeout(timer)
}, 300)
// const timer = setTimeout(() => {
//
uni.stopPullDownRefresh()
//
// clearTimeout(timer)
// }, 300)
}
})
//
function startPullDownRefresh() {
async function startPullDownRefresh() {
console.log('触发下拉')
uni.startPullDownRefresh()
}

2
compoment/InputNum/InputNum.vue

@ -15,7 +15,7 @@
//
maxNum: {
type: Number,
default: 999999
default: Infinity
},
//
minNum: {

26
compoment/PullDownBox/PullDownBox.vue

@ -1,6 +1,6 @@
<template>
<view class="PullDownBox">
<view @click="handleShowPullDown" class="Pulldown-title-container">
<view @click="() => handleShowPullDown()" class="Pulldown-title-container">
<!-- 标题显示内容 -->
<view class="Pulldown-title">
<slot name="title"></slot>
@ -9,26 +9,28 @@
color="#2979ff" size="28"></u-icon>
</view>
<view class="mt10">
<template v-if="isShowPullDownBox">
<template v-if="isShowPullDownBox">
<view class="Pulldown_content">
<slot name="content"></slot>
</template>
</view>
</view>
</template>
</view>
</template>
<script setup lang="ts">
import { ref } from 'vue';
import { ref, defineExpose } from 'vue';
/** 是否显示下拉框 */
const isShowPullDownBox = ref(false)
/** 是否显示下拉内容 */
const handleShowPullDown = () => {
isShowPullDownBox.value = !isShowPullDownBox.value
const handleShowPullDown = (flag = !isShowPullDownBox.value) => {
isShowPullDownBox.value = flag
}
defineExpose({ isShowPullDownBox, handleShowPullDown })
</script>
<style lang="scss" scoped>
@ -36,12 +38,12 @@
.PullDownBox {
background: #fff;
// margin-bottom: 10upx;
padding: 10upx;
border-radius: 15upx;
}
.Pulldown-title-container {
display: flex;
padding: 15upx;
}
.Pulldown-title {
@ -54,6 +56,10 @@
transition: all 0.2s;
}
.Pulldown_content {
padding: 10upx;
}
.normal {
transform: rotate(0deg);
}

8
config/host.js

@ -4,7 +4,7 @@
* 测试域名
* */
//测试域名s
const devhost = 'http://test.api.huo5you.com/'
// const devhost = 'http://test.api.huo5you.com/'
// lmy
// const devhost = 'http://192.168.10.123:8889/'
// zhy
@ -12,7 +12,7 @@ const devhost = 'http://test.api.huo5you.com/'
// xiaohei
// const devhost = 'http://192.168.3.18:13000/'
// tjj
// const devhost = 'http://192.168.3.14:13000/'
const devhost = 'http://192.168.3.14:13000/'
// cyz
// const devhost = 'http://192.168.6.169:9777/'
// const devhost = 'http://192.168.6.141:8777/'
@ -25,9 +25,9 @@ const devhost = 'http://test.api.huo5you.com/'
/**
* 正式域名
* */
const prohost = 'http://h5uapi.huitongys.com/'
// const prohost = 'http://h5uapi.huitongys.com/'
// const prohost = 'https://h5uapi.huitongys.com/' // 小程序
// const prohost = 'http://test.api.huo5you.com/'
const prohost = 'http://test.api.huo5you.com/'
/**
* 图片域名
* */

18
pages.json

@ -435,6 +435,24 @@
}
}
}, {
"path": "pages/StockUplistByZero/StockUplistByZero",
"style": {
"navigationBarTitleText": "零担备货列表",
"enablePullDownRefresh": true,
"onReachBottomDistance": 1,
"navigationStyle": "custom",
"app-plus": {
"animationDuration": 300,
"animationType": "zoom-fade-out",
"pullToRefresh": {
"support": true,
"color": "#d3832a", //
"style": "circle" //
}
}
}
}, {
"path": "pages/StockUplistScandetails/StockUplistScandetails",
"style": {

2
pagesHome/pages/SelfPScanList/SelfPScanList.vue

@ -136,7 +136,7 @@
import { pagedetails } from '@/interfaces/pagesHome/SelfPScanList'
import useSystemSettingsStore from '@/store/useSystemSettingsStore';
import { storeToRefs } from 'pinia';
import utils from '../../../utils/utils';
import utils from '@/utils/utils';
const { scanState } = storeToRefs(useSystemSettingsStore())
const option = {
title: '自提扫描',

41
pagesHome/pages/StockUplist/StockUplist.vue

@ -112,18 +112,10 @@
<!-- 零担 -->
<template v-if="orderStatus==3">
<view class="item" v-for="item in zeroOrderList">
<view class="toptitl">
<view class="toplft">
库位号{{item.allocation}}
<text v-if="item.stockQuantity">{{ `(${item.stockQuantity})`}}</text>
</view>
<view class="tis bf">
按件扫描
</view>
</view>
<view class="boxcontt">
<view>
<view><text style="color: #90A0AF;">托盘号</text>{{item.pallet}}</view>
<view @click.stop="goorderdetail(item)"><text
style="color: #90A0AF;">订单自编码</text>{{item.orderCode}}
</view>
@ -134,11 +126,15 @@
</view>
</view>
<view class="buttts">
<view class="anj" @click="showZeroOrderDetails(item)">
<!-- <view class="anj" @click="showZeroOrderDetails(item)">
{{item.completeStact?'查看明细':'去备货'}}
</view>
<view class="anj" @click="printOrderCode(item)">
</view> -->
<!-- <view class="anj" @click="printOrderCode(item)">
打印订单号
</view> -->
<view class="anj" @click="handleStockUpByZero(item)">
{{item.completeStact?'查看明细':'去备货'}}
</view>
</view>
</view>
@ -730,6 +726,21 @@
}
})
}
/** 零担备货 */
const handleStockUpByZero = (item) => {
console.log('item :>> ', item);
uni.navigateTo({
url: '/pagesHome/pages/StockUplistByZero/StockUplistByZero?info=' + JSON.stringify({
typeService: details.items.typeService,
stockupId: details.stockupId,
orderCode: item.orderCode,
stockArticleId: item.stockArticleId,
reservationId: details.reservationId,
})
})
}
const { user, orderList, orderStatus, stockList, zeroOrderList } = toRefs(details)
</script>
@ -778,17 +789,15 @@
>.item {
width: 686upx;
// height: 378upx;
background: #FFFFFF;
border-radius: 8upx;
display: flex;
flex-direction: column;
align-items: center;
// padding: 10upx 20upx;
box-sizing: border-box;
border-bottom: 1upx solid #ebebeb;
margin-bottom: 20upx;
padding-bottom: 30upx;
// padding-bottom: 30upx;
.toptitl {
width: 100%;

472
pagesHome/pages/StockUplistByZero/StockUplistByZero.vue

@ -0,0 +1,472 @@
<template>
<BasicContainer ref="basicContainer" :option="option">
<template #head>
<image mode="widthFix" class="bgimg" src="@/pagesHome/static/bgby.png"></image>
<view class="header">
<view class="">
<text>订单号</text>
<text>{{details.pageInfo.orderCode}}</text>
</view>
<view class="mt20 flex-c-sb">
<view class="text-center ">
<view>计划数量</view>
<view class="mt10 value ">{{details.data.planNum || 0}}</view>
</view>
<view class="text-center">
<view>已备数量</view>
<view class="mt10 value green">{{details.data.scanNum || 0}}</view>
</view>
<view class="text-center ">
<view>未备数量</view>
<view class="mt10 value red">{{(details.data.planNum || 0) - (details.data.scanNum || 0)}}</view>
</view>
</view>
</view>
</template>
<template #body>
<scroll-view scroll-y="true" @touchmove.stop :style="{height: details.scrollHeight}" class="scvew">
<view class="pullDown_container">
<!-- 在库数据 -->
<view class="mb20" v-if="details.trayList.length > 0">
<PullDownBox ref="PullDownRef1">
<template #title>
<view class="fwb align-center">
<text class="mr20">
</text>
<text>
{{
details.allocationTotal
}}
</text>
</view>
</template>
<template #content>
<block v-for="(item, index) in details.allocationList" :key="item.allocationid">
<view :class="{mb20:index !== details.allocationList.length - 1, item_contariner: true}">
<view class="flex-c-sb ">
<view class="">
<text class="mr10">库位</text>
<text>{{item.allocationName}}</text>
</view>
<view style="width: 35%;">
<text class="mr10">在库数</text>
<text>{{item.num}}</text>
</view>
</view>
<view class="mt20 flex">
<view>
备货数
</view>
<view class="flex1">
<InputNum v-model="item.scanNum" :maxNum="item.num"></InputNum>
</view>
</view>
</view>
</block>
</template>
</PullDownBox>
</view>
<!-- 在托数据 -->
<view class="mb20" v-if="details.trayList.length > 0">
<PullDownBox ref="PullDownRef2">
<template #title>
<view class="fwb align-center">
<text class="mr20">
</text>
<text>
{{
details.trayTotal
}}
</text>
</view>
</template>
<template #content>
<block v-for="(item, index) in details.trayList" :key="item.allocationid">
<view :class="{mb20:index !== details.trayList.length - 1, item_contariner: true}">
<view class="flex-c-sb ">
<view class="">
<text class="mr10">托盘名称</text>
<text>{{item.trayName}}</text>
</view>
<view style="width: 35%;">
<text class="mr10">在库数</text>
<text>{{item.num}}</text>
</view>
</view>
<view class="mt20 flex">
<view>
备货数
</view>
<view class="flex1">
<InputNum v-model="item.scanNum" :maxNum="item.num"></InputNum>
</view>
</view>
</view>
</block>
</template>
</PullDownBox>
</view>
<!-- 其它数据 -->
<view v-if="details.other.num">
<PullDownBox ref="PullDownRef3">
<template #title>
<view class="fwb align-center">
<text class="mr20">
</text>
<text>
{{
details.other.num
}}
</text>
</view>
</template>
<template #content>
<view class="{ item_contariner: true}">
<view>
<text class="mr10">在库数</text>
<text>{{details.other.num}}</text>
</view>
<view class="mt20 flex">
<view>
备货数
</view>
<view class="flex1">
<InputNum v-model="details.other.scanNum" :maxNum="details.other.num"></InputNum>
</view>
</view>
</view>
</template>
</PullDownBox>
</view>
</view>
</scroll-view>
</template>
</BasicContainer>
<tiplist ref="tiplists"></tiplist>
<!-- #ifdef APP -->
<saomiao2 :ishidestop="scanState !== 0"></saomiao2>
<!-- #endif -->
<BluetoothList ref="bluetoothList"></BluetoothList>
<!-- 切换库位 -->
<PopUp ref="ChangeStorage">
<view class="PopUpTitle">请扫描库位码</view>
</PopUp>
</template>
<script lang="ts" setup>
import {
onLoad,
onShow,
} from '@dcloudio/uni-app'
import {
postZeroStockUpData
} from '@/api/user.js'
import { reactive, ref, onMounted, nextTick } from "vue";
import useBluetoothStore from '@/store/useBluetoothStore.js';
import useSystemSettingsStore from '@/store/useSystemSettingsStore';
import utils from '@/utils/utils.js';
import { storeToRefs } from 'pinia';
const { scanState } = storeToRefs(useSystemSettingsStore())
const bluetoothList = ref(null)
const bluetoothStore = useBluetoothStore()
const { bluetoothInfo } = storeToRefs(bluetoothStore)
//
const tiplists = ref(null)
const basicContainer = ref(null)
/** 切换库位 */
const ChangeStorage = ref(null)
//
const option = {
title: '备货列表',
haveData: true,
async pullDownRefreshInitPage() {
await initpage()
}
}
//
let details = reactive({
pageInfo: {} as any,
scancode: '',
scrollHeight: '',
/** 其它 */
other: {},
/** 托盘 */
trayList: [],
trayTotal: 0,
/** 库位 */
allocationList: [],
allocationTotal: 0,
data: {} as any
})
const PullDownRef1 = ref()
const PullDownRef2 = ref()
const PullDownRef3 = ref()
onLoad((op) => {
details.pageInfo = JSON.parse(op.info)
console.log('details.pageInfo :>> ', details.pageInfo);
})
onShow(async () => {
// #ifdef APP
uni.$off('scancodedate')
uni.$on('scancodedate', function (code) {
if (code) {
details.scancode = code
scandata()
}
})
// #endif
//
await nextTick()
basicContainer.value.startPullDownRefresh()
})
onMounted(async () => {
await nextTick()
details.scrollHeight = await utils.getViewDistanceFormTop('.scvew')
})
async function initpage() {
try {
const submitData = {
typeService: details.pageInfo.typeService,
stockupId: details.pageInfo.stockupId,
allocationId: details.pageInfo.allocationId,
orderCode: details.pageInfo.orderCode,
stockArticleId: details.pageInfo.stockArticleId,
reservationId: details.pageInfo.reservationId,
}
const res = await postZeroStockUpData(submitData)
const { code, data } = res
if (code !== 200) return
details.data = data || {}
console.log('details.data :>> ', details.data);
details.other = details.data.other || []
details.allocationList = details.data.allocationList || []
details.trayList = details.data.trayList || []
details.allocationTotal = 0
for (var i = 0; i < details.allocationList.length; i++) {
details.allocationTotal += Number(details.allocationList[i].num)
}
details.trayTotal = 0
for (var i = 0; i < details.trayList.length; i++) {
details.trayTotal += Number(details.trayList[i].num)
}
await nextTick()
PullDownRef1.value.handleShowPullDown(true)
PullDownRef2.value.handleShowPullDown(true)
PullDownRef3.value.handleShowPullDown(true)
} catch (err) {
console.log('err :>> ', err);
//TODO handle the exception
} finally {
return null
}
}
/**
* */
async function scandata() {
}
const handlePrintZeroOrder = async (item, _inputValue) => {
// #ifdef APP
let _isReturn = false
for (let i = 0; i < _inputValue; i++) {
if (_isReturn) return
console.log('i :>> ', i);
let text = '! 0 200 200 333 1\r\n'
text += 'SETBOLD 2\r\n'
text += `T 56 0 0 0 ${item.orderCode}\r\n`
text += 'LINE 0 50 420 50 3\r\n'
text += `T 55 0 0 60 客户\r\n`
text += 'LINE 40 50 40 110 3\r\n'
text += `T 55 0 50 60 ${details.user.consignee || ''}\r\n`
text += 'LINE 40 80 420 80 3\r\n'
text += `T 55 0 50 90 ${details.user.goodsAreaName || ''}\r\n`
text += 'LINE 0 110 420 110 3\r\n'
text += `T 55 0 0 120 物料\r\n`
text += 'LINE 40 110 40 140 3\r\n'
text += `T 55 0 50 120 ${item?.materialName || ''}\r\n`
text += 'LINE 0 140 420 140 3\r\n'
text += 'B QR 150 150 M 2 U 4\r\n'
text += `MA,${item.orderCode}\r\n`
text += 'ENDQR\r\n'
text += `T 55 0 140 260 ${item.orderCode}\r\n`
text += 'FORM\r\n'
text += 'PRINT\r\n'
utils.initbl()
await utils.getbl(bluetoothInfo.value, text).catch(() => {
bluetoothList.value.setdetails({ isshow: true, success() { handlePrintZeroOrder(item, _inputValue) } })
_isReturn = true
})
}
if (_isReturn) return
// #endif
}
/**
* 打印订单码
*/
function printOrderCode(item) {
console.log('item :>> ', item);
// return
//
tiplists.value.setdetails({
title: '生成订单编号二维码数量',
isshow: true,
tipstate: 1,
// inpList,
inputtext: 1,
confirmTxt: '确定生成',
isonecheck: true,
success: async (deta) => {
//
const _inputValue = parseInt(deta.inputtext)
//
let _flag = true
if (_inputValue !== _inputValue) {
uni.showToast({
title: '请输入数字',
icon: 'none'
})
_flag = false
} else if (_inputValue <= 0) {
uni.showToast({
title: '数字必须大于零',
icon: 'none'
})
_flag = false
}
// , 退
if (!_flag) return tiplists.value.setdetails({ isshow: false, success() { handlePrintZeroOrder(item, _inputValue) } })
handlePrintZeroOrder(item, _inputValue)
tiplists.value.setdetails({ isshow: false })
},
cancel: (details) => {
tiplists.value.setdetails({ isshow: false })
},
close: (details) => {
tiplists.value.setdetails({ isshow: false })
}
})
}
</script>
<style lang="scss" scoped>
@import url(@/utils/style/common.scss);
//
.bgimg {
position: absolute;
width: 100% !important;
top: -180upx;
width: 0;
z-index: 1;
}
//
.header {
z-index: 10;
position: relative;
padding: 20upx;
background-color: #fff;
margin: 20upx;
// height: 80px;
border-radius: 10upx;
font-weight: bold;
.value {
color: #3c86ef;
&.red {
color: #f00;
}
&.green {
color: #7ba931;
}
}
}
//
.pullDown_container {
padding: 20upx;
}
:deep(.PullDownBox) {
background: var(--subjectColor);
border-radius: 10upx;
.Pulldown_content {
background: #fff;
}
}
:deep(.Pulldown-title-container) {
color: #fff;
.u-icon__icon {
color: #fff !important;
}
}
:deep(.inputNum) {
background: #f4f8fb;
border: none;
}
.item_contariner {
box-shadow: 0 0 10upx #acc;
padding: 10upx;
border-radius: 5upx;
}
</style>

9
pagesHome/pages/StowageListDetails/StowageListDetails.vue

@ -398,6 +398,10 @@
details.orderStatus === 2 ?
details.pageInfo.zeroList :
details.pageInfo.exceptionList
if (!details.isscan) return
utils.handleToast(details.pageInfo.realLoadingNumber)
details.isscan = false
}
} catch (e) {
//TODO handle the exception
@ -543,6 +547,7 @@
console.log('res :>> ', res);
if (res.code !== 200) return
details.isscan = false
//
basicContainer.value.startPullDownRefresh()
} catch (err) {
@ -634,10 +639,10 @@
console.log('_item :>> ', _item);
const submitData = {
orderCode: _item.orderCode,
carsLoadScanId: _item.id,
carsLoadScanIds: _item.id,
}
//
if (type === 1) submitData.carsLoadScanId = _item.loadScanId
if (type === 1) submitData.carsLoadScanIds = _item.loadScanId
const res = await postRemoveCarsLoadScan(submitData)
if (res.code !== 200) return
// #ifdef APP

174
pagesHome/pages/directGoMarket/directGoMarket.vue

@ -10,7 +10,7 @@
已签收
</view>
</view>
<!-- <view class="schbox">
<view class="schbox">
<view>配车日期</view>
<view @click='showtime(true)' class="inputsr">
<view class="timeInput">
@ -26,7 +26,7 @@
<view @click="init">
查询
</view>
</view> -->
</view>
</template>
<template #body>
@ -82,6 +82,7 @@
</view>
<view class="buts">
<view @click="goselscan(item)">签收</view>
<view v-if="details.tabBarCode === 20" @click="handleShowImg(item)">签收图片</view>
</view>
</view>
</view>
@ -89,6 +90,11 @@
</template>
</BasicContainer>
<PopUp ref="UploadImg">
<u-upload :fileList="details.imgFileList" @afterRead="handleUploadImg" @delete="deletePic" multiple></u-upload>
</PopUp>
<!-- 日期选择器 -->
<l-calendar v-model:value="show" :initStartDate='date[0]' :initEndDate='date[1]' @hide='showCalendar'
@change="onConfirm"></l-calendar>
@ -106,9 +112,11 @@
} from '@dcloudio/uni-app'
import {
postFinaSignOrderList,
postUploadSignPhoto
} from '@/api/user.js'
import { reactive, toRefs, ref, watchEffect, nextTick } from "vue";
import utils from '@/utils/utils.js';
import functions from '@/utils/functions.js';
//
const tip = ref<any>(null)
@ -116,6 +124,9 @@
const date = ref<number | string[]>([])
const basicContainer = ref(null)
// --
const UploadImg = ref()
const option = {
title: '直发商家未签收列表',
haveData: true,
@ -136,7 +147,8 @@
total: 0,
/** 滚动区高度 */
scrollHeight: '80vh',
tabBarCode: 10
tabBarCode: 10,
imgFileList: []
})
onShow(async () => {
@ -186,7 +198,7 @@
// details.datatime=(uni as any).$u.timeFormat(date.value[0], 'yyyy-mm-dd')+' '+(uni as any).$u.timeFormat(date.value[1], 'yyyy-mm-dd')
}
onLoad(() => {
date.value[0] = (uni as any).$u.timeFormat((new Date().valueOf() - 1000 * 60 * 60 * 24 * 3), 'yyyy-mm-dd')
date.value[0] = (uni as any).$u.timeFormat((new Date().valueOf() - 1000 * 60 * 60 * 24 * 7), 'yyyy-mm-dd')
date.value[1] = (uni as any).$u.timeFormat((new Date().valueOf()), 'yyyy-mm-dd')
details.current = 1
})
@ -196,13 +208,17 @@
}
async function initpage() {
try {
const _code = details.tabBarCode
if (date.value.length === 0) {
utils.handleToast('请选择签收时间')
details.recordsList = []
return
}
let submitData = {
pageNum: details.current,
pageSize: details.size,
taskTime_start: date.value[0] || '',
taskTime_end: date.value[1] || '',
enterTimeStartStr: date.value[0] || '',
enterTimeEndStr: date.value[1] || '',
//
signStatus: details.tabBarCode
}
@ -211,7 +227,6 @@
const { code, data } = response
console.log(response);
if (code !== 200 && code !== details.tabBarCode) return
if (details.current == 1) {
details.recordsList = response.data.records
@ -273,6 +288,111 @@
date.value = []
basicContainer.value.startPullDownRefresh()
}
/** 显示上传图片弹窗 */
const handleShowImg = async (item) => {
details.imgFileList = []
if (item.signPhotoList && item.signPhotoList.length > 0) {
for (let i = 0; i < item.signPhotoList.length; i++) {
const { photoUrl, id } = item.signPhotoList[i]
photoUrl && details.imgFileList.push({ url: photoUrl, id })
}
}
UploadImg.value.setDetails({
title: '上传图片',
showPopUp: true,
async success() {
if (details.imgFileList.length === 0) return uni.showToast({
icon: 'none',
title: '请上传图片再提交'
})
const submitData = {
signOrderId: item.id,
signPhotoList: []
}
for (let i = 0; i < details.imgFileList.length; i++) {
const value = details.imgFileList[i]
// id, ,
// if (value.id) continue
submitData.signPhotoList.push({
signOrderId: item.id,
photoType: 1,
photoUrl: value.url
})
}
const res = await postUploadSignPhoto(submitData)
const { code } = res
if (code !== 200) return
UploadImg.value.details.showPopUp = false
basicContainer.value.startPullDownRefresh()
}
})
}
/** 上传图片 */
const handleUploadImg = async (event) => {
try {
uni.showLoading({
title: '上传中',
mask: true
})
const writeArr = ['jpg', 'jpeg', 'png']
const PromiseAll = []
for (let i = 0; i < event.file.length; i++) {
const item = event.file[i]
const type = item.name.split('.').slice(-1)[0]
if (writeArr.indexOf(type) === -1) continue
console.log('type :>> ', type);
PromiseAll.push(functions.upfile(item.url))
}
const res = await Promise.all(PromiseAll)
console.log('res :>> ', res);
for (let i = 0; i < res.length; i++) {
const response = res[i]
const { link } = response
if (!link) continue
details.imgFileList.push({ url: link })
}
} catch (err) {
console.log('err :>> ', err);
//TODO handle the exception
} finally {
uni.hideLoading()
}
console.log('event :>> ', event);
}
/** 删除图片 */
const deletePic = (event) => {
console.log('event :>> ', event);
details.imgFileList.splice(event.index, 1)
}
const { datatime, recordsList, show } = toRefs(details)
</script>
@ -458,8 +578,8 @@
}
>view:nth-of-type(2) {
border: 2upx solid #f8113b;
color: #f8113b;
border: 2upx solid #69bd85;
color: #69bd85;
}
>view:nth-of-type(3) {
@ -504,4 +624,38 @@
color: #FFFFFF;
}
}
:deep(.u-upload__button) {
width: 4.5rem !important;
height: 4.5rem !important;
.u-icon__icon {
font-size: 1.5rem !important;
line-height: 1.5rem !important;
}
}
:deep(.u-upload__wrap__preview__image) {
width: 4.5rem !important;
height: 4.5rem !important;
}
:deep(.u-upload__deletable) {
width: 36upx;
height: 36upx;
.u-icon__icon {
font-size: 28upx !important;
line-height: 28upx !important;
}
}
:deep(uni-movable-view) {
z-index: 99999;
}
</style>

8
pagesHome/pages/directGoMarketDetails/directGoMarketDetails.vue

@ -504,10 +504,10 @@
details.datalist = details.orderStatus === 1 ?
details.signScanOrderList :
details.signScanOrderList || [] :
details.orderStatus === 2 ?
details.signScanZeroOrderList :
details.exceptionList
details.signScanZeroOrderList || [] :
details.exceptionList || []
// for (let i = 0; i < 1000; i++) {
// details.datalist.push({ orderCode: i, signPackageList: [] })
// }
@ -549,7 +549,7 @@
//
let returnContent = ''
for (let item of details.pageInfo.signScanOrderList) {
for (let item of details.signScanOrderList) {
let isBreak = false
for (let val of item.signPackageList) {
if (_scanCode === val.orderPackageCode) {

6
pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue

@ -723,7 +723,7 @@
const popUp_Details = ref(null)
//
onLoad((info) => {
onLoad(async (info) => {
console.log('info :>> ', info);
const infos = JSON.parse(info.info)
console.log('object :>> ', JSON.parse(info.info));
@ -731,6 +731,8 @@
details.pageType = infos.pageType
details.pageInfos = infos
await nextTick()
basicContainer.value.startPullDownRefresh()
})
onShow(async () => {
@ -755,8 +757,6 @@
// #endif
//
// initPage()
await nextTick()
basicContainer.value.startPullDownRefresh()
})
/** 请求页面数据 */

BIN
unpackage/debug/android_debug.apk

Binary file not shown.

2
unpackage/dist/dev/app-plus/app-config-service.js vendored

File diff suppressed because one or more lines are too long

1145
unpackage/dist/dev/app-plus/app-service.js vendored

File diff suppressed because it is too large Load Diff

9
unpackage/dist/dev/app-plus/manifest.json vendored

@ -5,7 +5,7 @@
"iPad"
],
"id": "__UNI__EB22F37",
"name": "货无忧",
"name": "货无忧测试版",
"version": {
"name": "1.1.27",
"code": 1127
@ -99,12 +99,7 @@
"<uses-permission android:name=\"android.permission.VIBRATE\"/>",
"<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
"<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
],
"minSdkVersion": "",
"abiFilters": [
"arm64-v8a"
],
"targetSdkVersion": ""
]
},
"apple": {
"dSYMs": false,

2
utils/request.js

@ -313,6 +313,7 @@ const service = async (params, loadingObj) => {
} else isLogin = false
console.log('params :>> ', params);
const _key = params.url + JSON.stringify(params.data)
// 防止重复请求
if (requestObj[_key]) return new Promise(resolve => resolve({
code: 4000
@ -320,7 +321,6 @@ const service = async (params, loadingObj) => {
// 记录请求参数
requestObj[_key] = params
// 如果正在刷新token则不请求, 等token刷新成功后再请求
console.log('_isRefreshToken :>> ', _isRefreshToken);
if (_isRefreshToken._isRefreshToken) {
await _isRefreshToken._isRefreshToken
return HandleRequest(params, _key, loadingObj)

5
utils/style/common.scss

@ -20,6 +20,11 @@
justify-content: space-around;
}
.align-center{
display: flex;
align-items: center;
}
.flex1{
flex: 1;
}

Loading…
Cancel
Save