|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
<template> |
|
|
|
|
<BasicContainer :option="option"> |
|
|
|
|
<BasicContainer ref="basicContainer" :option="option"> |
|
|
|
|
<template #head> |
|
|
|
|
<!-- 主体内容 --> |
|
|
|
|
<view class="main"> |
|
|
|
@ -37,20 +37,25 @@
|
|
|
|
|
<!-- tabBar选项卡 --> |
|
|
|
|
<view class="tabBar"> |
|
|
|
|
<view :class="{'tabBar-item': true, 'active': tabBarCode === 1}" @click="handleTabBarCode(1)"> |
|
|
|
|
定制品 <text v-if='tabBarCode==1'>({{article.total}})</text> |
|
|
|
|
定制品({{article.total}}) |
|
|
|
|
</view> |
|
|
|
|
<view :class="{'tabBar-item': true, 'active': tabBarCode === 2}" @click="handleTabBarCode(2)"> |
|
|
|
|
零担<text v-if='tabBarCode==2'> ({{zero.total}})</text> |
|
|
|
|
零担({{zero.total}}) |
|
|
|
|
</view> |
|
|
|
|
<view :class="{'tabBar-item': true, 'active': tabBarCode === 3}" @click="handleTabBarCode(3)"> |
|
|
|
|
库存品<text v-if='tabBarCode==3'> ({{stock.total}})</text> |
|
|
|
|
库存品({{stock.total}}) |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
<!-- 控件 --> |
|
|
|
|
<view class="control"> |
|
|
|
|
<view class="button" @click="showControl = true" v-show="!showControl">批量操作</view> |
|
|
|
|
<template v-if="tabBarCode === 2"> |
|
|
|
|
<view class="button" @click="grounding" v-show="!showControl">添加订单</view> |
|
|
|
|
</template> |
|
|
|
|
<template v-else-if="tabBarCode === 3"> |
|
|
|
|
<view class="button" @click="grounding" v-show="!showControl">添加物料</view> |
|
|
|
|
</template> |
|
|
|
|
<template v-if="showControl"> |
|
|
|
|
<view class="button" @click="handleInvertSelection">反选</view> |
|
|
|
|
|
|
|
|
@ -234,7 +239,7 @@
|
|
|
|
|
onLoad, |
|
|
|
|
onHide, |
|
|
|
|
} from '@dcloudio/uni-app' |
|
|
|
|
import { ref, reactive, toRefs, watch } from "vue"; |
|
|
|
|
import { ref, reactive, toRefs, watch, onMounted } from "vue"; |
|
|
|
|
|
|
|
|
|
import utils from '@/utils/utils.js'; |
|
|
|
|
|
|
|
|
@ -255,15 +260,25 @@
|
|
|
|
|
haveData: true, |
|
|
|
|
async pullDownRefreshInitPage() { |
|
|
|
|
console.log('下拉刷新') |
|
|
|
|
// 页面信息清空 |
|
|
|
|
// 控件关闭 |
|
|
|
|
details.showControl = false |
|
|
|
|
// 渲染列表清空 |
|
|
|
|
details.renderList = [] |
|
|
|
|
// 定制品页面信息清空 |
|
|
|
|
article.articleList = [] |
|
|
|
|
// 零担页面信息清空 |
|
|
|
|
zero.zeroCheckList = [] |
|
|
|
|
// 库存品页面信息清空 |
|
|
|
|
stock.stockCheckList = [] |
|
|
|
|
return await initPage() |
|
|
|
|
}, |
|
|
|
|
async reachBottomInitPage() { |
|
|
|
|
console.log('触底加载') |
|
|
|
|
|
|
|
|
|
return true |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// 开启刷新 |
|
|
|
|
startPullDownRefresh: () => { }, |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
const details = reactive({ |
|
|
|
@ -378,13 +393,14 @@
|
|
|
|
|
|
|
|
|
|
const tiplists = ref(null) |
|
|
|
|
|
|
|
|
|
const basicContainer = ref(null) |
|
|
|
|
|
|
|
|
|
// 页面初始化执行回调 |
|
|
|
|
onLoad((info) => { |
|
|
|
|
details.allocationId = info.allocationId |
|
|
|
|
details.questId = info.questId |
|
|
|
|
console.log('info :>> ', info.marketName); |
|
|
|
|
details.marketName = JSON.parse(info.marketName) |
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
// 开启监听扫描 |
|
|
|
@ -575,7 +591,8 @@
|
|
|
|
|
const { code, msg } = res |
|
|
|
|
console.log('res :>> ', res); |
|
|
|
|
if (code === 200) { |
|
|
|
|
initPage() |
|
|
|
|
basicContainer.value.startPullDownRefresh() |
|
|
|
|
// initPage() |
|
|
|
|
utils.ttsspke(msg) |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
@ -587,6 +604,7 @@
|
|
|
|
|
function handleTabBarCode(code : number) { |
|
|
|
|
showControl.value = false |
|
|
|
|
tabBarCode.value = code |
|
|
|
|
initPage() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -925,15 +943,6 @@
|
|
|
|
|
function stockAdd(deta) { |
|
|
|
|
console.log('deta :>> ', deta); |
|
|
|
|
const { upform: { stock: { orderCode, stockNum, marketName, incomingBatch } } } = deta |
|
|
|
|
// if (!contractNumber) return uni.showToast({ |
|
|
|
|
// title: '请输入合同号', |
|
|
|
|
// icon: 'none' |
|
|
|
|
// }) |
|
|
|
|
|
|
|
|
|
// if (!orderPackageCode) return uni.showToast({ |
|
|
|
|
// title: '请输入或扫描包条码', |
|
|
|
|
// icon: 'none' |
|
|
|
|
// }) |
|
|
|
|
console.log('data :>> ', deta); |
|
|
|
|
const submitData = { |
|
|
|
|
questDetail: { |
|
|
|
|