| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515 |
- <template>
- <gui-page :custom-header="true" :header-class="['gui-theme-background-color']">
- <template #gHeader>
- <view style="height:44px;" class="gui-flex gui-nowrap gui-rows gui-align-items-center">
- <!-- 使用组件实现返回按钮及返回首页按钮 -->
- <text style="font-size:44rpx;" class="gui-header-leader-btns gui-color-white font-icons"
- @tap="goBack"></text>
- <!-- 导航文本此处也可以是其他自定义内容 -->
- <text class="gui-h4 gui-blod gui-flex1 gui-text-center gui-ellipsis gui-color-white gui-primary-text"
- style="font-size: 1rem;">出货明细</text>
- <!-- 此处加一个右侧展位元素与左侧同宽,实现标题居中 -->
- <!-- 实际宽度请根据自己情况设置 -->
- <view style="width:40px;" />
- <!-- 如果右侧有其他内容可以利用条件编译和定位来实现-->
- </view>
- </template>
- <template #gBody>
- <view class="list-content">
- <view class="scan">
- <view class="scan-card">
- <uni-easyinput ref="easyinput" v-model="scanNumber"
- :disabled="parentData ? parentData.isItComplete : false" :input-border="false"
- :clearable="false" type="text" focus @focus="handleInputFocus" placeholder="扫描成品标签"
- @confirm="handleKeydown" />
- <text class="font-icons" @click="handleMapass"></text>
- </view>
- </view>
- <view v-if="dataList?.length > 0" class="list-panel">
- <div v-for="(item, key) in dataList" :id="'panel_'+item.id" :key="key" class="panel"
- @click="handleShowDetails(item)">
- <div :class="['panel-row', lightElement === item.id?'panel-animation':'']">
- <span>产品</span>
- <span>{{ item.productCode }}({{ item.productName }})</span>
- </div>
- <div class="panel-row">
- <span>订单</span>
- <span>{{ item.saleOrderNo }}</span>
- </div>
- <div class="panel-row">
- <span>应出货数量</span>
- <span>{{ item.planQty * 1 }}</span>
- </div>
- <div class="panel-row">
- <span>已出货数量</span>
- <span style="font-weight: bold;color: orange;">{{ item.sendQty * 1 }}</span>
- </div>
- </div>
- </view>
- <view v-else>
- <view class="bg-image">
- <image src="@/static/empty.png" mode="heightFix" />
- <text>这里什么都没有...</text>
- </view>
- </view>
- </view>
- <uni-popup ref="popup" background-color="#fff">
- <view class="popup-content">
- <view class="list-title" style="margin-bottom: 8px;">
- <span class="font-icons"
- style="font-size: 20px;color: #00a0e9;width: 40px;text-align: center;"></span>
- <span>已出明细</span>
- </view>
- <view v-if="demandDetailsList?.length > 0" class="list-panel" style="margin-top: 40px;">
- <div v-for="(item) in demandDetailsList" :key="item.id" class="panel">
- <uni-swipe-action>
- <!-- 基础用法 -->
- <uni-swipe-action-item :right-options="options" @click="handleRemoveDetail(item)">
- <template #left>
- <view />
- </template>
- <div class="panel-row">
- <span>箱码</span>
- <span>{{ item.boxNo }}</span>
- </div>
- <div class="panel-row">
- <span>数量</span>
- <span>{{ item.boxQty * 1 }}</span>
- </div>
- </uni-swipe-action-item>
- </uni-swipe-action>
- </div>
- </view>
- <view v-else>
- <view class="bg-image">
- <image src="@/static/empty.png" mode="heightFix" />
- <text>这里什么都没有...</text>
- </view>
- </view>
- </view>
- </uni-popup>
- <uni-popup ref="errorTip" type="dialog">
- <uni-popup-dialog type="error" cancel-text="关闭" confirm-text="确认" title="提示" :content="errorTipMessage"
- @confirm="handleCloseErrorTipsModal" @close="handleCloseErrorTipsModal" />
- </uni-popup>
- </template>
- </gui-page>
- </template>
- <script>
- import {
- defineComponent,
- nextTick,
- onBeforeMount,
- getCurrentInstance,
- ref
- } from 'vue'
- export default defineComponent({
- onLoad(options) {
- this.parentData = options.detail ? JSON.parse(options.detail) : {}
- console.log('页面加载,参数:', options) // 正常触发
- this.search()
- },
- setup() {
- const popup = ref()
- const errorState = ref(0)
- const easyinput = ref()
- const errorTip = ref('')
- const errorTipMessage = ref('')
- const dataList = ref([])
- const scanNumber = ref('')
- const parentData = ref({})
- const demandDetailsList = ref([])
- const rowObject = ref({})
- const lightElement = ref('')
- return {
- options: [{
- text: '删除',
- style: {
- backgroundColor: '#dd524d'
- }
- }],
- popup,
- easyinput,
- errorTip,
- errorState,
- errorTipMessage,
- lightElement,
- scanNumber,
- dataList,
- parentData,
- demandDetailsList,
- rowObject
- }
- },
- methods: {
- search() {
- uni.$reqGet('toOutDetailPage', {
- pageNo: 1,
- PageSize: 999,
- id: this.parentData.id ?? ''
- })
- .then(({
- code,
- data,
- msg
- }) => {
- if (code === 0) {
- this.dataList = data?.list ?? []
- } else {
- uni.showToast({
- title: msg,
- icon: 'none',
- duration: 2000
- })
- }
- })
- },
- saveProductData(data) {
- const submitParams = [{
- boxNo: data.qrCode,
- productCode: data.materialNo,
- boxQty: data.receiptQty,
- saleOrderDetailId: data.saleOrderDetailId,
- stockCode: data.erpStockId,
- locationCode: data.wmsStoreAreaId,
- areaCode: data.wmsStoreId
- }]
- uni.$reqPost('saveSaleOutOrderDetailBatch', submitParams)
- .then(({
- code,
- data,
- msg
- }) => {
- if (code === 0) {
- uni.showToast({
- title: '出货成功',
- icon: 'none',
- duration: 1000
- })
- this.setInputFocus()
- this.search()
- } else {
- // #ifdef APP-PLUS
- plus.device.beep(2)
- // #endif
- this.errorTipMessage = msg
- this.errorTip.open()
- this.errorState = 0
- }
- })
- },
- handleMapass() {
- if (this.parentData?.isItComplete) return
- // #ifdef APP-PLUS
- const mpaasScanModule = uni.requireNativePlugin('Mpaas-Scan-Module')
- mpaasScanModule.mpaasScan({
- // 扫码识别类型,参数可多选,qrCode、barCode,不设置,默认识别所有
- 'scanType': ['qrCode', 'barCode'],
- // 是否隐藏相册,默认false不隐藏
- 'hideAlbum': false
- },
- (ret) => {
- if (ret.resp_code === 1000) {
- uni.$reqGet('scanPrepareMaterial', {
- qrCode: ret.resp_result
- })
- .then(({
- code,
- data,
- msg
- }) => {
- if (code === 0) {
- let fdIndex = -1
- let saleOrderDetailId = ''
- this.dataList.forEach((res, index) => {
- if (res.productCode === data[0].materialNo) {
- fdIndex = index
- saleOrderDetailId = res.id
- }
- })
- if (fdIndex !== -1) {
- this.saveProductData({
- ...data[0],
- saleOrderDetailId
- })
- // 滚动到指定位置
- this.handleScrollPage(this.dataList[fdIndex]?.id)
- } else {
- // #ifdef APP-PLUS
- plus.device.beep(2)
- // #endif
- this.errorTipMessage = '请扫描正确的成品标签'
- this.errorTip.open()
- this.errorState = 0
- }
- } else {
- // #ifdef APP-PLUS
- plus.device.beep(2)
- // #endif
- this.errorTipMessage = msg
- this.errorTip.open()
- this.errorState = 0
- }
- })
- }
- })
- // #endif
- },
- handleKeydown(e) {
- uni.$reqGet('scanPrepareMaterial', {
- qrCode: e
- })
- .then(({
- code,
- data,
- msg
- }) => {
- if (code === 0) {
- let fdIndex = -1
- let saleOrderDetailId = ''
- dataList.value.forEach((res, index) => {
- if (res.productCode === data[0].materialNo) {
- fdIndex = index
- saleOrderDetailId = res.id
- }
- })
- if (fdIndex !== -1) {
- this.saveProductData({
- ...data[0],
- saleOrderDetailId
- })
- // 滚动到指定位置
- this.handleScrollPage(this.dataList[fdIndex]?.id)
- } else {
- // #ifdef APP-PLUS
- plus.device.beep(2)
- // #endif
- this.errorTipMessage = '请扫描正确的成品标签'
- this.errorTip.open()
- this.errorState = 0
- }
- } else {
- // #ifdef APP-PLUS
- plus.device.beep(2)
- // #endif
- this.errorTipMessage = msg
- this.errorTip.open()
- this.errorState = 0
- }
- })
- },
- handleScrollPage(id) {
- nextTick(() => {
- const obj = uni.createSelectorQuery().in(this).select(
- '#panel_' + id)
- this.lightElement = id
- obj.boundingClientRect(data => {
- if (data) {
- uni.pageScrollTo({
- scrollTop: data.top,
- duration: 100
- })
- }
- }).exec()
- })
- },
- handleShowDetails(ret) {
- uni.$reqGet('saleOutOrderDetailPage', {
- pageNo: 1,
- pageSize: 100,
- id: ret?.id
- })
- .then(({
- code,
- data,
- msg
- }) => {
- if (code === 0) {
- if (this.popup?.showPopup === false) {
- this.popup.open('bottom')
- }
- this.rowObject = ret
- this.demandDetailsList = data?.list ?? []
- } else {
- // #ifdef APP-PLUS
- plus.device.beep(2)
- // #endif
- this.errorTipMessage = msg
- this.errorTip.open()
- this.errorState = -1
- }
- })
- },
- handleRemoveDetail(ret) {
- if (this.rowObject?.planQty === this.rowObject?.sendQty || this.parentData.isItComplete) {
- uni.showToast({
- title: '订单已完成, 无法删除',
- icon: 'none',
- duration: 2000
- })
- return
- }
- uni.$reqDelete('deleteSaleOutOrderDetail', {
- id: ret.id ?? ''
- })
- .then(({
- code,
- data,
- msg
- }) => {
- if (code === 0) {
- uni.showToast({
- title: '删除成功',
- icon: 'none',
- duration: 2000
- })
- this.handleShowDetails(this.rowObject)
- this.search()
- } else {
- // #ifdef APP-PLUS
- plus.device.beep(2)
- // #endif
- this.errorTipMessage = msg
- this.errorTip.open()
- this.errorState = -1
- }
- })
- },
- goBack() {
- uni.$goBack('/pages/workbranch/production/shipmentMHT/shipmentPage')
- },
- setInputFocus() {
- this.scanNumber = ''
- this.easyinput.onBlur()
- this.easyinput.onFocus()
- },
- // 关闭错误信息弹窗
- async handleCloseErrorTipsModal() {
- this.errorTip.close()
- if (errorState.value === 0) {
- await this.setInputFocus()
- }
- },
- // 禁用软键盘
- handleInputFocus() {
- setTimeout(() => {
- uni.hideKeyboard()
- }, 100)
- },
- }
- })
- </script>
- <style lang="scss" scoped>
- .gui-header-leader-btns {
- color: black;
- font-size: 24px !important;
- }
- .list-content {
- margin-top: 80px;
- min-height: calc(100vh - 80px);
- background-color: #edeeee;
- }
- .input-200 {
- width: 200px;
- padding-left: 10px;
- }
- span,
- text {
- font-size: 12px;
- }
- .font-icons {
- width: 40px;
- font-size: 20px;
- text-align: right;
- }
- .scan {
- position: fixed;
- top: 66px;
- left: 0;
- height: 60px;
- width: 100%;
- margin: 12px 0;
- padding: 0 12px;
- box-sizing: border-box;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 2px solid rgba(237, 238, 238, 1);
- background-color: white;
- .scan-card {
- width: 100%;
- display: grid;
- grid-template-rows: 1fr;
- grid-template-columns: 7fr 2fr;
- align-items: center;
- input {
- height: 35px;
- line-height: 35px;
- }
- text {
- width: 100%;
- text-align: right;
- }
- }
- }
- .list-title {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 99999;
- height: 40px;
- line-height: 40px;
- width: calc(100% - 24px);
- padding: 0 12px;
- display: flex;
- align-items: center;
- font-size: 16px;
- font-weight: bold;
- border-top-left-radius: 16px;
- border-top-right-radius: 16px;
- border-bottom: 2px solid rgba(237, 238, 238, 1);
- background-color: white;
- }
- .popup-content {
- height: 75vh;
- overflow-y: scroll;
- background-color: #edeeee;
- }
- .custom-table {
- height: calc(100vh - 215px);
- min-height: 230px;
- margin: 5px 0;
- overflow-y: scroll;
- }
- .list-panel {
- margin-top: 66px;
- padding: 5px 8px;
- overflow-y: scroll;
- }
- .panel-animation {
- color: white !important;
- background-color: #00a0e9 !important;
- }
- </style>
|