Commit 5c7f9ca2 authored by youjie's avatar youjie

no message

parent 854d8622
......@@ -71,23 +71,25 @@
<el-switch v-model="addMsg.GroupTypeNeedHouse" active-value="0" inactive-value="1"></el-switch>
</el-form-item>
</el-col>
<el-col :span="4">
<el-col :span="4" v-if="addMsg.CustomerType == 3 || addMsg.CustomerType == 4">
<!--联系人-->
<el-form-item :label="$t('hotel.suplier_contact')" prop="ContactName"
v-if="addMsg.CustomerType == 3 || addMsg.CustomerType == 4">
<el-form-item :label="$t('hotel.suplier_contact')" prop="ContactName">
<el-input v-model="addMsg.ContactName"></el-input>
</el-form-item>
</el-col>
<el-col :span="4" v-if="addMsg.CustomerType == 3 || addMsg.CustomerType == 4">
<!--联系电话-->
<el-form-item :label="$t('restaurant.res_ContactNumber')" prop="ContactMobile"
v-if="addMsg.CustomerType == 3 || addMsg.CustomerType == 4">
<el-form-item :label="$t('restaurant.res_ContactNumber')" prop="ContactMobile">
<el-input v-model="addMsg.ContactMobile" maxlength="20"></el-input>
</el-form-item>
</el-col>
<el-col :span="4" v-if="
addMsg.CustomerType == 1 ||
addMsg.CustomerType == 2 ||
addMsg.CustomerType == ''
">
<!--同行Id-->
<el-form-item :label="$t('salesModule.CustomerStore')" prop="CustomerId" v-if="
addMsg.CustomerType == 1 ||
addMsg.CustomerType == 2 ||
addMsg.CustomerType == ''
">
<el-form-item :label="$t('salesModule.CustomerStore')" prop="CustomerId">
<el-select v-model="addMsg.CustomerId" filterable :placeholder="$t('pub.pleaseSel')"
@change="changeCustomer">
<el-option v-for="(item,index) in customerList" :label="item.customerName + '-' + item.contact"
......@@ -95,8 +97,10 @@
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="4" v-show="addMsg.GroupType == 2">
<!--行业-->
<el-form-item v-show="addMsg.GroupType == 2" :label="$t('salesModule.HYLB')" prop="IndustryCategory">
<el-form-item :label="$t('salesModule.HYLB')" prop="IndustryCategory">
<el-input v-model="addMsg.IndustryCategory"></el-input>
</el-form-item>
</el-col>
......
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