Browse Source

修改盘点扫描任务排序

hella_online_20240829
lijuncheng 3 months ago
parent
commit
80b3042b18
  1. 2
      .env.hella14
  2. 2
      .env.hella9
  3. 4
      src/manifest.json
  4. 6
      src/pages/count/job/countJob.vue

2
.env.hella14

@ -5,7 +5,7 @@ VITE_BASE_URL_IMAGE=http://172.21.32.14:81/admin-api
VITE_TENANT='[{"text":"长春1379","value":1}]'
# 是否是测试环境
VITE_isDevelopment=true
VITE_isDevelopment=false
# 积木报表请求路径
VITE_JMREPORT_BASE_URL='http://172.21.32.14:90'

2
.env.hella9

@ -5,7 +5,7 @@ VITE_BASE_URL_IMAGE=http://172.22.32.9:81/admin-api
VITE_TENANT='[{"text":"成都1397","value":2},{"text":"长春2379","value":3}]'
# 是否是测试环境
VITE_isDevelopment=true
VITE_isDevelopment=false
# 积木报表请求路径
VITE_JMREPORT_BASE_URL='http://172.22.32.9:90'

4
src/manifest.json

@ -2,8 +2,8 @@
"name" : "wms",
"appid" : "__UNI__C9CF4BF",
"description" : "",
"versionName" : "1.0.12",
"versionCode" : 12,
"versionName" : "1.0.13",
"versionCode" : 13,
"transformPx" : false,
/* 5+App */
"app-plus" : {

6
src/pages/count/job/countJob.vue

@ -329,6 +329,8 @@
filters: filters,
pageNo: 1,
pageSize: 1000,
sort:"number",
by:"DESC"
}
getCountJobList(params).then(res => {
uni.hideLoading();
@ -344,9 +346,9 @@
}
})
if (resultList == 0) {
if (list.length == 0) {
that.showMessage('未查找到库位' + '【' + result.label.code + '】的盘点任务');
} else if (resultList == 1) {
} else if (list.length == 1) {
that.selectItem(list[0]);
}else {
that.$refs.jobList.openList(list)

Loading…
Cancel
Save