|
@@ -77,6 +77,21 @@
|
|
size="small"
|
|
size="small"
|
|
/>
|
|
/>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
|
|
+ <!--其他负责人-->
|
|
|
|
+ <ws-form-item label="其他负责人" v-if="warehouseType == 1" span="1" prop="otherPersonCharge">
|
|
|
|
+ <el-select
|
|
|
|
+ v-model="deptBudgetList.otherPersonCharge"
|
|
|
|
+ placeholder="请选择其他负责人"
|
|
|
|
+ multiple
|
|
|
|
+ >
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in options"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.staffName"
|
|
|
|
+ :value="item.staffName"
|
|
|
|
+ />
|
|
|
|
+ </el-select>
|
|
|
|
+ </ws-form-item>
|
|
<!--仓库所在地-->
|
|
<!--仓库所在地-->
|
|
<ws-form-item label="仓库所在地" span="1" prop="warehouseCity">
|
|
<ws-form-item label="仓库所在地" span="1" prop="warehouseCity">
|
|
<el-cascader
|
|
<el-cascader
|
|
@@ -504,6 +519,7 @@ export default {
|
|
// this.fileList = this._getFileList(this.deptBudgetList.addressUrl)
|
|
// this.fileList = this._getFileList(this.deptBudgetList.addressUrl)
|
|
// }
|
|
// }
|
|
this.addressUrls = this.deptBudgetList.addressUrl.split(',')
|
|
this.addressUrls = this.deptBudgetList.addressUrl.split(',')
|
|
|
|
+ this.deptBudgetList.otherPersonCharge=this.deptBudgetList.otherPersonCharge.split(',')
|
|
this.addressUrls.pop()
|
|
this.addressUrls.pop()
|
|
})
|
|
})
|
|
},
|
|
},
|
|
@@ -636,6 +652,7 @@ export default {
|
|
this.deptBudgetList.baseId = this.baseId
|
|
this.deptBudgetList.baseId = this.baseId
|
|
this.deptBudgetList.compId = this.compId
|
|
this.deptBudgetList.compId = this.compId
|
|
this.deptBudgetList.contractType = 1
|
|
this.deptBudgetList.contractType = 1
|
|
|
|
+ this.deptBudgetList.otherPersonCharge=this.deptBudgetList.otherPersonCharge.toString()
|
|
edit(this.deptBudgetList)
|
|
edit(this.deptBudgetList)
|
|
.toPromise()
|
|
.toPromise()
|
|
.then((response) => {
|
|
.then((response) => {
|