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
提交
6e027e87
提交
6e027e87
编写于
9月 02, 2020
作者:
bo.dang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
圈子改动
上级
2c7a906b
变更
7
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
604 行增加
和
36 行删除
+604
-36
breadcrumb-range.vue
src/components/yqrange/breadcrumb-range.vue
+52
-0
router.js
src/router/router.js
+5
-0
create-live.vue
src/views/yqrange/create-live.vue
+22
-7
live-manage.vue
src/views/yqrange/live-manage.vue
+17
-6
range-manage.vue
src/views/yqrange/range-manage.vue
+295
-0
range-setting.vue
src/views/yqrange/range-setting.vue
+202
-0
yq-range.vue
src/views/yqrange/yq-range.vue
+11
-23
未找到文件。
src/components/yqrange/breadcrumb-range.vue
0 → 100644
浏览文件 @
6e027e87
<
template
>
<div
class=
"bread-crumb"
>
<el-breadcrumb
separator=
"/"
>
<el-breadcrumb-item
v-if=
"curmbFirst"
:to=
"
{ path: jumPathThird }">
{{
curmbFirst
}}
</el-breadcrumb-item>
<el-breadcrumb-item
v-if=
"jumPathFouth"
:to=
"
{ path: jumPathFouth }">
{{
curmbSecond
}}
</el-breadcrumb-item>
<el-breadcrumb-item>
{{
curmbThird
}}
</el-breadcrumb-item>
<el-breadcrumb-item
v-if=
"curmbFouth"
>
{{
curmbFouth
}}
</el-breadcrumb-item>
</el-breadcrumb>
</div>
</
template
>
<
script
>
export
default
{
props
:
{
curmbFirst
:
{
type
:
String
},
curmbSecond
:
{
type
:
String
},
curmbThird
:
{
type
:
String
},
curmbFouth
:
{
type
:
String
},
jumPathThird
:
{
type
:
String
},
jumPathFouth
:
{
type
:
String
}
}
}
</
script
>
<
style
lang=
"scss"
>
.bread-crumb
{
position
:
fixed
;
left
:
255px
;
top
:
64px
;
width
:
100%
;
background
:
#fff
;
height
:
61px
;
padding
:
20px
20px
30px
;
z-index
:
99
;
border-top
:
3px
solid
#F0F2F5
;
.el-breadcrumb__inner
{
font-size
:
14px
;
}
}
</
style
>
src/router/router.js
浏览文件 @
6e027e87
...
...
@@ -58,6 +58,7 @@ const yqRange = r => require.ensure([], () => r(require('../views/yqrange/yq-ran
const
liveManage
=
r
=>
require
.
ensure
([],
()
=>
r
(
require
(
'../views/yqrange/live-manage.vue'
)),
'live-manage'
)
const
roleManage
=
r
=>
require
.
ensure
([],
()
=>
r
(
require
(
'../views/yqrange/role-manage.vue'
)),
'role-manage'
)
const
createRange
=
r
=>
require
.
ensure
([],
()
=>
r
(
require
(
'../views/yqrange/create-range.vue'
)),
'create-range'
)
const
rangeManage
=
r
=>
require
.
ensure
([],
()
=>
r
(
require
(
'../views/yqrange/range-manage.vue'
)),
'range-manage'
)
const
editRange
=
r
=>
require
.
ensure
([],
()
=>
r
(
require
(
'../views/yqrange/edit-range.vue'
)),
'edit-range'
)
const
createLive
=
r
=>
require
.
ensure
([],
()
=>
r
(
require
(
'../views/yqrange/create-live.vue'
)),
'create-live'
)
const
adminManage
=
r
=>
require
.
ensure
([],
()
=>
r
(
require
(
'../views/yqrange/admin-manage.vue'
)),
'admin-manage'
)
...
...
@@ -236,6 +237,10 @@ export default [{
path
:
'/create-range'
,
component
:
createRange
},
{
path
:
'/range-manage'
,
component
:
rangeManage
},
{
path
:
'/create-live'
,
component
:
createLive
...
...
src/views/yqrange/create-live.vue
浏览文件 @
6e027e87
<
template
>
<div
class=
"yqrange-index-wrapper"
>
<bread-crumb
:curmbFirst=
"curmbFirst"
:curmbSecond=
"curmbSecond"
:curmbThird=
"curmbThird"
:jumPathThird=
"jumPathThird
"
></bread-crumb>
<bread-crumb
:curmbFirst=
"curmbFirst"
:curmbSecond=
"curmbSecond"
:curmbThird=
"curmbThird"
:jumPathThird=
"jumPathThird"
:jumPathFouth=
"jumPathFouth
"
></bread-crumb>
<div
class=
"yqrange-index-content screenSet"
id=
"screenSet"
>
<el-row
class=
"step-content"
>
<el-col
:span=
"12"
>
...
...
@@ -560,7 +560,7 @@
</div>
</template>
<
script
>
import
BreadCrumb
from
"@/components/
breadcrumb
.vue"
;
import
BreadCrumb
from
"@/components/
yqrange/breadcrumb-range
.vue"
;
import
{
isEmptyUtils
,
openLoading
,
closeLoading
}
from
"../../utils/utils"
;
import
{
doUpload
,
getFilePath
,
unsubscribe
}
from
"../../utils/qiniu-util"
;
import
{
checkMobile
}
from
'../../utils/patients/checkValid'
;
...
...
@@ -589,10 +589,11 @@
return{
rtcId: '',
circleId: '',
circleName: "",
curmbFirst: '云鹊小圈',
curmbSecond: '直播管理',
//
curmbSecond: '直播管理',
curmbThird: '新建直播',// /live-manage?id=
jumPathThird: '',
jumPathThird: '
/yq-range
',
showIntroImageFlag: false,
introduceIndex: 0,
isDisabledIns: false,//为了防止上传多图时,点太快图片错位
...
...
@@ -780,15 +781,27 @@
}
}
},
props: {
// curmbSecond: {
// type: String
// },
// jumPathFouth: {
// type: String
// }
},
created() {
vm = this;
// 区分内部用户和外部用户
let idType = localStorage.getItem('storageIdType');
this.circleId = this.$route.query.circleId;
this.circleName = this.$route.query.circleName;
this.curmbSecond = "
圈子管理
-
" + this.circleName;
this.jumPathFouth = "
/
range
-
manage
?
id
=
" + this.circleId + "
&
name
=
" + this.circleName + "
&
activeName
=
third
";
this.formData.circleId = this.circleId;
console.log("
create
-
live
:
jumPathFouth
:
" + this.jumPathFouth);
this.jumPathThird = '/live-manage?id=' + this.circleId;
//
this.jumPathThird = '/live-manage?id=' + this.circleId;
},
mounted() {
...
...
@@ -1796,9 +1809,11 @@
if( res.code == '000000') {
this.$message.success("
操作成功
");
this.$router.push({
path: '/
liv
e-manage',
path: '/
rang
e-manage',
query: {
id: this.formData.circleId
id: this.formData.circleId,
name: this.circleName,
activeName: "
third
"
}
})
}
...
...
src/views/yqrange/live-manage.vue
浏览文件 @
6e027e87
<
template
>
<div
class=
"yqrange-index-wrapper"
>
<
bread-crumb
:curmbFirst=
"curmbFirst"
:curmbSecond=
"curmbSecond"
></bread-crumb
>
<div
class=
"yqrange-index-content
screenSet
"
id=
"screenSet"
>
<
div
class=
"header-title"
>
直播管理
</div
>
<
!--
<bread-crumb
:curmbFirst=
"curmbFirst"
:curmbSecond=
"curmbSecond"
></bread-crumb>
--
>
<div
class=
"yqrange-index-content"
id=
"screenSet"
>
<
!--
<div
class=
"header-title"
>
直播管理
</div>
--
>
<el-form
ref=
"searchForm"
:model=
"searchForm"
...
...
@@ -392,9 +392,15 @@ export default {
isSign
:
0
,
// 是否签到
};
},
props
:{
circleName
:
{
type
:
String
}
},
created
()
{
vm
=
this
;
this
.
circleId
=
this
.
$route
.
query
.
id
;
console
.
log
(
"circleName: "
+
this
.
circleName
);
vm
.
getLiveList
(
""
,
""
);
},
methods
:
{
...
...
@@ -432,12 +438,17 @@ export default {
},
//新建直播
createLive
()
{
this
.
$router
.
push
({
path
:
"/create-live"
,
query
:
{
circleId
:
this
.
circleId
circleId
:
this
.
circleId
,
circleName
:
this
.
circleName
}
});
// this.$emit("setActive", 4);
},
//弹出直播链接弹窗
liveLink
(
row
)
{
...
...
@@ -965,7 +976,8 @@ export default {
query
:
{
// rtcId: "1"
rtcId
:
row
.
rtcId
,
circleId
:
this
.
circleId
circleId
:
this
.
circleId
,
circleName
:
this
.
circleName
}
});
},
...
...
@@ -1028,7 +1040,6 @@ export default {
pageNo
:
this
.
searchForm
.
pageNo
,
pageSize
:
this
.
searchForm
.
pageSize
};
console
.
log
(
"alex name = "
+
name
+
", status = "
+
status
);
vm
.
POST
(
"rtc/liveAdmin/list"
,
req
).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
// console.log(res);
...
...
src/views/yqrange/range-manage.vue
0 → 100644
浏览文件 @
6e027e87
<
template
>
<div
class=
"resident-list"
>
<bread-crumb
:curmbFirst=
"curmbFirst"
:curmbSecond=
"curmbSecond"
:curmbThird=
"curmbThird"
:jumPathThird=
"jumPathThird"
>
</bread-crumb>
<div
class=
"f-main-content screenSet patient-detail-wrap"
>
<div
v-if=
"active == 0"
>
<el-tabs
v-model=
"activeName"
@
tab-click=
"tabChangeHandler"
>
<el-tab-pane
label=
"成员管理"
name=
"first"
>
</el-tab-pane>
<el-tab-pane
label=
"分组管理"
name=
"second"
>
</el-tab-pane>
<el-tab-pane
label=
"直播管理"
name=
"third"
>
<live-manage
@
setActive=
"setActive"
:circleName=
"name"
></live-manage>
</el-tab-pane>
<el-tab-pane
label=
"应用配置"
name=
"fourth"
>
<range-setting></range-setting>
</el-tab-pane>
</el-tabs>
</div>
<div
v-if=
"active == 4"
>
<create-live
:curmbSecond=
"curmbSecond"
:jumPathFouth=
"jumPathFouth"
></create-live>
</div>
</div>
</div>
</
template
>
<
script
>
import
{
openLoading
,
closeLoading
}
from
"../../utils/utils"
;
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"
;
export
default
{
components
:
{
CreateLive
,
RangeSetting
,
LiveManage
,
BreadCrumb
},
data
(){
return
{
curmbFirst
:
'云鹊小圈'
,
curmbSecond
:
'圈子管理'
,
curmbThird
:
''
,
jumPathFouth
:
""
,
jumPathThird
:
'/yq-range'
,
activeName
:
'first'
,
showAllFlag
:
false
,
showNewFlag
:
false
,
searchForm
:
{
name
:
''
,
createdTime
:
''
,
// endTime: '',
userType
:
""
,
// 用户标识 1:内部用户 2:外部用户,
status
:
""
,
pageNo
:
1
,
pageSize
:
10
,
},
totalRows
:
0
,
tableData
:
[],
dialogSettingVisible
:
false
,
circleId
:
null
,
name
:
""
,
active
:
0
}
},
created
()
{
const
{
id
,
name
,
activeName
}
=
this
.
$route
.
query
;
this
.
circleId
=
id
;
this
.
name
=
name
;
this
.
activeName
=
activeName
;
this
.
curmbSecond
=
"圈子管理-"
+
name
;
this
.
curmbThird
=
this
.
curmbSecond
;
this
.
active
=
0
;
this
.
jumPathFouth
=
"/range-manage?id="
+
this
.
circleId
+
"&name="
+
this
.
name
;
// this.jumPathFouth = "/yq-range";
},
methods
:
{
tabChangeHandler
(
tab
)
{},
setActive
(
active
){
this
.
active
=
active
;
}
},
}
</
script
>
<
style
lang=
"scss"
>
.yqrange-index-wrapper
{
.yqrange-index-content
{
background
:
#fff
;
padding
:
10px
;
.header-title
{
padding
:
10px
12px
;
font-size
:
12px
;
color
:
#449284
;
border-bottom
:
1px
solid
#efefef
;
}
}
.el-button--text
{
color
:
#449284
;
font-size
:
14px
;
&
:
:
after
{
content
:
''
;
position
:
relative
;
height
:
14px
;
/*border-right: 1px solid #EBEEF5;*/
border-right
:
1px
solid
#aaaaaa
;
padding-right
:
10px
;
}
&
:last-of-type
{
&
:
:
after
{
content
:
''
;
position
:
relative
;
width
:
1px
;
height
:
14px
;
border-right
:
none
;
}
}
}
}
/*.range-make-box{*/
/*.el-message-box__btns{*/
/*margin-top: 30px;*/
/*}*/
/*}*/
</
style
>
<
style
lang=
"scss"
scoped
>
@import
'../../style/patients-style/element-reset.css'
;
.f-main-content
{
background
:
#ffffff
;
padding
:
30px
;
.right-btn-group
{
position
:
absolute
;
right
:
60px
;
z-index
:
1800
;
}
.section
{
.item
{
display
:
flex
;
font-size
:
14px
;
div
{
display
:
flex
;
flex
:
1
;
line-height
:
36px
;
.title
{
width
:
150px
;
text-align
:
right
;
}
.info
{
color
:
#999
;
padding-left
:
15px
;
width
:
100%
;
}
}
&
.wrap-p
{
div
{
line-height
:
28px
;
}
}
.btn-right
{
width
:
35%
;
padding-left
:
10px
;
}
}
.has-header
{
display
:
flex
;
justify-content
:
space-between
;
padding
:
15px
0
;
margin-bottom
:
15px
;
border-bottom
:
1px
dashed
#888
;
.right-p
{
display
:
inline-block
;
text-align
:
right
;
color
:
#999
;
font-size
:
14px
;
span
:last-child
{
margin-left
:
15px
;
}
}
}
}
.health-record-wrap
{
/*height: 300px;*/
overflow-y
:
auto
;
@media
screen
and
(
min-width
:
1240px
)
and
(
max-width
:
1545px
){
height
:
350px
;
}
@media
screen
and
(
min-width
:
1545px
)
and
(
max-width
:
1600px
){
height
:
580px
;
}
@media
screen
and
(
min-width
:
1600px
){
height
:
670px
;
}
&
:
:-
webkit-scrollbar
{
width
:
5px
;
}
&
:
:-
webkit-scrollbar-thumb
{
/*滚动条里面小方块*/
border-radius
:
10px
;
-webkit-box-shadow
:
inset
0
0
5px
rgba
(
0
,
0
,
0
,
0
.2
);
background
:
rgba
(
0
,
0
,
0
,
0
.1
);
}
}
.health-record-list
{
.item
{
width
:
100%
;
margin-bottom
:
15px
;
.record-date
{
color
:
#999
;
padding-bottom
:
10px
;
}
.record-content
{
width
:
100%
;
border
:
1px
solid
#E4E7ED
;
border-radius
:
5px
;
padding
:
10px
15px
13px
;
.record-title
{
display
:
flex
;
justify-content
:
space-between
;
padding
:
5px
0
;
span
{
color
:
#999
;
font-size
:
14px
;
}
}
.list-visit
{
line-height
:
28px
;
padding
:
6px
0
2px
;
display
:
flex
;
display
:
-
webkit-flex
;
align-items
:
flex-start
;
font-size
:
14px
;
color
:
#999
;
.left-label
{
line-height
:
28px
;
}
.right-item
{
flex
:
1
;
line-height
:
28px
;
p
{
line-height
:
28px
;
.check-btn
{
color
:
#449284
;
cursor
:
pointer
;
margin-left
:
15px
;
}
}
}
}
}
}
}
.no-record-content
{
@media
screen
and
(
min-width
:
1240px
)
and
(
max-width
:
1545px
){
height
:
300px
;
}
@media
screen
and
(
min-width
:
1545px
)
and
(
max-width
:
1600px
){
height
:
500px
;
}
@media
screen
and
(
min-width
:
1600px
){
height
:
600px
;
}
text-align
:
center
;
padding
:
50px
0
60px
;
.no-record-info
{
position
:
absolute
;
top
:
50%
;
left
:
50%
;
transform
:
translate
(
-50%
,
-60%
);
}
img
{
width
:
120px
;
}
p
{
color
:
#B9B9C6
;
font-size
:
20px
;
}
}
.ml10
{
margin-left
:
10px
;
}
}
</
style
>
src/views/yqrange/range-setting.vue
0 → 100644
浏览文件 @
6e027e87
<
template
>
<div
class=
"yqrange-index-wrapper"
>
<!--
<bread-crumb
:curmbFirst=
"curmbFirst"
></bread-crumb>
-->
<div
class=
"yqrange-index-content"
id=
"screenSet"
>
<!--
<div
class=
"header-title"
>
云鹊小圈
</div>
-->
<el-form
ref=
"settingForm"
:model=
"settingForm"
label-width=
"150px"
label-suffix=
":"
class=
"basic-form"
>
<div
v-for=
"(item, index) in settingForm.settingData"
:key=
"index"
>
<el-form-item
:label=
"item.appTagName"
>
<el-radio-group
size=
"small"
v-model=
"item.showOff"
>
<el-radio
:label=
"1"
>
开启
</el-radio>
<el-radio
:label=
"0"
>
关闭
</el-radio>
</el-radio-group>
</el-form-item>
</div>
</el-form>
<div
style=
"margin-top: 60px;margin-left: 150px;"
>
<el-button
type=
"primary"
@
click=
"save()"
center
>
保存
</el-button>
<!--
<el-button
@
click=
"cancle()"
>
取 消
</el-button>
-->
</div>
</div>
</div>
</
template
>
<
script
>
import
{
openLoading
,
closeLoading
}
from
"../../utils/utils"
;
import
BreadCrumb
from
"@/components/breadcrumb.vue"
;
import
{
getRangeList
,
updateRangeStatus
,
getCircleSettingList
,
saveCircleSetting
}
from
"../../utils/yqrange/yqrangeApi"
;
export
default
{
components
:
{
BreadCrumb
},
data
(){
return
{
curmbFirst
:
'云鹊小圈'
,
showAllFlag
:
false
,
showNewFlag
:
false
,
searchForm
:
{
name
:
''
,
createdTime
:
''
,
// endTime: '',
userType
:
""
,
// 用户标识 1:内部用户 2:外部用户,
status
:
""
,
pageNo
:
1
,
pageSize
:
10
,
},
totalRows
:
0
,
tableData
:
[],
dialogSettingVisible
:
false
,
settingForm
:{
circleId
:
null
,
settingData
:
[]
}
}
},
created
()
{
this
.
circleId
=
this
.
$route
.
query
.
id
;
this
.
setting
();
},
methods
:
{
// 应用配置
setting
(){
let
params
=
{
circleId
:
this
.
circleId
// circleId: 22
}
getCircleSettingList
(
params
).
then
((
res
)
=>
{
closeLoading
(
this
);
if
(
res
.
code
==
"000000"
)
{
this
.
settingForm
.
settingData
=
res
.
data
;
}
else
{
this
.
settingForm
.
settingData
=
[];
}
if
(
this
.
settingForm
.
settingData
==
[]
||
this
.
settingForm
.
settingData
.
length
==
0
){
this
.
settingForm
.
settingData
=
[{
appTag
:
1
,
showOff
:
1
},
{
appTag
:
2
,
showOff
:
1
},
{
appTag
:
3
,
showOff
:
1
},
{
appTag
:
4
,
showOff
:
1
}];
}
for
(
let
i
=
0
;
i
<
this
.
settingForm
.
settingData
.
length
;
i
++
){
if
(
this
.
settingForm
.
settingData
[
i
].
appTag
==
1
){
this
.
settingForm
.
settingData
[
i
].
appTagName
=
"教培"
}
else
if
(
this
.
settingForm
.
settingData
[
i
].
appTag
==
2
){
this
.
settingForm
.
settingData
[
i
].
appTagName
=
"直播"
}
else
if
(
this
.
settingForm
.
settingData
[
i
].
appTag
==
3
){
this
.
settingForm
.
settingData
[
i
].
appTagName
=
"继教课程"
}
else
if
(
this
.
settingForm
.
settingData
[
i
].
appTag
==
4
){
this
.
settingForm
.
settingData
[
i
].
appTagName
=
"职称培训"
}
}
}).
catch
((
error
)
=>
{
this
.
$message
.
error
(
"请重试"
);
})
},
// 保存
save
(){
let
params
=
{
apps
:
this
.
settingForm
.
settingData
,
circleId
:
this
.
circleId
}
saveCircleSetting
(
params
).
then
((
res
)
=>
{
closeLoading
(
this
);
if
(
res
.
code
==
"000000"
)
{
this
.
$message
.
success
(
"保存成功!"
);
// this.$router.go(-1);
}
}).
catch
((
error
)
=>
{
this
.
$message
.
error
(
"请重试"
);
})
},
cancle
(){
this
.
$router
.
go
(
-
1
);
}
},
}
</
script
>
<
style
lang=
"scss"
>
.yqrange-index-wrapper
{
.yqrange-index-content
{
background
:
#fff
;
padding
:
10px
;
.header-title
{
padding
:
10px
12px
;
font-size
:
12px
;
color
:
#449284
;
border-bottom
:
1px
solid
#efefef
;
}
}
.el-button--text
{
color
:
#449284
;
font-size
:
14px
;
&
:
:
after
{
content
:
''
;
position
:
relative
;
height
:
14px
;
/*border-right: 1px solid #EBEEF5;*/
border-right
:
1px
solid
#aaaaaa
;
padding-right
:
10px
;
}
&
:last-of-type
{
&
:
:
after
{
content
:
''
;
position
:
relative
;
width
:
1px
;
height
:
14px
;
border-right
:
none
;
}
}
}
}
/*.range-make-box{*/
/*.el-message-box__btns{*/
/*margin-top: 30px;*/
/*}*/
/*}*/
</
style
>
src/views/yqrange/yq-range.vue
浏览文件 @
6e027e87
...
...
@@ -62,6 +62,7 @@
<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=
"rangeManage(scope.row)"
type=
"text"
size=
"small"
v-if=
"scope.row.status != 0"
>
管理
</el-button>
</div>
</
template
>
</el-table-column>
...
...
@@ -104,27 +105,6 @@
</div>
<!--<el-form-item label="直播">-->
<!--<el-radio-group size="small">-->
<!--<el-radio label="1">开启</el-radio>-->
<!--<el-radio label="0">关闭</el-radio>-->
<!--</el-radio-group>-->
<!--</el-form-item>-->
<!--<el-form-item label="继教课程">-->
<!--<el-radio-group size="small">-->
<!--<el-radio label="1">开启</el-radio>-->
<!--<el-radio label="0">关闭</el-radio>-->
<!--</el-radio-group>-->
<!--</el-form-item>-->
<!--<el-form-item label="职称培训">-->
<!--<el-radio-group size="small">-->
<!--<el-radio label="1">开启</el-radio>-->
<!--<el-radio label="0">关闭</el-radio>-->
<!--</el-radio-group>-->
<!--</el-form-item>-->
</el-form>
...
...
@@ -196,7 +176,7 @@ export default {
setTimeout
(()
=>
{
this
.
getUserAuth
();
},
1500
)
}
},
...
...
@@ -330,7 +310,15 @@ export default {
},
rangeManage
(
row
)
{
this
.
$router
.
push
({
path
:
'/range-manage'
,
query
:
{
id
:
row
.
id
,
name
:
row
.
name
}
})
},
//直播管理
liveManage
(
row
)
{
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录