Commit 3112a73e authored by 李苏's avatar 李苏 💬

1.04版本

parent ba4343bf
......@@ -2,8 +2,8 @@
"name" : "wcs",
"appid" : "__UNI__79C58F0",
"description" : "徐工道路系统功能",
"versionName" : "1.0.2",
"versionCode" : 102,
"versionName" : "1.0.4",
"versionCode" : 104,
"transformPx" : false,
/* 5+App特有相关 */
"app-plus" : {
......
......@@ -20,6 +20,7 @@
<view class="flex flex-wrap padding bg-grey white radio" style="position: relative;">
<view class="basis-sm margin-top-xs margin-bottom-xs radius">地码编号:<span>{{dminfo.mapdatacode}}</span></view>
<view class="basis-lg margin-top-xs margin-bottom-xs radius">工位名称:<span>{{dminfo.name}}</span></view>
<view class="basis-lg margin-top-xs margin-bottom-xs radius">工位状态:<span>{{dminfo.status|ztName}}</span></view>
</view>
</view>
<view class="padding flex align-center bg-white justify-around">
......@@ -38,6 +39,17 @@
apiEmptyGw
} from '@/api/dlapi.js'
export default {
filters:{
ztName(value){
let map={
'E':'空库',
'U':'存储',
'L':'锁定'
}
return map[value]
}
},
data() {
return {
loadshow:false,
......
......@@ -19,7 +19,9 @@
<view v-if="dminfo.id">
<view class="flex flex-wrap padding bg-grey white radio" style="position: relative;">
<view class="basis-sm margin-top-xs margin-bottom-xs radius">库位编号:<span>{{dminfo.code}}</span></view>
<view class="basis-lg margin-top-xs margin-bottom-xs radius">库位名称:<span>{{dminfo.name}}</span></view>
<view class="basis-lg margin-top-xs margin-bottom-xs radius">库位状态:<span>{{dminfo.name}}</span></view>
<view class="basis-lg margin-top-xs margin-bottom-xs radius">库位状态:<span>{{dminfo.zt|ztName}}</span></view>
</view>
</view>
<view class="padding flex align-center bg-white justify-around">
......@@ -38,6 +40,17 @@
emptyKwByCode
} from '@/api/dlapi.js'
export default {
filters:{
ztName(value){
let map={
'E':'空库',
'U':'存储',
'L':'锁定'
}
return map[value]
}
},
data() {
return {
loadshow:false,
......
......@@ -116,13 +116,14 @@
// this.apiQueryEmptyTpKw(this.pickerArray[index].id)
/* 做出托盘查询请求*/
this.apiQueryEmptyTpKw(this.pickerArray[this.selectedIndex].id)
},
onPickerChange_rqlb(event){
const index = event.detail.value
// 设置选中值名称
this.selectedIndex_rqlb=index
this.rqlb=this.rqlbArray[this.selectedIndex_rqlb].id
this.apiQueryEmptyTpKw(this.pickerArray[this.selectedIndex].id)
},
onPickerChange_gys(event){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment