|
@@ -86,10 +86,10 @@
|
|
|
</ws-form-item>
|
|
|
<el-button type="primary" v-if="index != 0" @click="openPort">重新获取</el-button>
|
|
|
<div class="formItem">
|
|
|
- <!-- <ws-form-item label="扣重(公斤)" span="1" prop="buckleWeightRatio" v-if="information == '皮重'">
|
|
|
+ <ws-form-item label="扣重(公斤)" span="1" prop="buckleWeightRatio" v-if="information == '皮重' && paramType == '2'">
|
|
|
<ws-input type="number" @mousewheel.native.prevent v-model="weighingList.buckleMiscellaneous" @input="calculation" placeholder="请输入扣重"
|
|
|
maxlength="100" size="small" />
|
|
|
- </ws-form-item> -->
|
|
|
+ </ws-form-item>
|
|
|
|
|
|
<ws-form-item label="净重(公斤)" span="1" prop="netWeight" v-if="information == '皮重'">
|
|
|
<ws-input type="number" @mousewheel.native.prevent v-model="weighingList.netWeight" placeholder="请输入净重" maxlength="100" size="small"
|
|
@@ -98,7 +98,7 @@
|
|
|
</div>
|
|
|
</ws-info-table>
|
|
|
<div class="but">
|
|
|
- <el-button @click="cancel" type="primary">取消</el-button>
|
|
|
+ <el-button @click="cancel" type="primary">关闭</el-button>
|
|
|
<el-button @click="print" v-if="this.information == '毛重'" type="primary">保存</el-button>
|
|
|
<el-button @click="print" v-if="this.information == '皮重'" type="primary">保存并打印</el-button>
|
|
|
</div>
|
|
@@ -205,10 +205,14 @@
|
|
|
param: 9600,
|
|
|
monitorUrl1: '',
|
|
|
monitorUrl2: '',
|
|
|
+ cangid:'',
|
|
|
+ paramType:'1'
|
|
|
}
|
|
|
},
|
|
|
activated() {
|
|
|
console.log(this.common.name)
|
|
|
+ this.cangid = this.$route.query.cangid
|
|
|
+ this.paramType = this.$route.query.paramType
|
|
|
this.getList()
|
|
|
this.tpyeNo = this.$route.query.tpyeNo
|
|
|
this.weighingList.number = this.$route.query.number
|
|
@@ -252,11 +256,6 @@
|
|
|
this.pageSize = val
|
|
|
this.getList()
|
|
|
},
|
|
|
- handleCurrentChange(val) {
|
|
|
- this.currentPage = val
|
|
|
- console.log(`当前页: ${val}`)
|
|
|
- this.getList()
|
|
|
- },
|
|
|
getList() {
|
|
|
// 货名
|
|
|
getinspectLookGoods({
|
|
@@ -359,7 +358,9 @@
|
|
|
this.index = val
|
|
|
if (this.information == '皮重') {
|
|
|
this.information = '毛重'
|
|
|
+ this.tpyeNo = 1
|
|
|
} else {
|
|
|
+ this.tpyeNo = 2
|
|
|
this.information = '皮重'
|
|
|
}
|
|
|
this.getList()
|
|
@@ -375,6 +376,7 @@
|
|
|
weight: val.grossWeight
|
|
|
}
|
|
|
this.weighingList = val;
|
|
|
+ this.paramType = val.qualityInspectionManagement.paramType
|
|
|
},
|
|
|
async closePort() {
|
|
|
console.log('closePort');
|
|
@@ -477,9 +479,9 @@
|
|
|
},
|
|
|
closePrint() {
|
|
|
this.isShowPrint = false
|
|
|
- this.$router.push({
|
|
|
- path: 'weighingManagement'
|
|
|
- })
|
|
|
+ // this.$router.push({
|
|
|
+ // path: 'weighingManagement'
|
|
|
+ // })
|
|
|
},
|
|
|
print() {
|
|
|
if (!this.weighingList.grossWeight) {
|
|
@@ -613,7 +615,7 @@
|
|
|
title: '成功',
|
|
|
message: '保存成功',
|
|
|
})
|
|
|
- this.$router.go(-1)
|
|
|
+ // this.$router.go(-1)
|
|
|
})
|
|
|
.catch((response) => {
|
|
|
// EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
|