Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica.cloud.web-education-admin
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
提交
议题看板
打开侧边栏
jingqi.liu
pica.cloud.web-education-admin
提交
8a510d7b
提交
8a510d7b
编写于
9月 03, 2020
作者:
bo.dang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加成员管理和圈子列表改动
上级
f2a6e05b
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
15 行增加
和
11 行删除
+15
-11
range-manage.vue
src/views/yqrange/range-manage.vue
+9
-7
yq-range.vue
src/views/yqrange/yq-range.vue
+6
-4
未找到文件。
src/views/yqrange/range-manage.vue
浏览文件 @
8a510d7b
...
...
@@ -10,11 +10,11 @@
<div
v-if=
"active == 0"
>
<el-tabs
v-model=
"activeName"
@
tab-click=
"tabChangeHandler"
>
<el-tab-pane
label=
"成员管理"
name=
"first"
>
<mebman
:circleId=
"circleId"
:roleType=
"roleType"
></mebman>
</el-tab-pane>
<
el-tab-pane
label=
"分组管理"
name=
"second"
>
<
!--
<el-tab-pane
label=
"分组管理"
name=
"second"
>
--
>
<
/el-tab-pane
>
<
!--
</el-tab-pane>
--
>
<el-tab-pane
label=
"直播管理"
name=
"third"
>
<live-manage
@
setActive=
"setActive"
:circleName=
"name"
></live-manage>
</el-tab-pane>
...
...
@@ -38,10 +38,10 @@ import BreadCrumb from "@/components/yqrange/breadcrumb-range.vue";
import
{
getRangeList
,
updateRangeStatus
,
getCircleSettingList
,
saveCircleSetting
}
from
"../../utils/yqrange/yqrangeApi"
;
import
LiveManage
from
"./live-manage"
;
import
RangeSetting
from
"./range-setting"
;
import
CreateLive
from
"./create-live
"
;
import
Mebman
from
"../../components/yqrange/mebman
"
;
export
default
{
components
:
{
CreateLive
,
Mebman
,
RangeSetting
,
LiveManage
,
BreadCrumb
...
...
@@ -70,14 +70,16 @@ export default {
dialogSettingVisible
:
false
,
circleId
:
null
,
name
:
""
,
active
:
0
active
:
0
,
roleType
:
''
}
},
created
()
{
const
{
id
,
name
,
activeName
}
=
this
.
$route
.
query
;
const
{
id
,
name
,
activeName
,
roleType
}
=
this
.
$route
.
query
;
this
.
circleId
=
id
;
this
.
name
=
name
;
this
.
activeName
=
activeName
;
this
.
roleType
=
roleType
;
this
.
curmbSecond
=
"圈子管理-"
+
name
;
this
.
curmbThird
=
this
.
curmbSecond
;
this
.
active
=
0
;
...
...
src/views/yqrange/yq-range.vue
浏览文件 @
8a510d7b
...
...
@@ -57,11 +57,11 @@
<div
v-if=
"scope.row.status != 50"
>
<el-button
@
click=
"publishRange(scope.row)"
v-if=
"scope.row.status != 30 && scope.row.status != 0"
type=
"text"
size=
"small"
>
上线
</el-button>
<el-button
@
click=
"unPublishRange(scope.row)"
v-if=
"scope.row.status == 30 && scope.row.status != 0"
type=
"text"
size=
"small"
>
下线
</el-button>
<
el-button
@
click=
"liveManage(scope.row)"
type=
"text"
size=
"small"
v-if=
"scope.row.status != 0"
>
直播管理
</el-button
>
<
el-button
@
click=
"roleManage(scope.row)"
type=
"text"
size=
"small"
v-if=
"scope.row.status != 0"
>
成员管理
</el-button
>
<
!--
<el-button
@
click=
"liveManage(scope.row)"
type=
"text"
size=
"small"
v-if=
"scope.row.status != 0"
>
直播管理
</el-button>
--
>
<
!--
<el-button
@
click=
"roleManage(scope.row)"
type=
"text"
size=
"small"
v-if=
"scope.row.status != 0"
>
成员管理
</el-button>
--
>
<el-button
@
click=
"editRange(scope.row)"
type=
"text"
size=
"small"
>
编辑
</el-button>
<el-button
@
click=
"deleteRange(scope.row)"
type=
"text"
size=
"small"
v-if=
"showAllFlag && scope.row.status != 0"
>
解散圈子
</el-button>
<
el-button
@
click=
"setting(scope.row)"
type=
"text"
size=
"small"
v-if=
"scope.row.status != 0 && showNewFlag"
>
应用配置
</el-button
>
<
!--
<el-button
@
click=
"setting(scope.row)"
type=
"text"
size=
"small"
v-if=
"scope.row.status != 0 && showNewFlag"
>
应用配置
</el-button>
--
>
<el-button
@
click=
"rangeManage(scope.row)"
type=
"text"
size=
"small"
v-if=
"scope.row.status != 0"
>
管理
</el-button>
</div>
</
template
>
...
...
@@ -315,7 +315,9 @@ export default {
path
:
'/range-manage'
,
query
:
{
id
:
row
.
id
,
name
:
row
.
name
name
:
row
.
name
,
activeName
:
'first'
,
roleType
:
row
.
roleId
}
})
},
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录