|
@@ -88,12 +88,12 @@
|
|
computed: {
|
|
computed: {
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- // 复制
|
|
+ // 复制
|
|
- copyVin(){
|
|
+ copyVin(){
|
|
uni.setClipboardData({
|
|
uni.setClipboardData({
|
|
data: this.vinNumber||'',
|
|
data: this.vinNumber||'',
|
|
})
|
|
})
|
|
- },
|
|
+ },
|
|
message(title){
|
|
message(title){
|
|
uni.showToast({
|
|
uni.showToast({
|
|
icon:'none',
|
|
icon:'none',
|
|
@@ -102,11 +102,15 @@
|
|
},
|
|
},
|
|
// 查询详情
|
|
// 查询详情
|
|
getPageInfo(val){
|
|
getPageInfo(val){
|
|
|
|
+ uni.showLoading({
|
|
|
|
+ title: "正在加载..."
|
|
|
|
+ })
|
|
findShelfReplenishBill({sn:val}).then(res=>{
|
|
findShelfReplenishBill({sn:val}).then(res=>{
|
|
if(res.status==200){
|
|
if(res.status==200){
|
|
this.pageInfo=res.data||null
|
|
this.pageInfo=res.data||null
|
|
this.partList=res.data.clzReplenishBillDetailApiEntityList||[]
|
|
this.partList=res.data.clzReplenishBillDetailApiEntityList||[]
|
|
}
|
|
}
|
|
|
|
+ uni.hideLoading()
|
|
})
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|