|
@@ -12,6 +12,7 @@
|
|
|
</el-select>
|
|
|
<el-checkbox v-hasPermission=" `acquisitionManagement.acquisition.allow`" v-model="checked"
|
|
|
@change="allowEdit" :disabled="warehouseList.length==0">允许手动编辑重量</el-checkbox>
|
|
|
+ 利率:{{interestRate}}
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -107,7 +108,8 @@
|
|
|
warehouseList: [],
|
|
|
userJurisdiction: false,
|
|
|
userJurisdictionAllow: true,
|
|
|
- warehouseName: ''
|
|
|
+ warehouseName: '',
|
|
|
+ interestRate:0
|
|
|
}
|
|
|
},
|
|
|
activated() {
|
|
@@ -171,6 +173,8 @@
|
|
|
let _obj = this.warehouseList.find(item => {
|
|
|
return item.id === this.selectVal
|
|
|
})
|
|
|
+ console.log(_obj)
|
|
|
+ this.interestRate=_obj.interestRate
|
|
|
if (_obj.allowEdit == 1) {
|
|
|
this.checked = true
|
|
|
} else {
|