|
@@ -27,9 +27,12 @@
|
|
|
<div class="basicInformation">
|
|
|
<h2>
|
|
|
{{ this.deptBudgetList1.warehouseName }}库
|
|
|
- <span class="position">
|
|
|
+ <span class="position" v-show="this.$route.query.warehouseType == 1">
|
|
|
{{ this.deptBudgetList1.binNumber }}仓位
|
|
|
</span>
|
|
|
+ <span v-show="this.$route.query.warehouseType == 2">
|
|
|
+ (临)
|
|
|
+ </span>
|
|
|
</h2>
|
|
|
<div class="small-title">基本信息</div>
|
|
|
<ws-info-table>
|
|
@@ -143,7 +146,7 @@
|
|
|
@change="selectstorageType"
|
|
|
>
|
|
|
<ws-option
|
|
|
- v-for="item in storageType"
|
|
|
+ v-for="item in deliveryType"
|
|
|
:key="item.constKey"
|
|
|
:label="item.constValue"
|
|
|
:value="item.constValue"
|
|
@@ -853,18 +856,12 @@ export default {
|
|
|
})
|
|
|
// 类型
|
|
|
if (this.$route.query.warehouseType == '1') {
|
|
|
- pullDown({ constId: 'CON5' })
|
|
|
+ pullDown({ constId: 'CON6' })
|
|
|
.toPromise()
|
|
|
.then((response) => {
|
|
|
- this.storageType = response
|
|
|
+ this.deliveryType = response
|
|
|
})
|
|
|
} else if (this.$route.query.warehouseType == '2') {
|
|
|
- //临时库入库类型
|
|
|
- pullDown({ constId: 'WARE1' })
|
|
|
- .toPromise()
|
|
|
- .then((response) => {
|
|
|
- this.storageType = response
|
|
|
- })
|
|
|
//临时库出库类型
|
|
|
pullDown({ constId: 'WARE2' })
|
|
|
.toPromise()
|