提交 ef68d8e6 作者: 毛细亚

同步代码

上级 91fe939a
...@@ -62,6 +62,7 @@ export default { ...@@ -62,6 +62,7 @@ export default {
dingUserInfo: null, // 钉钉用户信息 dingUserInfo: null, // 钉钉用户信息
signData: null, // 企微签名数据 signData: null, // 企微签名数据
orgList: [], orgList: [],
organizationNum:5,
urlParams:{}, urlParams:{},
currentOrg: {}, currentOrg: {},
showOrgDialog: false, showOrgDialog: false,
...@@ -233,7 +234,7 @@ export default { ...@@ -233,7 +234,7 @@ export default {
async initOrganization() { async initOrganization() {
const res = await getOrganization(); const res = await getOrganization();
if (res.data.status_code === 1) { if (res.data.status_code === 1) {
this.orgList = res.data.data.data; this.orgList = res.data.data.data.filter(item => item.id <= this.organizationNum)
// 默认组织逻辑:可根据业务自定义 // 默认组织逻辑:可根据业务自定义
this.initCurrentApp(); this.initCurrentApp();
} }
...@@ -340,6 +341,7 @@ export default { ...@@ -340,6 +341,7 @@ export default {
font-weight: bold; font-weight: bold;
margin-right: 5px; margin-right: 5px;
} }
.loginContent{ .loginContent{
display: flex; display: flex;
flex-direction: column; flex-direction: column;
......
...@@ -4,8 +4,13 @@ ...@@ -4,8 +4,13 @@
class="userDetailsPanel columnFlex" class="userDetailsPanel columnFlex"
> >
<div class="content"> <div class="content">
<div v-if="chatUserDetails.is_phishing_account==1" class="warnText">
<p>高风险玩家,请立即通知组长!!!!</p>
<p>①千万不能推转游!!不要发送违禁词汇!!不要发送礼包和告知任何礼包信息!!</p>
<p>②不能以任何形式推送APP/网页链接,也不可承认有APP/网页端口!!</p>
</div>
<div <div
v-if="change_appraisal" v-if="change_appraisal && false"
style=" style="
font-size: 12px; font-size: 12px;
color: red; color: red;
...@@ -405,6 +410,17 @@ import watchMember from '@/mixins/watchMember' ...@@ -405,6 +410,17 @@ import watchMember from '@/mixins/watchMember'
font-weight: 600; font-weight: 600;
} }
} }
.warnText{
width:100%;
height:auto;
font-weight: 600;
font-size: 18px;
margin-bottom: 10px;
p{
color: #F56C6C;
line-height: 25px;
}
}
.content { .content {
width: 100%; width: 100%;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论