Commit e4b02f9b authored by youjie's avatar youjie

no message

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