|
|
|
@ -136,11 +136,16 @@ |
|
|
|
<el-input v-model="hsCodeModelData.hsCodeDesc" disabled ></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-col :span="6"> |
|
|
|
<el-form-item :label="'HS Code'" > |
|
|
|
<el-input v-model="hsCodeModelData.hsCode" disabled ></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="6"> |
|
|
|
<el-form-item :label="'品牌'"> |
|
|
|
<el-input v-model="hsCodeModelData.brand" disabled ></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<!-- <el-col :span="12"> |
|
|
|
<el-form-item > |
|
|
|
<template #label> |
|
|
|
@ -181,6 +186,15 @@ |
|
|
|
<el-input v-model="packageVolume" disabled ></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="8" v-if="isMhmBu(hsCodeModelData.buNo)"> |
|
|
|
<el-form-item :label="'单位'"> |
|
|
|
<el-input |
|
|
|
v-model="hsCodeModelData.ecssUmid" |
|
|
|
clearable |
|
|
|
placeholder="请输入单位"> |
|
|
|
</el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
</el-form> |
|
|
|
<el-footer style="height:40px;margin-top: 10px;text-align:center"> |
|
|
|
@ -224,6 +238,12 @@ |
|
|
|
align="center" |
|
|
|
label="HS Code"> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
prop="brand" |
|
|
|
header-align="center" |
|
|
|
align="center" |
|
|
|
label="品牌"> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
<el-footer style="height:40px;margin-top: 10px;text-align:center"> |
|
|
|
<el-button @click="hsCodeFlag = false">关闭</el-button> |
|
|
|
@ -756,10 +776,12 @@ |
|
|
|
partDesc: '', |
|
|
|
hsCode:'', |
|
|
|
hsCodeDesc:'', |
|
|
|
brand:'', |
|
|
|
packageNo:'', |
|
|
|
length: '', |
|
|
|
width: '', |
|
|
|
height: '' |
|
|
|
height: '', |
|
|
|
ecssUmid: '' |
|
|
|
}, |
|
|
|
currentRow:{ |
|
|
|
site:'', |
|
|
|
@ -810,6 +832,7 @@ |
|
|
|
hsCodeRowDblclick (row) { |
|
|
|
this.hsCodeModelData.hsCodeDesc = row.hsCodeDesc |
|
|
|
this.hsCodeModelData.hsCode = row.HsCode |
|
|
|
this.hsCodeModelData.brand = row.brand || row.Brand || '' |
|
|
|
this.hsCodeFlag = false |
|
|
|
}, |
|
|
|
|
|
|
|
@ -950,8 +973,17 @@ |
|
|
|
this.hsCodeModelData.length = row.boxLength/100 |
|
|
|
this.hsCodeModelData.width = row.boxWidth/100 |
|
|
|
this.hsCodeModelData.height = row.boxHeight/100 |
|
|
|
this.hsCodeModelData.brand = row.brand || row.Brand || '' |
|
|
|
this.hsCodeModelData.ecssUmid = row.ecssUmid || '' |
|
|
|
this.hsCodeModelFlag=true |
|
|
|
}, |
|
|
|
/** |
|
|
|
* 是否天线BU(04-MHM) |
|
|
|
*/ |
|
|
|
isMhmBu(buNo) { |
|
|
|
const currentBuNo = (buNo || '').toString().toUpperCase() |
|
|
|
return currentBuNo === '04-MHM' || currentBuNo === '04' |
|
|
|
}, |
|
|
|
changeData(row){ |
|
|
|
this.currentRow = JSON.parse(JSON.stringify(row)); |
|
|
|
this.refreshCurrentTabTable (); |
|
|
|
|