Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZiBoYingJI
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kimber
ZiBoYingJI
Commits
d27e07b0
Commit
d27e07b0
authored
Aug 05, 2024
by
xinzhedeai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
监控配置
parent
29b7995b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
28 deletions
+62
-28
videoConfig.vue
src/views/kd/e/video/videoConfig.vue
+62
-28
No files found.
src/views/kd/e/video/videoConfig.vue
View file @
d27e07b0
...
...
@@ -167,21 +167,58 @@
style=
"width: 150px"
:disabled=
"editState == 3"
/>
<el-button
v-if=
"eIndex===dialog1Data.videoChannelList.length-1"
type=
"primary"
@
click=
"addEmployee"
:disabled=
"editState == 3"
>
新增
</el-button
>
<el-button
type=
"danger"
@
click=
"deleteEmployee(index, eIndex)"
v-if=
"eIndex
<
dialog1Data
.
videoChannelList
.
length-1
"
:disabled=
"editState == 3"
>
删除
</el-button
>
</div>
<div
style=
"margin: 10px 0; padding-left: 30px"
>
<el-input
v-model=
"employeeAddObj.channel"
placeholder=
"通道(如:1.hd.live)"
type=
"text"
style=
"width: 150px"
:disabled=
"editState == 3"
/>
<el-input
v-model=
"employeeAddObj.id"
placeholder=
"萤石云ID(G67791073)"
type=
"text"
style=
"width: 150px"
:disabled=
"editState == 3"
/>
<el-input
v-model=
"employeeAddObj.name"
placeholder=
"名称"
type=
"text"
style=
"width: 150px"
:disabled=
"editState == 3"
/>
<el-input
v-model=
"employeeAddObj.captcha"
placeholder=
"验证码"
type=
"text"
style=
"width: 150px"
:disabled=
"editState == 3"
/>
<el-input
v-model=
"employeeAddObj.remark"
placeholder=
"备注"
type=
"text"
style=
"width: 150px"
:disabled=
"editState == 3"
/>
<el-button
type=
"primary"
@
click=
"addEmployee"
:disabled=
"editState == 3"
>
添加
</el-button
>
</div>
</div>
<div
v-show=
"dialog1Editing"
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"text"
@
click=
"dialog1Show = false"
>
取消
</el-button>
...
...
@@ -313,16 +350,15 @@ export default {
appSecret
:
[{
required
:
true
,
message
:
"
请填写
"
}],
},
editState
:
0
,
// (刚打开窗口时)记录了上次窗口作用;(保存编辑时)记录了当前窗口作用; 0无 1新增 2修改 3查看
addingData
:
{
videoChannelList
:
[
{
employeeAddObj
:{
channel
:
""
,
id
:
""
,
name
:
""
,
remark
:
""
,
captcha
:
''
},
],
addingData
:
{
videoChannelList
:
[],
},
// 上次正在新增时的内容,下次打开dialog1窗口时记录下来
};
},
...
...
@@ -371,13 +407,14 @@ export default {
},
addEmployee
()
{
// 添加组成员
this
.
dialog1Data
.
videoChannelList
.
push
({
this
.
dialog1Data
.
videoChannelList
.
push
({...
this
.
employeeAddObj
});
this
.
employeeAddObj
=
{
channel
:
""
,
id
:
""
,
name
:
""
,
remark
:
""
,
captcha
:
''
}
);
}
},
deleteEmployee
(
index
,
eIndex
)
{
this
.
dialog1Data
.
videoChannelList
.
splice
(
...
...
@@ -411,10 +448,15 @@ export default {
this
.
$message
.
warning
(
'
所属矿山与所属企业不匹配,请重新选择
'
)
return
}
if
(
!
this
.
dialog1Data
.
videoChannelList
.
length
){
this
.
$message
.
warning
(
'
通道数据至少一条,请确认
'
)
return
}
if
(
!!
this
.
validData
(
this
.
dialog1Data
.
videoChannelList
)){
this
.
$message
.
warning
(
'
通道数据存在空项,请确认
'
)
return
}
this
.
dialog1Saving
=
true
;
const
mineInfo
=
this
.
getMineTypeByMineId
(
this
.
dialog1Data
.
mineId
)
this
.
dialog1Data
.
mineType
=
mineInfo
.
type
...
...
@@ -479,15 +521,7 @@ export default {
mineId
:
''
,
appKey
:
''
,
appSecret
:
''
,
videoChannelList
:
[
{
channel
:
""
,
id
:
""
,
name
:
""
,
remark
:
""
,
captcha
:
''
},
],
videoChannelList
:
[],
}
this
.
dialog1Show
=
true
;
this
.
$nextTick
(()
=>
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment