Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
X
xxx_phase2_web
Project overview
Project overview
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
夏敏伟
xxx_phase2_web
Commits
68bd5de4
Commit
68bd5de4
authored
Nov 21, 2023
by
夏敏伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改测试提出的bug
parent
2833ba7f
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
199 additions
and
188 deletions
+199
-188
src/api/resource.js
src/api/resource.js
+29
-29
src/view/ddkz/components/chatRoomMemberDialog.vue
src/view/ddkz/components/chatRoomMemberDialog.vue
+2
-2
src/view/ddkz/components/noticeDialog.vue
src/view/ddkz/components/noticeDialog.vue
+3
-1
src/view/sjgl/ddkzConfig/ddkzConfigApprove.vue
src/view/sjgl/ddkzConfig/ddkzConfigApprove.vue
+2
-2
src/view/sjgl/ddkzConfig/ddkzConfigExercise.vue
src/view/sjgl/ddkzConfig/ddkzConfigExercise.vue
+137
-134
src/view/sjgl/ddkzConfig/ddkzConfigList.vue
src/view/sjgl/ddkzConfig/ddkzConfigList.vue
+1
-1
src/view/xxxl/tklb.vue
src/view/xxxl/tklb.vue
+5
-4
src/view/xxxl/xdzylb.vue
src/view/xxxl/xdzylb.vue
+20
-15
No files found.
src/api/resource.js
View file @
68bd5de4
import
{
get
,
post
,
delete_util
}
from
"
../util/http_util
"
;
import
{
get
,
post
,
delete_util
}
from
"
../util/http_util
"
;
//#region 公共
//#region 公共
//服务前缀
//服务前缀
...
@@ -44,9 +44,9 @@ export function queryQuestionTree() {
...
@@ -44,9 +44,9 @@ export function queryQuestionTree() {
* @param {*} treeId
* @param {*} treeId
* @returns
* @returns
*/
*/
export
function
queryQuestion
(
pageNum
,
pageSize
,
content
,
treeId
)
{
export
function
queryQuestion
(
pageNum
,
pageSize
,
content
,
treeId
,
startDate
,
endDate
)
{
let
url
=
`
${
PREFIX
}
/queryQuestion`
;
let
url
=
`
${
PREFIX
}
/queryQuestion`
;
url
+=
addParam
({
pageNum
,
pageSize
,
content
,
treeId
});
url
+=
addParam
({
pageNum
,
pageSize
,
content
,
treeId
,
startDate
,
endDate
});
return
get
(
url
);
return
get
(
url
);
}
}
...
@@ -89,8 +89,8 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
...
@@ -89,8 +89,8 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
* @param {*} measure
* @param {*} measure
* @returns
* @returns
*/
*/
export
function
addNewQuestion
(
param
)
{
export
function
addNewQuestion
(
param
)
{
return
post
(
`
${
PREFIX
}
/addQuestion`
,
param
);
return
post
(
`
${
PREFIX
}
/addQuestion`
,
param
);
}
}
/**
/**
...
@@ -102,8 +102,8 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
...
@@ -102,8 +102,8 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
* @param {*} measure
* @param {*} measure
* @returns
* @returns
*/
*/
export
function
UpdateQuestion
(
param
)
{
export
function
UpdateQuestion
(
param
)
{
return
post
(
`
${
PREFIX
}
/updateQuestion`
,
param
);
return
post
(
`
${
PREFIX
}
/updateQuestion`
,
param
);
}
}
/**
/**
...
@@ -114,8 +114,8 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
...
@@ -114,8 +114,8 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
* @param {*} parentCode
* @param {*} parentCode
* @returns
* @returns
*/
*/
export
function
addQuestionTreeNode
(
param
)
{
export
function
addQuestionTreeNode
(
param
)
{
return
post
(
`
${
PREFIX
}
/addQuestionTreeNode`
,
param
);
return
post
(
`
${
PREFIX
}
/addQuestionTreeNode`
,
param
);
}
}
/**
/**
...
@@ -126,8 +126,8 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
...
@@ -126,8 +126,8 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
* @param {*} parentCode
* @param {*} parentCode
* @returns
* @returns
*/
*/
export
function
updateQuestionTreeNode
(
param
)
{
export
function
updateQuestionTreeNode
(
param
)
{
return
post
(
`
${
PREFIX
}
/updateQuestionTreeNode`
,
param
);
return
post
(
`
${
PREFIX
}
/updateQuestionTreeNode`
,
param
);
}
}
/**
/**
...
@@ -135,7 +135,7 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
...
@@ -135,7 +135,7 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
* @param {*} id
* @param {*} id
* @returns
* @returns
*/
*/
export
function
removeQuestionTreeNode
(
id
)
{
export
function
removeQuestionTreeNode
(
id
)
{
return
delete_util
(
`
${
PREFIX
}
/removeQuestionTreeNode?id=
${
id
}
`
);
return
delete_util
(
`
${
PREFIX
}
/removeQuestionTreeNode?id=
${
id
}
`
);
}
}
...
@@ -144,15 +144,15 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
...
@@ -144,15 +144,15 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
* @param {*} ids
* @param {*} ids
* @returns
* @returns
*/
*/
export
function
removeQuestion
(
ids
)
{
export
function
removeQuestion
(
ids
)
{
return
delete_util
(
`
${
PREFIX
}
/removeQuestion`
,
ids
);
return
delete_util
(
`
${
PREFIX
}
/removeQuestion`
,
ids
);
}
}
/**
/**
* 想定作业查询选项树
* 想定作业查询选项树
* @returns
* @returns
*/
*/
export
function
queryQuestionOptionsTree
(
type
)
{
export
function
queryQuestionOptionsTree
(
type
)
{
return
get
(
`
${
PREFIX
}
/queryQuestionOptionsTree?type=
${
type
}
`
);
return
get
(
`
${
PREFIX
}
/queryQuestionOptionsTree?type=
${
type
}
`
);
}
}
...
@@ -164,8 +164,8 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
...
@@ -164,8 +164,8 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
* @param {*} name
* @param {*} name
* @returns
* @returns
*/
*/
export
function
addWebsite
(
param
)
{
export
function
addWebsite
(
param
)
{
return
post
(
`
${
PREFIX_Sentiment
}
/addWebsite`
,
param
);
return
post
(
`
${
PREFIX_Sentiment
}
/addWebsite`
,
param
);
}
}
/**
/**
...
@@ -173,8 +173,8 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
...
@@ -173,8 +173,8 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
* @param {*} ids
* @param {*} ids
* @returns
* @returns
*/
*/
export
function
removeWebsite
(
ids
)
{
export
function
removeWebsite
(
ids
)
{
return
delete_util
(
`
${
PREFIX_Sentiment
}
/removeWebsite`
,
ids
);
return
delete_util
(
`
${
PREFIX_Sentiment
}
/removeWebsite`
,
ids
);
}
}
/**
/**
...
@@ -185,8 +185,8 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
...
@@ -185,8 +185,8 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
* @param {*} name
* @param {*} name
* @returns
* @returns
*/
*/
export
function
editWebsite
(
ids
)
{
export
function
editWebsite
(
ids
)
{
return
post
(
`
${
PREFIX_Sentiment
}
/updateWebsite`
,
ids
);
return
post
(
`
${
PREFIX_Sentiment
}
/updateWebsite`
,
ids
);
}
}
/**
/**
...
@@ -195,8 +195,8 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
...
@@ -195,8 +195,8 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
* @param {*} name
* @param {*} name
* @returns
* @returns
*/
*/
export
function
addCountry
(
param
)
{
export
function
addCountry
(
param
)
{
return
post
(
`
${
PREFIX_Sentiment
}
/addSource`
,
param
);
return
post
(
`
${
PREFIX_Sentiment
}
/addSource`
,
param
);
}
}
/**
/**
...
@@ -205,7 +205,7 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
...
@@ -205,7 +205,7 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
* @param {*} name
* @param {*} name
* @returns
* @returns
*/
*/
export
function
editCountry
(
param
)
{
export
function
editCountry
(
param
)
{
return
post
(
`
${
PREFIX_Sentiment
}
/updateSource?id=
${
param
.
id
}
&name=
${
param
.
name
}
`
);
return
post
(
`
${
PREFIX_Sentiment
}
/updateSource?id=
${
param
.
id
}
&name=
${
param
.
name
}
`
);
}
}
...
@@ -214,7 +214,7 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
...
@@ -214,7 +214,7 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
* @param {*} id
* @param {*} id
* @returns
* @returns
*/
*/
export
function
removeCountry
(
id
)
{
export
function
removeCountry
(
id
)
{
return
post
(
`
${
PREFIX_Sentiment
}
/removeSource?id=
${
id
}
`
);
return
post
(
`
${
PREFIX_Sentiment
}
/removeSource?id=
${
id
}
`
);
}
}
...
@@ -225,9 +225,9 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
...
@@ -225,9 +225,9 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
* @param {*} parentId
* @param {*} parentId
* @returns
* @returns
*/
*/
export
function
addQuestionOptionsTreeNode
(
label
,
type
,
parentId
)
{
export
function
addQuestionOptionsTreeNode
(
label
,
type
,
parentId
)
{
let
url
=
`
${
PREFIX
}
/addQuestionOptionsTreeNode`
;
let
url
=
`
${
PREFIX
}
/addQuestionOptionsTreeNode`
;
url
+=
addParam
({
label
,
type
,
parentId
});
url
+=
addParam
({
label
,
type
,
parentId
});
return
post
(
url
);
return
post
(
url
);
}
}
...
@@ -236,7 +236,7 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
...
@@ -236,7 +236,7 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
* @param {*} id
* @param {*} id
* @returns
* @returns
*/
*/
export
function
removeQuestionOptionsTreeNode
(
id
)
{
export
function
removeQuestionOptionsTreeNode
(
id
)
{
return
delete_util
(
`
${
PREFIX
}
/removeQuestionOptionsTreeNode?id=
${
id
}
`
);
return
delete_util
(
`
${
PREFIX
}
/removeQuestionOptionsTreeNode?id=
${
id
}
`
);
}
}
...
@@ -246,7 +246,7 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
...
@@ -246,7 +246,7 @@ export function queryAnswerQuestionRecord(questionId, pageNum, pageSize) {
* @param {*} id
* @param {*} id
* @returns
* @returns
*/
*/
export
function
updateQuestionOptionsTreeNode
(
label
,
id
)
{
export
function
updateQuestionOptionsTreeNode
(
label
,
id
)
{
return
post
(
`
${
PREFIX
}
/updateQuestionOptionsTreeNode?label=
${
label
}
&id=
${
id
}
`
);
return
post
(
`
${
PREFIX
}
/updateQuestionOptionsTreeNode?label=
${
label
}
&id=
${
id
}
`
);
}
}
//#endregion
//#endregion
\ No newline at end of file
src/view/ddkz/components/chatRoomMemberDialog.vue
View file @
68bd5de4
...
@@ -115,7 +115,7 @@ export default {
...
@@ -115,7 +115,7 @@ export default {
<
style
lang=
"scss"
>
<
style
lang=
"scss"
>
.info-personInfo
{
.info-personInfo
{
width
:
100%
;
width
:
100%
;
height
:
4
0
%
;
height
:
4
2
%
;
overflow-y
:
auto
;
overflow-y
:
auto
;
.title
{
.title
{
...
@@ -230,7 +230,7 @@ export default {
...
@@ -230,7 +230,7 @@ export default {
}
}
}
}
.personInfo-footer
{
.personInfo-footer
{
width
:
100
%
;
width
:
98
%
;
height
:
50px
;
height
:
50px
;
text-align
:
right
;
text-align
:
right
;
}
}
...
...
src/view/ddkz/components/noticeDialog.vue
View file @
68bd5de4
...
@@ -138,7 +138,9 @@ export default {
...
@@ -138,7 +138,9 @@ export default {
text-align
:
center
;
text-align
:
center
;
.el-dialog__headerbtn
{
.el-dialog__headerbtn
{
top
:
40px
;
top
:
35px
;
right
:
30px
;
font-size
:
25px
;
}
}
}
}
...
...
src/view/sjgl/ddkzConfig/ddkzConfigApprove.vue
View file @
68bd5de4
...
@@ -85,7 +85,7 @@ export default {
...
@@ -85,7 +85,7 @@ export default {
})
})
},
},
searchChatList
()
{
searchChatList
()
{
if
(
this
.
form
.
dateRange
.
length
==
2
)
{
if
(
this
.
form
.
dateRange
&&
this
.
form
.
dateRange
.
length
==
2
)
{
this
.
getApprovalPendingFn
(
this
.
form
.
chatRoomName
,
this
.
pageObj
.
currentPage
,
this
.
pageObj
.
pageSize
,
this
.
form
.
dateRange
[
0
],
this
.
form
.
dateRange
[
1
],
this
.
userInfo
.
account
,
this
.
form
.
status
);
this
.
getApprovalPendingFn
(
this
.
form
.
chatRoomName
,
this
.
pageObj
.
currentPage
,
this
.
pageObj
.
pageSize
,
this
.
form
.
dateRange
[
0
],
this
.
form
.
dateRange
[
1
],
this
.
userInfo
.
account
,
this
.
form
.
status
);
}
else
{
}
else
{
this
.
getApprovalPendingFn
(
this
.
form
.
chatRoomName
,
this
.
pageObj
.
currentPage
,
this
.
pageObj
.
pageSize
,
null
,
null
,
this
.
userInfo
.
account
,
this
.
form
.
status
);
this
.
getApprovalPendingFn
(
this
.
form
.
chatRoomName
,
this
.
pageObj
.
currentPage
,
this
.
pageObj
.
pageSize
,
null
,
null
,
this
.
userInfo
.
account
,
this
.
form
.
status
);
...
@@ -94,7 +94,7 @@ export default {
...
@@ -94,7 +94,7 @@ export default {
getApprovalPendingFn
(...
params
)
{
getApprovalPendingFn
(...
params
)
{
getApprovalPending
(...
params
).
then
(
res
=>
{
getApprovalPending
(...
params
).
then
(
res
=>
{
this
.
meetingList
=
res
.
records
;
this
.
meetingList
=
res
.
records
;
this
.
pageObj
.
currentPage
=
res
.
curr
ent
Page
;
this
.
pageObj
.
currentPage
=
res
.
currPage
;
this
.
pageObj
.
pageSize
=
res
.
pageSize
;
this
.
pageObj
.
pageSize
=
res
.
pageSize
;
this
.
pageObj
.
total
=
res
.
total
;
this
.
pageObj
.
total
=
res
.
total
;
}).
catch
(
error
=>
{
}).
catch
(
error
=>
{
...
...
src/view/sjgl/ddkzConfig/ddkzConfigExercise.vue
View file @
68bd5de4
<
template
>
<
template
>
<el-dialog
title=
"演习配置"
:visible.sync=
"dialogVisible"
width=
"40%"
:before-close=
"handleClose"
@
open=
"handleDialogOpen"
>
<el-dialog
class=
"myExerciseDialog"
title=
"演习配置"
:visible.sync=
"dialogVisible"
width=
"40%"
:before-close=
"handleClose"
@
open=
"handleDialogOpen"
>
<div
class=
"configExercise"
>
<div
class=
"configExercise"
>
<el-form
class=
"yhf"
v-for=
"(item, index) in formData.teams"
:key=
"index"
label-width=
"80px"
>
<el-form
class=
"yhf"
v-for=
"(item, index) in formData.teams"
:key=
"index"
label-width=
"80px"
>
<el-form-item
label=
"队伍名称"
>
<el-form-item
label=
"队伍名称"
>
...
@@ -348,7 +349,8 @@ export default {
...
@@ -348,7 +349,8 @@ export default {
</
script
>
</
script
>
<
style
lang=
"scss"
>
<
style
lang=
"scss"
>
.el-dialog
{
.myExerciseDialog
{
.el-dialog
{
padding
:
20px
;
padding
:
20px
;
box-sizing
:
border-box
;
box-sizing
:
border-box
;
background-color
:
transparent
;
background-color
:
transparent
;
...
@@ -525,6 +527,7 @@ export default {
...
@@ -525,6 +527,7 @@ export default {
}
}
}
}
}
}
}
}
}
...
...
src/view/sjgl/ddkzConfig/ddkzConfigList.vue
View file @
68bd5de4
...
@@ -129,7 +129,7 @@ export default {
...
@@ -129,7 +129,7 @@ export default {
});
});
},
},
searchChatList
()
{
searchChatList
()
{
if
(
this
.
form
.
dateRange
.
length
==
2
)
{
if
(
this
.
form
.
dateRange
&&
this
.
form
.
dateRange
.
length
==
2
)
{
this
.
queryChatRoomListFn
({
startTime
:
this
.
form
.
dateRange
[
0
],
endTime
:
this
.
form
.
dateRange
[
1
],
userId
:
this
.
userInfo
.
account
,
status
:
this
.
form
.
status
==
''
?
null
:
this
.
form
.
status
,
keyword
:
this
.
form
.
keyword
==
''
?
null
:
this
.
form
.
keyword
})
this
.
queryChatRoomListFn
({
startTime
:
this
.
form
.
dateRange
[
0
],
endTime
:
this
.
form
.
dateRange
[
1
],
userId
:
this
.
userInfo
.
account
,
status
:
this
.
form
.
status
==
''
?
null
:
this
.
form
.
status
,
keyword
:
this
.
form
.
keyword
==
''
?
null
:
this
.
form
.
keyword
})
}
else
{
}
else
{
this
.
queryChatRoomListFn
({
userId
:
this
.
userInfo
.
account
,
status
:
this
.
form
.
status
==
''
?
null
:
this
.
form
.
status
,
keyword
:
this
.
form
.
keyword
==
''
?
null
:
this
.
form
.
keyword
})
this
.
queryChatRoomListFn
({
userId
:
this
.
userInfo
.
account
,
status
:
this
.
form
.
status
==
''
?
null
:
this
.
form
.
status
,
keyword
:
this
.
form
.
keyword
==
''
?
null
:
this
.
form
.
keyword
})
...
...
src/view/xxxl/tklb.vue
View file @
68bd5de4
...
@@ -198,13 +198,14 @@ export default {
...
@@ -198,13 +198,14 @@ export default {
//题库修改弹出框
//题库修改弹出框
handleEdit
(
item
)
{
handleEdit
(
item
)
{
let
_this
=
this
;
let
_this
=
this
;
_this
.
centerDialogVisible_edit
=
true
;
setTimeout
(
function
()
{
_this
.
$refs
.
numberValidateForm1
.
resetFields
();
_this
.
form_edit
=
{
_this
.
form_edit
=
{
name
:
item
.
questionsName
,
name
:
item
.
questionsName
,
id
:
item
.
id
,
id
:
item
.
id
,
};
};
_this
.
centerDialogVisible_edit
=
true
;
setTimeout
(
function
()
{
_this
.
$refs
.
numberValidateForm1
.
resetFields
();
},
200
)
},
200
)
},
},
//题库删除
//题库删除
...
...
src/view/xxxl/xdzylb.vue
View file @
68bd5de4
...
@@ -3,11 +3,11 @@
...
@@ -3,11 +3,11 @@
<div
class=
"top-div"
>
<div
class=
"top-div"
>
<el-input
v-model=
"wd_name"
suffix-icon=
"el-icon-search"
placeholder=
"请输入关键字"
></el-input>
<el-input
v-model=
"wd_name"
suffix-icon=
"el-icon-search"
placeholder=
"请输入关键字"
></el-input>
<div
class=
"block sjxz"
>
<div
class=
"block sjxz"
>
<el-date-picker
value-format=
"yyyy-MM-dd
HH:mm:ss
"
v-model=
"sc_time"
type=
"daterange"
range-separator=
"至"
<el-date-picker
value-format=
"yyyy-MM-dd"
v-model=
"sc_time"
type=
"daterange"
range-separator=
"至"
start-placeholder=
"上传起始时间"
end-placeholder=
"上传结束时间"
:default-time=
"['00:00:00', '23:59:59']"
>
start-placeholder=
"上传起始时间"
end-placeholder=
"上传结束时间"
>
</el-date-picker>
</el-date-picker>
</div>
</div>
<div
class=
"button-discuss"
@
click=
"search
s
()"
>
搜索
</div>
<div
class=
"button-discuss"
@
click=
"search
List
()"
>
搜索
</div>
</div>
</div>
<div
class=
"bottom-div"
>
<div
class=
"bottom-div"
>
<div
class=
"table-div"
>
<div
class=
"table-div"
>
...
@@ -235,6 +235,10 @@ export default {
...
@@ -235,6 +235,10 @@ export default {
let
_this
=
this
;
let
_this
=
this
;
_this
.
handleCurrentChange_lb
(
1
);
_this
.
handleCurrentChange_lb
(
1
);
},
},
//搜索列表
searchList
()
{
this
.
handleCurrentChange_lb
(
1
);
},
//pageSize改变事件
//pageSize改变事件
handleSizeChange
(
val
)
{
handleSizeChange
(
val
)
{
this
.
pageSize
=
val
;
this
.
pageSize
=
val
;
...
@@ -256,7 +260,7 @@ export default {
...
@@ -256,7 +260,7 @@ export default {
name
:
_this
.
wd_name
==
""
?
null
:
_this
.
wd_name
,
name
:
_this
.
wd_name
==
""
?
null
:
_this
.
wd_name
,
};
};
queryQuestion
(
pageNum
,
this
.
pageSize
,
this
.
wd_name
,
this
.
treeId
)
queryQuestion
(
pageNum
,
this
.
pageSize
,
_this
.
paramData
.
name
,
this
.
treeId
,
_this
.
paramData
.
beginTime
,
_this
.
paramData
.
endTime
)
.
then
((
res
)
=>
{
.
then
((
res
)
=>
{
this
.
tableData
=
res
.
list
;
this
.
tableData
=
res
.
list
;
this
.
total
=
res
.
totals
;
this
.
total
=
res
.
totals
;
...
@@ -407,6 +411,7 @@ export default {
...
@@ -407,6 +411,7 @@ export default {
overflow
:
hidden
;
overflow
:
hidden
;
background-size
:
100%
100%
;
background-size
:
100%
100%
;
color
:
white
;
color
:
white
;
.el-tabs--card
>
.el-tabs__header
{
.el-tabs--card
>
.el-tabs__header
{
border-bottom
:
1px
solid
#146a80
;
border-bottom
:
1px
solid
#146a80
;
}
}
...
...
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