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

新增权限

parent 87421a8f
...@@ -344,9 +344,11 @@ ...@@ -344,9 +344,11 @@
<li> <li>
<span> <span>
<em>{{$t('objFill.shangchuanshijian')}}</em> <em>{{$t('objFill.shangchuanshijian')}}</em>
<el-date-picker class="w150" type="date" v-model="msg.QFileStartDate" value-format="yyyy-MM-dd" format="yyyy-MM-dd" placeholder> <el-date-picker class="w150" type="date" v-model="msg.QFileStartDate" value-format="yyyy-MM-dd"
format="yyyy-MM-dd" placeholder>
</el-date-picker> </el-date-picker>
<el-date-picker class="w150" type="date" v-model="msg.QFileEndDate" value-format="yyyy-MM-dd" format="yyyy-MM-dd" placeholder> <el-date-picker class="w150" type="date" v-model="msg.QFileEndDate" value-format="yyyy-MM-dd"
format="yyyy-MM-dd" placeholder>
</el-date-picker> </el-date-picker>
</span> </span>
</li> </li>
...@@ -398,16 +400,6 @@ ...@@ -398,16 +400,6 @@
{{ $t("ground.zhenshimingcheng") }}: {{ item.HotelRealName }} {{ $t("ground.zhenshimingcheng") }}: {{ item.HotelRealName }}
</div> </div>
</el-tooltip> </el-tooltip>
<!-- <div class="brandList clearfix" >
<div class="brand">
<i class="iconfont honor icon-img_biaozhi"></i>
{{ item.ChainBrand }}
</div>
<div class="dayNum">
<i class="iconfont dieline icon-img_shijian"></i>
{{ item.DieLine }}{{ $t("hotel.hotel_day") }}
</div>
</div> -->
<div class="Address"> <div class="Address">
<div v-show="item.Address"> <div v-show="item.Address">
<i class="iconfont icon-img_dz"></i> <i class="iconfont icon-img_dz"></i>
...@@ -443,12 +435,12 @@ ...@@ -443,12 +435,12 @@
{{$t('hotel.hotel_roomType')}} {{$t('hotel.hotel_roomType')}}
</button> </button>
<br /> <br />
<button v-if="(IsHotelPriceStock==1||userInfo.RB_Group_id!=2)" style="width: 80px; margin-top: 10px" <button v-if="(IsHotelPriceStock==1)" style="width: 80px; margin-top: 10px"
@click="goUrl('HotelProductManage2', item)" class="hotelBtnMan"> @click="goUrl('HotelProductManage2', item)" class="hotelBtnMan">
{{ $t("ground.baojiayukucun") }} {{ $t("ground.baojiayukucun") }}
</button> </button>
<button v-if="(IsHotelPriceStock==1||userInfo.RB_Group_id!=2)" style="width: 80px; margin-top: 10px" @click="downloadFile(item)" <button v-if="(IsUpload_Hotel_Price==1)" style="width: 80px; margin-top: 10px"
class="hotelBtnMan"> @click="downloadFile(item)" class="hotelBtnMan">
{{$t('objFill.shangchuanbj')}} {{$t('objFill.shangchuanbj')}}
</button> </button>
<template v-if="item.MaxFileDate&&item.MaxFileDate!=''"> <template v-if="item.MaxFileDate&&item.MaxFileDate!=''">
...@@ -554,6 +546,7 @@ ...@@ -554,6 +546,7 @@
defaultImg: 'this.src="' + require("../../assets/img/bg_z1@2x.png") + '"', defaultImg: 'this.src="' + require("../../assets/img/bg_z1@2x.png") + '"',
loading: true, loading: true,
IsHotelPriceStock: 0, //1-有获取餐厅与报价添加修改权限 IsHotelPriceStock: 0, //1-有获取餐厅与报价添加修改权限
IsUpload_Hotel_Price: 0, //1-可查看、上传酒店报价
IsEditDmcSource: 0, //是否有新增修改权限 IsEditDmcSource: 0, //是否有新增修改权限
msg: { msg: {
pageIndex: 1, pageIndex: 1,
...@@ -640,7 +633,6 @@ ...@@ -640,7 +633,6 @@
Id: file.Id, Id: file.Id,
}, },
(res) => { (res) => {
// this.DmcFileStoreList.splice(index, 1);
this.getFilelist(); this.getFilelist();
}, },
(err) => {} (err) => {}
...@@ -845,18 +837,7 @@ ...@@ -845,18 +837,7 @@
(err) => {} (err) => {}
); );
}, },
//获取酒店修改与报价添加修改权限
GetHotelPirceStockAuth() {
this.apipost(
"hotel_post_GetHotelPriceStockAuthService", {},
(res) => {
if (res.data.resultCode == 1) {
this.IsHotelPriceStock = res.data.data;
}
},
(err) => {}
);
},
//根据当前员工所在部门获取该部门及子部门员工信息 //根据当前员工所在部门获取该部门及子部门员工信息
getEmployeeList() { getEmployeeList() {
let msg = { let msg = {
...@@ -880,6 +861,7 @@ ...@@ -880,6 +861,7 @@
GetHotelPirceStockAuth() { GetHotelPirceStockAuth() {
let isStock = "IsHotelPriceStock"; let isStock = "IsHotelPriceStock";
let editDmcSource = "F_EditDmcSource"; let editDmcSource = "F_EditDmcSource";
let isHotelPrice = "Upload_Hotel_Price"
this.apipost('userauth_get_CheckUserAuthNewService', '', res => { this.apipost('userauth_get_CheckUserAuthNewService', '', res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
var tempData = res.data.data; var tempData = res.data.data;
...@@ -890,6 +872,9 @@ ...@@ -890,6 +872,9 @@
if (tempData.includes(editDmcSource)) { //查看列表权限 if (tempData.includes(editDmcSource)) { //查看列表权限
this.IsEditDmcSource = 1; this.IsEditDmcSource = 1;
} }
if (tempData.includes(isHotelPrice)) {
this.IsUpload_Hotel_Price = 1;
}
} }
} }
...@@ -931,7 +916,6 @@ ...@@ -931,7 +916,6 @@
this.msg.ID = id; this.msg.ID = id;
} }
this.getEmployeeList(); this.getEmployeeList();
this.GetHotelPirceStockAuth();
this.getCountryList(); this.getCountryList();
this.GetHotelTypeList(); this.GetHotelTypeList();
this.GetHotelPirceTypeList(); this.GetHotelPirceTypeList();
......
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