项目合规评估-项目,流程发起界面,将数据保存至草稿,从草稿进入 分解单来源显示不对Bug修改
This commit is contained in:
@@ -474,7 +474,12 @@ export default {
|
||||
saveLoading: false,
|
||||
fileType: '',
|
||||
bpnId: '',
|
||||
decomposeOptions: [], //分解单来源数据
|
||||
decomposeOptions: [
|
||||
{
|
||||
value: "BDR",
|
||||
label: '不带入'
|
||||
}
|
||||
], //分解单来源数据
|
||||
//表单的数据
|
||||
listForm: {
|
||||
projectNumber: "", //项目编号
|
||||
@@ -571,16 +576,16 @@ export default {
|
||||
});
|
||||
},
|
||||
typeList(row){
|
||||
this.decomposeOptions = []
|
||||
// this.decomposeOptions = []
|
||||
this.$http.get("SarStandItems/sar-stand-items/getFileType", {
|
||||
standId: row.standId
|
||||
}, {}, res => {
|
||||
this.decomposeOptions.push(
|
||||
{
|
||||
value: 'BDR',
|
||||
label: '不带入'
|
||||
}
|
||||
)
|
||||
// this.decomposeOptions.push(
|
||||
// {
|
||||
// value: "BDR",
|
||||
// label: '不带入'
|
||||
// }
|
||||
// )
|
||||
res.data.forEach(item => {
|
||||
this.decomposeOptions.push(item)
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user