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

1.04版本

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