子卷质检需求
This commit is contained in:
@@ -11,6 +11,12 @@
|
|||||||
<search-box v-model="val1" />
|
<search-box v-model="val1" />
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="filter_item">
|
||||||
|
<view class="filter_label">管制点</view>
|
||||||
|
<view class="filter_input_wraper">
|
||||||
|
<uni-data-select v-model="index1" :localdata="options1" @change="selectChange1"></uni-data-select>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
<view class="filter_item">
|
<view class="filter_item">
|
||||||
<view class="filter_label">检验结果</view>
|
<view class="filter_label">检验结果</view>
|
||||||
<view class="filter_input_wraper">
|
<view class="filter_input_wraper">
|
||||||
@@ -38,8 +44,10 @@
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
val1: '',
|
val1: '',
|
||||||
options: [{value: '3', text: '合格品'}, {value: '4', text: '管制品'}],
|
options: [{value: '3', text: '合格品'}, {value: '4', text: '管制品'}, {value: '0', text: '空'}, {value: '1', text: '空载具'}],
|
||||||
index: '',
|
index: '',
|
||||||
|
options1: [{value: '1', text: '1'}, {value: '2', text: '2'}],
|
||||||
|
index1: '',
|
||||||
disabled: false
|
disabled: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
@@ -47,6 +55,9 @@
|
|||||||
selectChange (e) {
|
selectChange (e) {
|
||||||
this.index = e
|
this.index = e
|
||||||
},
|
},
|
||||||
|
selectChange1 (e) {
|
||||||
|
this.index1 = e
|
||||||
|
},
|
||||||
async _updatePackageInfo () {
|
async _updatePackageInfo () {
|
||||||
this.disabled = true
|
this.disabled = true
|
||||||
if (!this.val1 || !this.index) {
|
if (!this.val1 || !this.index) {
|
||||||
@@ -54,7 +65,7 @@
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
let res = await updatePackageInfo(this.index, this.val1)
|
let res = await updatePackageInfo(this.index, this.val1, this.index1)
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: res.message,
|
title: res.message,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
@@ -67,6 +78,7 @@
|
|||||||
clearUp () {
|
clearUp () {
|
||||||
this.val1 = ''
|
this.val1 = ''
|
||||||
this.index = ''
|
this.index = ''
|
||||||
|
this.index1 = ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -151,9 +151,9 @@ export const doInitShaftPoint = (code) => request({
|
|||||||
/**
|
/**
|
||||||
* 子卷质检
|
* 子卷质检
|
||||||
*/
|
*/
|
||||||
export const updatePackageInfo = (ivt, cn) => request({
|
export const updatePackageInfo = (ivt, cn, code) => request({
|
||||||
url:'api/twoPda/vehicle/updatePackageInfo',
|
url:'api/twoPda/vehicle/updatePackageInfo',
|
||||||
data: {ivt_status: ivt, container_name: cn}
|
data: {ivt_status: ivt, container_name: cn, pointCode: code}
|
||||||
})
|
})
|
||||||
/**
|
/**
|
||||||
* 纸管绑定
|
* 纸管绑定
|
||||||
|
|||||||
Reference in New Issue
Block a user