Commit 31204635 authored by 吴春's avatar 吴春

1

parent 23d19e46
...@@ -1205,7 +1205,7 @@ ...@@ -1205,7 +1205,7 @@
<el-checkbox v-model="queryCommonData.checkDialogAll" @change="checkAllDialog" style="margin-right:20px;"> <el-checkbox v-model="queryCommonData.checkDialogAll" @change="checkAllDialog" style="margin-right:20px;">
{{$t('system.table_chekAll')}}</el-checkbox> {{$t('system.table_chekAll')}}</el-checkbox>
<el-checkbox-group v-model="queryCommonData.ckedplat" @change="checkDialog"> <el-checkbox-group v-model="queryCommonData.ckedplat" @change="checkDialog">
<el-checkbox v-for="sales in $tripUtils.TeamStatesList.salsPlat" :label="sales.Id" :key="sales.Name"> <el-checkbox v-for="sales in $tripUtils.TeamStatesList.salsPlat" :label="sales.Id" :key="sales.Name" :disabled="((sales.Id=='2'||sales.Id=='5')&&SaleB2COrWeChatStatus)?true:false">
{{sales.Name}}</el-checkbox> {{sales.Name}}</el-checkbox>
</el-checkbox-group> </el-checkbox-group>
</span> </span>
...@@ -1290,6 +1290,7 @@ ...@@ -1290,6 +1290,7 @@
OfferId: '' OfferId: ''
}, },
isCommissionDetails: false, //团控提成详情权限 isCommissionDetails: false, //团控提成详情权限
SaleB2COrWeChatStatus:true,//上架B2C或者微信小程序
QSendCommissionStateList: [{ QSendCommissionStateList: [{
Name: '不限', Name: '不限',
ID: 0 ID: 0
...@@ -2783,7 +2784,11 @@ ...@@ -2783,7 +2784,11 @@
if (ActionMenuCode.indexOf("isCommissionDetails") != -1) { if (ActionMenuCode.indexOf("isCommissionDetails") != -1) {
this.isCommissionDetails = true; this.isCommissionDetails = true;
} }
if (ActionMenuCode.indexOf("SaleB2COrWeChat") != -1) {
this.SaleB2COrWeChatStatus = false;
}
this.CurrentUserInfo = userInfo; this.CurrentUserInfo = userInfo;
if (this.$route.query.TCID) { if (this.$route.query.TCID) {
this.queryMsg.TCID = this.$route.query.TCID; this.queryMsg.TCID = this.$route.query.TCID;
......
...@@ -244,8 +244,8 @@ ...@@ -244,8 +244,8 @@
<el-checkbox v-model="queryCommonData.checkPlatForm" @change="checkAllSales"> <el-checkbox v-model="queryCommonData.checkPlatForm" @change="checkAllSales">
{{$t('system.table_chekAll')}}</el-checkbox> {{$t('system.table_chekAll')}}</el-checkbox>
<el-checkbox-group v-model="queryMsg.SalePlat" @change="checkSales"> <el-checkbox-group v-model="queryMsg.SalePlat" @change="checkSales">
<el-checkbox v-for="sales in $tripUtils.TeamStatesList.salsPlat" :label="sales.Id" <el-checkbox v-for="sales in $tripUtils.TeamStatesList.salsPlat" :label="sales.Id" :key="sales.Name" :disabled="((sales.Id=='2'||sales.Id=='5')&&SaleB2COrWeChatStatus)?true:false">
:key="sales.Name">{{sales.Name}}</el-checkbox> {{sales.Name}}</el-checkbox>
</el-checkbox-group> </el-checkbox-group>
</span> </span>
</div> </div>
...@@ -858,6 +858,7 @@ ...@@ -858,6 +858,7 @@
OfferId: '' OfferId: ''
}, },
isCommissionDetails: false, //团控提成详情权限 isCommissionDetails: false, //团控提成详情权限
SaleB2COrWeChatStatus:true,//上架B2C或者微信小程序
QSendCommissionStateList: [{ QSendCommissionStateList: [{
Name: '不限', Name: '不限',
ID: 0 ID: 0
...@@ -1899,6 +1900,9 @@ ...@@ -1899,6 +1900,9 @@
if (ActionMenuCode.indexOf("isCommissionDetails") != -1) { if (ActionMenuCode.indexOf("isCommissionDetails") != -1) {
this.isCommissionDetails = true; this.isCommissionDetails = true;
} }
if (ActionMenuCode.indexOf("SaleB2COrWeChat") != -1) {
this.SaleB2COrWeChatStatus = false;
}
this.CurrentUserInfo = userInfo this.CurrentUserInfo = userInfo
if (this.$route.query.tcmun) { if (this.$route.query.tcmun) {
......
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