Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
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
罗超
SuperMan
Commits
a5ab633b
Commit
a5ab633b
authored
May 23, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交代码
parent
5654acd9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
ExaminationStatistics.vue
src/components/administrative/ExaminationStatistics.vue
+1
-1
index.vue
src/components/index.vue
+4
-1
No files found.
src/components/administrative/ExaminationStatistics.vue
View file @
a5ab633b
...
...
@@ -469,7 +469,7 @@ export default {
this
.
stringPerons
=
(
dt
.
getMonth
()
==
0
?(
dt
.
getFullYear
()
-
1
):
dt
.
getFullYear
())
+
''
+
(
dt
.
getMonth
().
toString
().
length
<
2
?
'0'
:
''
)
+
(
dt
.
getMonth
()
==
0
?
12
:
dt
.
getMonth
()
+
1
);
let
cont
=
dt
.
getMonth
()
for
(
let
i
=
1
;
i
<=
cont
;
i
++
){
for
(
let
i
=
1
;
i
<=
(
cont
+
1
)
;
i
++
){
let
o
=
i
<
10
?
'0'
+
i
:
i
;
this
.
periodsList
.
push
({
label
:
`2019
${
o
}
`
,
...
...
src/components/index.vue
View file @
a5ab633b
...
...
@@ -826,7 +826,7 @@
<button
class=
"normalBtn"
@
click=
"updateTeamName"
>
保存
</button>
</div>
</el-dialog>
<el-dialog
custom-class=
'w800 PingFangSC'
:title=
"dialogTitleNot"
:visible
.
sync=
"outerVisibleNot"
center
:before-close=
"closeChangeMachie"
>
<el-dialog
custom-class=
'w800 PingFangSC'
:title=
"dialogTitleNot"
:visible
.
sync=
"outerVisibleNot"
center
:before-close=
"closeChangeMachie
2
"
>
<div>
<p
style=
"text-align: right; padding: 5px 0;font-size: 12px;"
>
{{detailMessage.EmName}}
{{detailMessage.UpdateTime}}
</p>
<div
v-html=
"detailMessage.Content"
>
...
...
@@ -1491,6 +1491,9 @@ export default {
dom
.
href
=
obj
.
Url
;
dom
.
click
();
},
closeChangeMachie2
(
done
){
this
.
outerVisibleNot
=
false
},
closeChangeMachie
(
done
)
{
//弹出框关闭初始化弹框内表单
// done();
this
.
saleRnkShow
=
false
...
...
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