Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
company_app
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
毛细亚
company_app
Commits
166643d7
提交
166643d7
authored
8月 06, 2025
作者:
施汉文
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
🐞
fix: 修改了弹框滚动,以及一些线上报错问题
上级
963caaf8
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
80 行增加
和
71 行删除
+80
-71
index.scss
src/styles/index.scss
+6
-0
addUser.vue
src/views/components/bindGameAccount/addUser.vue
+0
-0
searchUser.vue
src/views/components/order/searchUser.vue
+54
-58
report.vue
src/views/components/roleInfo/report.vue
+0
-0
uesrTask.vue
src/views/components/taskList/uesrTask.vue
+0
-0
newLogin.vue
src/views/newLogin.vue
+20
-13
没有找到文件。
src/styles/index.scss
浏览文件 @
166643d7
...
...
@@ -852,3 +852,8 @@ li {
.el-input__icon
{
line-height
:
1
;
}
//弹框内容超出显示滚动
.el-message-box__message
{
max-height
:
500px
!
important
;
overflow-y
:
auto
!
important
;
}
\ No newline at end of file
src/views/components/bindGameAccount/addUser.vue
浏览文件 @
166643d7
差异被折叠。
点击展开。
src/views/components/order/searchUser.vue
浏览文件 @
166643d7
<
template
>
<el-select
v-model=
"resulte"
v-loadmore=
"loadMoreList"
filterable
remote
:disabled=
"disabled"
:remote-method=
"remoteMethod"
:placeholder=
"placeholder"
:clearable=
'false'
reserve-keyword
:loading=
"loading"
@
change=
"selectChange"
>
<el-option
v-for=
"(item,index) in searchUserOption"
:key=
"index"
:value=
"item.role_id || item.id"
:label=
"item.role_name"
style=
"height:50px;"
>
<div
class=
"rowFlex columnCenter selectItem"
>
<!-- 没有头像 -->
<!--
<el-image
v-if=
"item.avata"
fit=
"fill"
:src=
"item.avatar"
class=
"tableImage "
></el-image>
-->
<div
class=
"infoSpan columnFlex rowCenter"
>
<p
class=
"hidden"
>
{{
item
.
role_name
&&
item
.
role_name
!=
''
?
item
.
game_name
+
' - '
+
item
.
server_name
+
' - '
+
item
.
role_name
:
''
}}
</p>
<p
class=
"rowFlex columnCenter"
>
角色名:
<label
class=
"hidden"
style=
"max-width:120px;"
>
{{
item
.
role_name
}}
</label></p>
</div>
<el-select
v-model=
"resulte"
v-loadmore=
"loadMoreList"
filterable
remote
:disabled=
"disabled"
:remote-method=
"remoteMethod"
:placeholder=
"placeholder"
:clearable=
'false'
reserve-keyword
:loading=
"loading"
@
change=
"selectChange"
>
<el-option
v-for=
"(item, index) in searchUserOption"
:key=
"index"
:value=
"item?.role_id || item.id"
:label=
"item.role_name"
style=
"height:50px;"
>
<div
class=
"rowFlex columnCenter selectItem"
>
<!-- 没有头像 -->
<!--
<el-image
v-if=
"item.avata"
fit=
"fill"
:src=
"item.avatar"
class=
"tableImage "
></el-image>
-->
<div
class=
"infoSpan columnFlex rowCenter"
>
<p
class=
"hidden"
>
{{
item
.
role_name
&&
item
.
role_name
!=
''
?
item
.
game_name
+
' - '
+
item
.
server_name
+
' -
'
+
item
.
role_name
:
''
}}
</p>
<p
class=
"rowFlex columnCenter"
>
角色名:
<label
class=
"hidden"
style=
"max-width:120px;"
>
{{
item
.
role_name
}}
</label>
</p>
</div>
</el-option>
</el-select>
</
template
>
<
script
>
</div>
</el-option>
</el-select>
</
template
>
<
script
>
import
{
roleList
}
from
'@/api/game'
import
{
mapState
}
from
'vuex'
export
default
{
...
...
@@ -127,29 +118,34 @@
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
.selectItem
{
height
:
50px
;
}
.infoSpan
{
font-size
:
12px
;
font-family
:
PingFangSC-Regular
,
PingFang
SC
;
font-weight
:
400
;
max-width
:
250px
;
height
:
50px
;
p{
font-size
:
12px
;
max-width
:
100%
;
line-height
:
20px
;
}
span
{
color
:
#FFA81D
;
}
}
.tableImage
{
width
:
30px
;
height
:
30px
;
border-radius
:
30px
;
margin-right
:
10px
;
}
</
style
>
\ No newline at end of file
<
style
lang=
"scss"
scoped
>
.selectItem
{
height
:
50px
;
}
.infoSpan
{
font-size
:
12px
;
font-family
:
PingFangSC-Regular
,
PingFang
SC
;
font-weight
:
400
;
max-width
:
250px
;
height
:
50px
;
p
{
font-size
:
12px
;
max-width
:
100%
;
line-height
:
20px
;
}
span
{
color
:
#FFA81D
;
}
}
.tableImage
{
width
:
30px
;
height
:
30px
;
border-radius
:
30px
;
margin-right
:
10px
;
}
</
style
>
\ No newline at end of file
src/views/components/roleInfo/report.vue
浏览文件 @
166643d7
差异被折叠。
点击展开。
src/views/components/taskList/uesrTask.vue
浏览文件 @
166643d7
差异被折叠。
点击展开。
src/views/newLogin.vue
浏览文件 @
166643d7
...
...
@@ -2,14 +2,15 @@
<
template
>
<div
class=
"loginContent"
>
<div
class=
"loginContentContainer"
>
<p
class=
"loginContentTitle"
>
选择客服:
</p>
<div
class=
"loginContentInput rowFlex alignCenter"
>
<el-select
v-model=
"cser_user_id"
filterable
placeholder=
"请选择客服"
>
<el-option
v-for=
"item in userList"
:key=
"item.zq_user_id"
clearable
:label=
"item.name"
:value=
"item.zq_user_id"
>
</el-option>
</el-select>
<el-button
type=
"primary"
style=
"margin-left: 10px;"
size=
"small"
@
click=
"loginConfirm"
>
点击登录
</el-button>
</div>
<p
class=
"loginContentTitle"
>
选择客服:
</p>
<div
class=
"loginContentInput rowFlex alignCenter"
>
<el-select
v-model=
"cser_user_id"
filterable
placeholder=
"请选择客服"
>
<el-option
v-for=
"item in userList"
:key=
"item.zq_user_id"
clearable
:label=
"item.name"
:value=
"item.zq_user_id"
>
</el-option>
</el-select>
<el-button
type=
"primary"
style=
"margin-left: 10px;"
size=
"small"
@
click=
"loginConfirm"
>
点击登录
</el-button>
</div>
</div>
</div>
</
template
>
...
...
@@ -112,6 +113,10 @@ export default {
},
loginConfirm
(){
const
cser_user
=
this
.
userList
.
find
(
item
=>
item
.
zq_user_id
===
this
.
cser_user_id
)
if
(
!
cser_user
)
{
this
.
$message
.
error
(
'请选择客服'
)
return
}
this
.
$confirm
(
`确认登录上线吗,上线后所有会话都会归属到客服【
${
cser_user
.
name
}
】`
,
'提示'
,
{
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
...
...
@@ -294,12 +299,14 @@ export default {
align-items
:
center
;
justify-content
:
center
;
}
.loginContentTitle
{
font-size
:
14px
;
line-height
:
32px
;
margin-right
:
10px
;
text-align
:
left
;
.loginContentTitle
{
font-size
:
14px
;
line-height
:
32px
;
margin-right
:
10px
;
text-align
:
left
;
}
.qr-contain
{
margin
:
0
auto
;
/* margin-top: 20px; */
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论