Commit e4b02f9b authored by youjie's avatar youjie

no message

parent 8edc8754
......@@ -141,7 +141,7 @@
:before-close="closeChangeMachie">
<el-form :model="addMsg" :rules="rules" ref="addMsg" label-width="120px">
<el-form-item class='w400' label="本位币" prop="StandardCurrencyId">
<el-select class='w280' placeholder="请选择本位币" filterable v-model="addMsg.StandardCurrencyId">
<el-select class='w280' placeholder="请选择本位币" filterable v-model="addMsg.StandardCurrencyId" clearable @change="getStandardCurrencyId">
<el-option v-for='item in coinGetList'
:label='item.Name'
:value='item.ID'
......@@ -316,11 +316,11 @@
message: '请选择集团',
trigger: 'change'
}],
StandardCurrencyId: [{
required: true,
message: '请选择本位币',
trigger: 'change'
}],
// StandardCurrencyId: [{
// required: true,
// message: '请选择本位币',
// trigger: 'change'
// }],
BName: [{
required: true,
message: '请输入公司名称',
......@@ -396,7 +396,7 @@
CompanyTitle: '',
IsFreeFee: 0,
ServiceFee: 0,
StandardCurrencyId: ''
StandardCurrencyId: '0'
},
coinGetList: [],
updateMsg: {
......@@ -498,6 +498,9 @@
this.employeeList = res.data.data;
}, err => {})
},
getStandardCurrencyId(val){
if(this.addMsg.StandardCurrencyId==''){this.addMsg.StandardCurrencyId=0}
},
submitForm(addMsg) { //提交创建、修改表单
this.$refs[addMsg].validate((valid) => {
if (valid) {
......@@ -508,6 +511,9 @@
});
},
addData() { //新增数据
if(this.addMsg.StandardCurrencyId==''){
this.addMsg.StandardCurrencyId = 0
}
this.apipost('admin_post_BranchSet', this.addMsg, res => {
if (res.data.resultCode == 1) {
this.$message.success(res.data.message);
......@@ -531,9 +537,9 @@
this.addMsg.is_show = this.addMsg.is_show.toString();
this.addMsg.B2BShow = this.addMsg.B2BShow.toString();
this.addMsg.IsParentCompany = this.addMsg.IsParentCompany.toString();
if(this.addMsg.StandardCurrencyId==0){
this.addMsg.StandardCurrencyId = ''
}
// if(this.addMsg.StandardCurrencyId==0){
// this.addMsg.StandardCurrencyId = ''
// }
this.imageUrl = this.addMsg.ConfirmationSignet;
this.imageUrlLogo = this.addMsg.TravelLogo;
} else {}
......
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