This commit is contained in:
2025-03-10 15:54:07 +08:00
parent db7c315542
commit 546c193175
3 changed files with 6 additions and 6 deletions

View File

@@ -2,8 +2,8 @@
"name" : "龙电宁鑫",
"appid" : "__UNI__759339F",
"description" : "龙电宁鑫手持系统",
"versionName" : "1.0.7",
"versionCode" : 107,
"versionName" : "1.0.9",
"versionCode" : 109,
"transformPx" : false,
/* 5+App */
"app-plus" : {

View File

@@ -59,7 +59,7 @@
this.index1 = e.detail.value
},
async _queryOrderInfo () {
let res = await queryOrderInfo()
let res = await queryOrderInfo('1')
this.options = [...res.data]
this.options.map(el => {
this.$set(el, 'text', el.zc_point)
@@ -78,7 +78,7 @@
return
}
try {
let res = await temporaryStorage(this.index1, this.index)
let res = await temporaryStorage(this.options1[this.index1].value, this.index)
this.clearUp()
uni.showToast({
title: res.message,

View File

@@ -119,9 +119,9 @@ export const doClearPoint = (code) => request({
data: {point_code: code}
})
// 分切上料
export const queryOrderInfo = () => request({
export const queryOrderInfo = (type) => request({
url:'api/pda/slitter/queryOrderInfo',
data: {}
data: {type: type}
})
export const slitvehicleReturn = (code) => request({
url:'api/pda/slitter/vehicleReturn',