|
@@ -54,7 +54,7 @@
|
|
|
@change="selectstaff"
|
|
|
>
|
|
|
<el-option
|
|
|
- v-for="item in personCharge"
|
|
|
+ v-for="item in options"
|
|
|
:key="item.value"
|
|
|
:label="item.staffName"
|
|
|
:value="item.staffName"
|
|
@@ -230,7 +230,6 @@ export default {
|
|
|
data() {
|
|
|
let self = this
|
|
|
return {
|
|
|
- staffList: [],
|
|
|
deptBudgetList: {
|
|
|
totalStorage: 0,
|
|
|
},
|
|
@@ -242,6 +241,8 @@ export default {
|
|
|
window: '',
|
|
|
radio: 1,
|
|
|
personCharge: [],
|
|
|
+ options: [],
|
|
|
+ staffList: [],
|
|
|
polygons: [
|
|
|
{
|
|
|
pName: 'Geolocation', //定位
|
|
@@ -280,6 +281,7 @@ export default {
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
+
|
|
|
appendixIdsAdd: '',
|
|
|
size: 10,
|
|
|
value1: '',
|
|
@@ -601,8 +603,8 @@ export default {
|
|
|
this.deptBudgetList.warehousePositionInfoList =
|
|
|
this.freightspace
|
|
|
this.deptBudgetList.totalStorage = this.totalStorage
|
|
|
- if(this.radio == 2){
|
|
|
- this.deptBudgetList.warehousetype ==2
|
|
|
+ if (this.radio == 2) {
|
|
|
+ this.deptBudgetList.warehousetype == 2
|
|
|
}
|
|
|
|
|
|
increase(this.deptBudgetList)
|
|
@@ -677,8 +679,8 @@ export default {
|
|
|
.toPromise()
|
|
|
.then((response) => {
|
|
|
// this.agent = response
|
|
|
- // this.options = response
|
|
|
- // this.staffList = response
|
|
|
+ this.options = response
|
|
|
+ this.staffList = response
|
|
|
this.personCharge = response
|
|
|
})
|
|
|
},
|