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" : "龙电宁鑫", "name" : "龙电宁鑫",
"appid" : "__UNI__759339F", "appid" : "__UNI__759339F",
"description" : "龙电宁鑫手持系统", "description" : "龙电宁鑫手持系统",
"versionName" : "1.0.7", "versionName" : "1.0.9",
"versionCode" : 107, "versionCode" : 109,
"transformPx" : false, "transformPx" : false,
/* 5+App */ /* 5+App */
"app-plus" : { "app-plus" : {

View File

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

View File

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