Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fns_backend
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Zhang Xiaojie
fns_backend
Commits
d93794c1
Commit
d93794c1
authored
Sep 27, 2021
by
Zhang Xiaojie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:ui
parent
bf4dc88a
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
+7
-6
index.vue
src/views/Root/Activity/index.vue
+4
-4
changePhone.vue
src/views/Root/Security/changePhone.vue
+1
-1
index.vue
src/views/Root/index.vue
+2
-1
No files found.
src/views/Root/Activity/index.vue
View file @
d93794c1
...
@@ -185,21 +185,21 @@ export default Vue.extend({
...
@@ -185,21 +185,21 @@ export default Vue.extend({
this
.
title
=
"删除活动"
;
this
.
title
=
"删除活动"
;
this
.
text
=
"确定删除该活动吗?"
;
this
.
text
=
"确定删除该活动吗?"
;
},
},
handleOk
(
record
:
any
)
{
async
handleOk
(
record
:
any
)
{
this
.
modalLoading
=
true
;
this
.
modalLoading
=
true
;
try
{
try
{
if
(
this
.
type
==
modal
.
on
)
{
if
(
this
.
type
==
modal
.
on
)
{
ActivityService
.
getInstance
().
modifyActivityStatus
({
await
ActivityService
.
getInstance
().
modifyActivityStatus
({
uuid
:
this
.
uuid
,
uuid
:
this
.
uuid
,
activity_status
:
activityStatus
.
published
,
activity_status
:
activityStatus
.
published
,
});
});
}
else
if
(
this
.
type
==
modal
.
off
)
{
}
else
if
(
this
.
type
==
modal
.
off
)
{
ActivityService
.
getInstance
().
modifyActivityStatus
({
await
ActivityService
.
getInstance
().
modifyActivityStatus
({
uuid
:
this
.
uuid
,
uuid
:
this
.
uuid
,
activity_status
:
activityStatus
.
editable
,
activity_status
:
activityStatus
.
editable
,
});
});
}
else
if
(
this
.
type
==
modal
.
delete
)
{
}
else
if
(
this
.
type
==
modal
.
delete
)
{
ActivityService
.
getInstance
().
deleteActivity
(
this
.
uuid
);
await
ActivityService
.
getInstance
().
deleteActivity
(
this
.
uuid
);
}
}
this
.
fetchList
();
this
.
fetchList
();
this
.
show
=
false
;
this
.
show
=
false
;
...
...
src/views/Root/Security/changePhone.vue
View file @
d93794c1
...
@@ -124,7 +124,7 @@ export default Vue.extend({
...
@@ -124,7 +124,7 @@ export default Vue.extend({
data
()
{
data
()
{
const
userPhone
=
getUserMsg
()?.
phone
;
const
userPhone
=
getUserMsg
()?.
phone
;
return
{
return
{
labelCol
:
{
span
:
1
1
},
labelCol
:
{
span
:
1
0
},
wrapperCol
:
{
span
:
10
},
wrapperCol
:
{
span
:
10
},
userPhone
,
userPhone
,
changeSecurityPhoneForm
:
{
changeSecurityPhoneForm
:
{
...
...
src/views/Root/index.vue
View file @
d93794c1
<
template
>
<
template
>
<div>
<div>
<a-layout
id=
"components-layout-demo-fixed-sider"
style=
"m
in
-height: 100vh"
>
<a-layout
id=
"components-layout-demo-fixed-sider"
style=
"m
ax
-height: 100vh"
>
<a-layout-header
:style=
"
{ position: 'fixed', zIndex: 1, width: '100%' }" >
<a-layout-header
:style=
"
{ position: 'fixed', zIndex: 1, width: '100%' }" >
<div
class=
"flex justify-between items-center h-full"
>
<div
class=
"flex justify-between items-center h-full"
>
<div
class=
"text-center text-lg my-3 flex font-semibold"
>
<div
class=
"text-center text-lg my-3 flex font-semibold"
>
...
@@ -58,6 +58,7 @@
...
@@ -58,6 +58,7 @@
background: '#fff',
background: '#fff',
textAlign: 'center',
textAlign: 'center',
}"
}"
style=
"min-height: 85vh"
>
>
<router-view
/>
<router-view
/>
</div>
</div>
...
...
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