|
@@ -71,7 +71,7 @@
|
|
</view>
|
|
</view>
|
|
<view class="c-row ">
|
|
<view class="c-row ">
|
|
<view class="title">货名</view>
|
|
<view class="title">货名</view>
|
|
- <view class="con-list">
|
|
|
|
|
|
+ <view class="con-list">
|
|
<!-- <view v-if="flag != '0'">
|
|
<!-- <view v-if="flag != '0'">
|
|
{{gridList.goodsName}}
|
|
{{gridList.goodsName}}
|
|
</view> -->
|
|
</view> -->
|
|
@@ -103,13 +103,21 @@
|
|
<view style="margin: 0px 0px 30rpx 10rpx;">复检备注</view>
|
|
<view style="margin: 0px 0px 30rpx 10rpx;">复检备注</view>
|
|
<textarea class='textarea-style' v-model='gridList.reMemo' placeholder="请输入复检备注" maxlength="300"></textarea>
|
|
<textarea class='textarea-style' v-model='gridList.reMemo' placeholder="请输入复检备注" maxlength="300"></textarea>
|
|
</view>
|
|
</view>
|
|
-
|
|
|
|
|
|
+ <view class="c-row" v-if="flag==1&&gridList.warehouseName=='鲅鱼圈金信库'">
|
|
|
|
+ <view class="title">车型</view>
|
|
|
|
+ <view class="con-list">
|
|
|
|
+ <view @click='carstatus = true'>{{gridList.carModel?gridList.carModel:'请选择车型'}}</view>
|
|
|
|
+ <u-picker :range="carModeList" range-key="constValue" @confirm='carPicker($event)' v-model="carstatus" mode="selector" >
|
|
|
|
+ </u-picker>
|
|
|
|
+ </view>
|
|
|
|
+
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
<view style='padding-bottom:300rpx;'>
|
|
<view style='padding-bottom:300rpx;'>
|
|
<view class='wrap'>
|
|
<view class='wrap'>
|
|
<view style='margin-right:10px;' class='flex justify-between align-item-center'>
|
|
<view style='margin-right:10px;' class='flex justify-between align-item-center'>
|
|
<view class='title_b'>化验信息</view>
|
|
<view class='title_b'>化验信息</view>
|
|
- <u-switch v-if='flag!=1' v-model="value" @change="change"></u-switch>
|
|
|
|
|
|
+ <view class='flex justify-between align-item-center'>补录:<u-switch activeColor="#22C572" v-if='flag==0' v-model="value" @change="change"></u-switch></view>
|
|
</view>
|
|
</view>
|
|
<view class="c-row ">
|
|
<view class="c-row ">
|
|
<view class="title">等级</view>
|
|
<view class="title">等级</view>
|
|
@@ -212,6 +220,7 @@
|
|
selector: [],
|
|
selector: [],
|
|
show1: false,
|
|
show1: false,
|
|
goodsName:false,
|
|
goodsName:false,
|
|
|
|
+ carstatus:false,
|
|
inputContent: '',
|
|
inputContent: '',
|
|
coverTransform: 'translateY(0px)',
|
|
coverTransform: 'translateY(0px)',
|
|
coverTransition: '0s',
|
|
coverTransition: '0s',
|
|
@@ -235,7 +244,8 @@
|
|
type: '潮粮',
|
|
type: '潮粮',
|
|
tidalGrainPrice: '',
|
|
tidalGrainPrice: '',
|
|
dryGrainPrice: '',
|
|
dryGrainPrice: '',
|
|
- carNumber:''
|
|
|
|
|
|
+ carNumber:'',
|
|
|
|
+ carModel:'',
|
|
},
|
|
},
|
|
managementType: '',
|
|
managementType: '',
|
|
warehouseName: '',
|
|
warehouseName: '',
|
|
@@ -244,6 +254,7 @@
|
|
companyId: 1,
|
|
companyId: 1,
|
|
current: 4,
|
|
current: 4,
|
|
value:false,
|
|
value:false,
|
|
|
|
+ carModeList:[],
|
|
gradeList: [{
|
|
gradeList: [{
|
|
key: 1,
|
|
key: 1,
|
|
value: '一等品'
|
|
value: '一等品'
|
|
@@ -325,6 +336,13 @@
|
|
})
|
|
})
|
|
}
|
|
}
|
|
})
|
|
})
|
|
|
|
+ this.$api.doRequest('get', 'commonSysParameter/getInfo', {
|
|
|
|
+ constId: 'QUA1'
|
|
|
|
+ }).then(res => {
|
|
|
|
+ if (res.data.data) {
|
|
|
|
+ that.carModeList=res.data.data
|
|
|
|
+ }
|
|
|
|
+ })
|
|
//质检货名下拉
|
|
//质检货名下拉
|
|
this.$api.doRequest('get', '/qualityInspectionManagement/api/goodsName', {
|
|
this.$api.doRequest('get', '/qualityInspectionManagement/api/goodsName', {
|
|
warehouseId: this.cangid
|
|
warehouseId: this.cangid
|
|
@@ -356,6 +374,9 @@
|
|
hidden(){
|
|
hidden(){
|
|
this.$refs.keyboard.open(false)
|
|
this.$refs.keyboard.open(false)
|
|
},
|
|
},
|
|
|
|
+ carPicker(e){
|
|
|
|
+ this.gridList.carModel=this.carModeList[e[0]].constValue
|
|
|
|
+ },
|
|
handleShowKeyboard(){
|
|
handleShowKeyboard(){
|
|
if(this.flag==0){
|
|
if(this.flag==0){
|
|
if(this.$refs.keyboard.open){
|
|
if(this.$refs.keyboard.open){
|