no message

This commit is contained in:
2025-04-03 13:19:57 +08:00
parent 95e2db8341
commit 6513e9d951
3 changed files with 12 additions and 4 deletions

View File

@@ -128,7 +128,7 @@
<script> <script>
import NavBar from '@/components/NavBar.vue' import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue' import SearchBox from '@/components/SearchBox.vue'
import {outStorageOrder, getBillNoInfo, storList, inStorageConfirm} from '@/utils/getData2.js' import {inStorageOrder, getBillNoInfo, storList, inStorageConfirm} from '@/utils/getData2.js'
export default { export default {
components: { components: {
NavBar, NavBar,
@@ -154,13 +154,13 @@
}, },
onLoad (options) { onLoad (options) {
this.title = options.title this.title = options.title
this._outStorageOrder() this._inStorageOrder()
this._storList() this._storList()
}, },
methods: { methods: {
/** 下拉框*/ /** 下拉框*/
async _outStorageOrder () { async _inStorageOrder () {
let res = await outStorageOrder() let res = await inStorageOrder()
this.options1 = [...res] this.options1 = [...res]
}, },
selectChange1 (e) { selectChange1 (e) {

View File

@@ -250,6 +250,10 @@ export const bindOrUnbind = (scode, bcode, mode) => request({
/** /**
* 单据入库 * 单据入库
*/ */
export const inStorageOrder = () => request({
method: 'GET',
url:'api/pda/inStorage/order'
})
export const getBillNoInfo = (id) => request({ export const getBillNoInfo = (id) => request({
url:'api/pda/inStorage/getBillNoInfo/' + id, url:'api/pda/inStorage/getBillNoInfo/' + id,
method: 'GET' method: 'GET'

View File

@@ -301,3 +301,7 @@ export const getBillNoInfo = (id) => {
] ]
return res return res
} }
export const inStorageOrder = () => {
let res = [{value: '1', text: 'a'},{"text": "直接调拨单", "value": "STK_TransferDirect"},{"text": "简单领料申请单","value": "ka7c19edf9d4b4b39b8cc4a06802163b0"},{"text": "其他出库单", "value": "STK_MisDelivery"}]
return res
}