Commit 81a00218 authored by 黄奎's avatar 黄奎
parents e1a1b079 23f54f40
...@@ -1065,6 +1065,8 @@ ...@@ -1065,6 +1065,8 @@
<el-radio @change="YfSelect1" style="padding-bottom:10px" class="yfradio" :label="1"> <el-radio @change="YfSelect1" style="padding-bottom:10px" class="yfradio" :label="1">
教育表单 教育表单
</el-radio> </el-radio>
<el-radio @change="YfSelect1" v-for="(option, key) in customFormList" :key="key" :label="option.Id" class="yfradio" style="padding-bottom:10px">{{ option.FormName }}</el-radio>
</el-radio-group> </el-radio-group>
</div> </div>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
...@@ -1126,6 +1128,7 @@ ...@@ -1126,6 +1128,7 @@
return { return {
input:'', input:'',
ComTreeList: [], ComTreeList: [],
customFormList:[],
thisType: 0, thisType: 0,
tableData: [], tableData: [],
SpecificationList: [], SpecificationList: [],
...@@ -1357,12 +1360,14 @@ ...@@ -1357,12 +1360,14 @@
}, },
mounted() { mounted() {
this.$refs.ue.loadUe(); this.$refs.ue.loadUe();
this.getCustomFormList();
if (this.$route.query.GoodsId) { if (this.$route.query.GoodsId) {
this.GoodsId = this.$route.query.GoodsId; this.GoodsId = this.$route.query.GoodsId;
this.getData(); this.getData();
} else { } else {
this.getTree(); this.getTree();
} }
if (this.currentUserInfo.IsOpenSchool == 0) { if (this.currentUserInfo.IsOpenSchool == 0) {
this.isShowPlat = false this.isShowPlat = false
} else { } else {
...@@ -1470,6 +1475,25 @@ ...@@ -1470,6 +1475,25 @@
} }
}); });
}, },
getCustomFormList() {
let msg = {
FormType:0,
FormName:"",
};
this.apipost("/api/CustomForm/GetCustomFormList", msg, res => {
this.loading = false;
if (res.data.resultCode == 1) {
this.customFormList=res.data.data;
console.log("getCustomFormList", this.customFormList);
}
// var newList= { Id:'1', FormName:'教育表单'}
// this.customFormList.unshift(newList)
// var newList= { Id:'0', FormName:'默认商城'}
// this.customFormList.unshift(newList)
});
},
TbaleSelectionChange3(val) { TbaleSelectionChange3(val) {
this.xxList = val; this.xxList = val;
}, },
...@@ -2008,13 +2032,21 @@ ...@@ -2008,13 +2032,21 @@
this.AreaList = data; this.AreaList = data;
}, },
YfSelect1(val) { YfSelect1(val) {
console.log("formId",val);
this.addMsg.FormsId = val; this.addMsg.FormsId = val;
if (this.addMsg.FormsId == 0) { if (this.addMsg.FormsId == 0) {
this.addMsg.FormsName = '默认商城' this.addMsg.FormsName = '默认商城'
} else if (this.addMsg.FormsId == 1) { } else if (this.addMsg.FormsId == 1) {
this.addMsg.FormsName = '教育表单' this.addMsg.FormsName = '教育表单'
} }
else if (this.addMsg.FormsId > 1) {
this.customFormList.forEach(item => {
if( this.addMsg.FormsId==item.Id){
this.addMsg.FormsName = item.FormName
}
});
}
this.$forceUpdate() this.$forceUpdate()
}, },
...@@ -2201,6 +2233,15 @@ ...@@ -2201,6 +2233,15 @@
this.addMsg.FormsName = '默认商城' this.addMsg.FormsName = '默认商城'
} else if (this.addMsg.FormsId == 1) { } else if (this.addMsg.FormsId == 1) {
this.addMsg.FormsName = '教育表单' this.addMsg.FormsName = '教育表单'
}
else if (this.addMsg.FormsId > 1) {
this.customFormList.forEach(item => {
console.log("item",item);
if(this.val1==item.Id){
this.addMsg.FormsName = item.FormName
}
});
} }
this.memberList2 = this.addMsg.MemberPriceTreeList; this.memberList2 = this.addMsg.MemberPriceTreeList;
this.thisType = 1; this.thisType = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment