|
@@ -55,7 +55,7 @@
|
|
<text class="tit">仓库</text>
|
|
<text class="tit">仓库</text>
|
|
<view style="color: #ff0000; padding-left: 10rpx;">*</view>
|
|
<view style="color: #ff0000; padding-left: 10rpx;">*</view>
|
|
<view class="con-list">
|
|
<view class="con-list">
|
|
- <text>{{WarehouseInOutInfo.warehouseName}}</text>
|
|
|
|
|
|
+ <text @click=''>{{WarehouseInOutInfo.warehouseName}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="c-row b-b">
|
|
<view class="c-row b-b">
|
|
@@ -221,7 +221,6 @@ import upload from '@/components/upload.vue';
|
|
month: true,
|
|
month: true,
|
|
day: true,
|
|
day: true,
|
|
},
|
|
},
|
|
- time:'',
|
|
|
|
show:false
|
|
show:false
|
|
}
|
|
}
|
|
},
|
|
},
|
|
@@ -234,6 +233,9 @@ import upload from '@/components/upload.vue';
|
|
if(month+1<10){
|
|
if(month+1<10){
|
|
month="0"+(month+1)
|
|
month="0"+(month+1)
|
|
}
|
|
}
|
|
|
|
+ if(date1+1<10){
|
|
|
|
+ date1="0"+date1
|
|
|
|
+ }
|
|
return year+'-'+month+"-"+date1
|
|
return year+'-'+month+"-"+date1
|
|
},
|
|
},
|
|
startDate() {
|
|
startDate() {
|
|
@@ -245,6 +247,14 @@ import upload from '@/components/upload.vue';
|
|
return new Date()
|
|
return new Date()
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ onShow(){
|
|
|
|
+ this.$api.doRequest('get', '/warehouseBaseInfo/selectWarehouse', {compId:'2710b21efc1e4393930c5dc800010dc4',warehouseType:1,}).then(res => {
|
|
|
|
+ console.log(res)
|
|
|
|
+ })
|
|
|
|
+ this.$api.doRequest('get', '/warehouseBaseInfo/getWarehouse', {compId:'',warehouseType:1,}).then(res => {
|
|
|
|
+ console.log(res)
|
|
|
|
+ })
|
|
|
|
+ },
|
|
onLoad(option) {
|
|
onLoad(option) {
|
|
this.WarehouseInOutInfo.contractNo = option.contractNo
|
|
this.WarehouseInOutInfo.contractNo = option.contractNo
|
|
this.WarehouseInOutInfo.goodsName = option.goodsName
|
|
this.WarehouseInOutInfo.goodsName = option.goodsName
|