Commit 6d4d2a8d authored by 黄奎's avatar 黄奎

页面修改

parent ec941dda
...@@ -183,7 +183,7 @@ ...@@ -183,7 +183,7 @@
class="hotelProductManage2_edit2_form"> class="hotelProductManage2_edit2_form">
<el-row> <el-row>
<el-col :span="24" class="HotelProductEdit_date"> <el-col :span="24" class="HotelProductEdit_date">
<el-form-item :label="$t('ground.yixuanriqi')" prop="DateList"> <el-form-item :label="$t('ground.yixuanriqi')" prop="DateList">
<el-tag v-for="(item, key) in msg2.DateList" :key="key" type="info" style="margin: 0 5px 0 0;" closable <el-tag v-for="(item, key) in msg2.DateList" :key="key" type="info" style="margin: 0 5px 0 0;" closable
@close="calendarDayOff(item)">{{item}}</el-tag> @close="calendarDayOff(item)">{{item}}</el-tag>
...@@ -413,7 +413,7 @@ ...@@ -413,7 +413,7 @@
class="hotelProductManage2_edit_form"> class="hotelProductManage2_edit_form">
<el-row> <el-row>
<el-col :span="6"> <el-col :span="6">
<el-form-item :label="$t('ground.riqixuanzfs')" prop="DayType"> <el-form-item :label="$t('ground.riqixuanzfs')" prop="DayType">
<el-select v-model="msg.DayType" :placeholder="$t('pub.pleaseSel')" @change="dayTypeChange"> <el-select v-model="msg.DayType" :placeholder="$t('pub.pleaseSel')" @change="dayTypeChange">
<el-option :label="$t('ground.annian')" value="1"></el-option> <el-option :label="$t('ground.annian')" value="1"></el-option>
...@@ -670,7 +670,7 @@ ...@@ -670,7 +670,7 @@
<el-input-number v-model="msg.PayLimitFirstDay" :min="1"></el-input-number> <el-input-number v-model="msg.PayLimitFirstDay" :min="1"></el-input-number>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="6" v-if="msg.CustomerPayType==2 && userInfo&&userInfo.RB_Group_id==2" > <el-col :span="6" v-if="msg.CustomerPayType==2 && userInfo&&userInfo.RB_Group_id==2">
<el-form-item :label="$t('objFill.ruzhuqjtfwk')" prop="PayLimitEndDay"> <el-form-item :label="$t('objFill.ruzhuqjtfwk')" prop="PayLimitEndDay">
<el-input-number v-model="msg.PayLimitEndDay" :min="1"></el-input-number> <el-input-number v-model="msg.PayLimitEndDay" :min="1"></el-input-number>
</el-form-item> </el-form-item>
...@@ -1255,10 +1255,14 @@ ...@@ -1255,10 +1255,14 @@
}, },
// 获取供应商 // 获取供应商
initSupplier() { initSupplier() {
this.apipost("supplier_post_GetAllList", { var postMsg = {
Type: 1, Type: 1,
Country: 651 Country: 0
}, res => { }
if (this.userInfo && this.userInfo.RB_Group_id==2) {
postMsg.Country = 651;
}
this.apipost("supplier_post_GetAllList", postMsg, res => {
if (res.data.resultCode === 1) { if (res.data.resultCode === 1) {
this.SupplierList = res.data.data; this.SupplierList = res.data.data;
} }
......
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