|
|
|
@ -45,7 +45,8 @@
|
|
|
|
style="width:100%;display:flex;align-items:center;justify-content:space-between;flex-direction: column">
|
|
|
|
style="width:100%;display:flex;align-items:center;justify-content:space-between;flex-direction: column">
|
|
|
|
<div class="carousel-page"
|
|
|
|
<div class="carousel-page"
|
|
|
|
v-if="columnItem.row == checkObj.row && columnItem.column == checkObj.column">
|
|
|
|
v-if="columnItem.row == checkObj.row && columnItem.column == checkObj.column">
|
|
|
|
<p class="carousel-page-title" @click="goHistory">工单号:{{checkObj.orderNum}}</p>
|
|
|
|
<p class="carousel-page-title" @click="goHistory(checkObj.orderNum)" v-if="checkObj.orderNum">工单号:{{checkObj.orderNum}}</p>
|
|
|
|
|
|
|
|
<p class="carousel-page-title" @click="goHistory()" v-else>工单号:暂无</p>
|
|
|
|
<div class="carousel-page-content">
|
|
|
|
<div class="carousel-page-content">
|
|
|
|
<div class="img-box">
|
|
|
|
<div class="img-box">
|
|
|
|
<img
|
|
|
|
<img
|
|
|
|
@ -132,7 +133,7 @@
|
|
|
|
style="width:100%;display:flex;align-items:center;justify-content:space-between;flex-direction: column">
|
|
|
|
style="width:100%;display:flex;align-items:center;justify-content:space-between;flex-direction: column">
|
|
|
|
<div class="carousel-page"
|
|
|
|
<div class="carousel-page"
|
|
|
|
v-if="listrow == row && listcolumn == column">
|
|
|
|
v-if="listrow == row && listcolumn == column">
|
|
|
|
<p class="carousel-page-title" @click="goHistory">工单号:暂无</p>
|
|
|
|
<p class="carousel-page-title" @click="goHistory()">工单号:暂无</p>
|
|
|
|
<div class="carousel-page-content">
|
|
|
|
<div class="carousel-page-content">
|
|
|
|
<div class="img-box">
|
|
|
|
<div class="img-box">
|
|
|
|
<div
|
|
|
|
<div
|
|
|
|
@ -318,6 +319,8 @@ export default {
|
|
|
|
console.log(value)
|
|
|
|
console.log(value)
|
|
|
|
this.select = value
|
|
|
|
this.select = value
|
|
|
|
this.id = value
|
|
|
|
this.id = value
|
|
|
|
|
|
|
|
this.row = 1
|
|
|
|
|
|
|
|
this.column =1
|
|
|
|
console.log(JSON.stringify(this.checkObj))
|
|
|
|
console.log(JSON.stringify(this.checkObj))
|
|
|
|
this.getStreetList()
|
|
|
|
this.getStreetList()
|
|
|
|
for (var i = 0; i < this.listData.length; i++) {
|
|
|
|
for (var i = 0; i < this.listData.length; i++) {
|
|
|
|
@ -339,8 +342,6 @@ export default {
|
|
|
|
this.selectType2 = 'out'
|
|
|
|
this.selectType2 = 'out'
|
|
|
|
this.getStockInfo(1, 1, this.shelveId)
|
|
|
|
this.getStockInfo(1, 1, this.shelveId)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
@ -480,9 +481,10 @@ export default {
|
|
|
|
this.visible = visible
|
|
|
|
this.visible = visible
|
|
|
|
this.modelData = data
|
|
|
|
this.modelData = data
|
|
|
|
},
|
|
|
|
},
|
|
|
|
goHistory(){
|
|
|
|
goHistory(orderNum){
|
|
|
|
const href = this.$router.resolve({
|
|
|
|
const href = this.$router.resolve({
|
|
|
|
name: 'historyMonitoring'
|
|
|
|
name: 'historyMonitoring',
|
|
|
|
|
|
|
|
params:{orderNum:orderNum}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
window.open(href.href, '_blank');
|
|
|
|
window.open(href.href, '_blank');
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|