Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
NFT
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
hanfeng zhang
NFT
Commits
a405ce57
Commit
a405ce57
authored
Jul 29, 2021
by
hanfeng zhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
321
parent
525f49ed
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
89 additions
and
13 deletions
+89
-13
contactqr.png
public/img/mokeImg/contactqr.png
+0
-0
deving.png
public/img/mokeImg/deving.png
+0
-0
spirt.png
public/img/mokeImg/spirt.png
+0
-0
index.ts
src/router/index.ts
+16
-0
index.vue
src/view/Home/index.vue
+5
-3
index.vue
src/view/Mine/index.vue
+3
-3
index.vue
src/view/NFT/Detail/index.vue
+4
-4
Contact.vue
src/view/Other/Contact.vue
+9
-1
Ondev.vue
src/view/Other/Ondev.vue
+24
-0
index.vue
src/view/User/Security/index.vue
+26
-0
index.vue
src/view/User/index.vue
+2
-2
No files found.
public/img/mokeImg/contactqr.png
0 → 100644
View file @
a405ce57
16.1 KB
public/img/mokeImg/deving.png
0 → 100644
View file @
a405ce57
20.7 KB
public/img/mokeImg/spirt.png
0 → 100644
View file @
a405ce57
21.2 KB
src/router/index.ts
View file @
a405ce57
...
...
@@ -166,6 +166,22 @@ const routes: Array<RouteConfig> = [
]
},
{
path
:
'/deving'
,
name
:
'Deving'
,
component
:
()
=>
import
(
"@/view/Other/Ondev.vue"
),
meta
:{
title
:
'该功能未开放'
}
},
{
path
:
'/contact'
,
name
:
'Contact'
,
component
:
()
=>
import
(
"@/view/Other/Contact.vue"
),
meta
:{
title
:
'联系我们'
}
},
{
path
:
'*'
,
redirect
:
{
name
:
'Home'
}
}
...
...
src/view/Home/index.vue
View file @
a405ce57
...
...
@@ -2,10 +2,12 @@
<Layout-Main>
<div
class=
"banner w-full relative"
>
<div
class=
" absolute w-full flex py-5 px-5 justify-between"
>
<div
@
click=
"search"
><app-icon
name=
"icon-xingzhuang"
size=
"24px"
></app-icon></div>
<div
@
click=
"search"
>
<!--
<app-icon
name=
"icon-xingzhuang"
size=
"24px"
></app-icon>
-->
</div>
<div
@
click=
"info"
>
<van-badge
:content=
"
5
"
>
<app-icon
name=
"icon-xiaoxi"
size=
"24px"
></app-icon>
<van-badge
:content=
"
0
"
>
<app-icon
name=
"icon-xiaoxi"
size=
"24px"
@
click
.
native=
'$router.push(
{name:"Deving"})'
>
</app-icon>
</van-badge>
</div>
</div>
...
...
src/view/Mine/index.vue
View file @
a405ce57
...
...
@@ -54,9 +54,9 @@
</div>
<div
class=
'cells w-11/12 mx-auto text-font-white mt-3'
>
<app-cell
text=
'收藏'
boxType=
'border'
labelIcon=
'icon-heart'
icon=
'icon-xiayibu'
@
click
.
native=
'cellClick("Collection")'
></app-cell>
<app-cell
text=
'安全中心'
boxType=
'border'
labelIcon=
'icon-anquanzhongxin89'
icon=
'icon-xiayibu'
></app-cell>
<app-cell
text=
'联系我们'
boxType=
'border'
labelIcon=
'icon-lianxiwomen'
icon=
'icon-xiayibu'
></app-cell>
<app-cell
text=
'设置'
boxType=
'border'
labelIcon=
'icon-setting'
icon=
'icon-xiayibu'
></app-cell>
<app-cell
text=
'安全中心'
boxType=
'border'
labelIcon=
'icon-anquanzhongxin89'
icon=
'icon-xiayibu'
@
click
.
native=
'$router.push(
{name:"Deving"})'
>
</app-cell>
<app-cell
text=
'联系我们'
boxType=
'border'
labelIcon=
'icon-lianxiwomen'
icon=
'icon-xiayibu'
@
click
.
native=
'$router.push(
{name:"Contact"})'
>
</app-cell>
<app-cell
text=
'设置'
boxType=
'border'
labelIcon=
'icon-setting'
icon=
'icon-xiayibu'
@
click
.
native=
'$router.push(
{name:"Deving"})'
>
</app-cell>
<div
class=
'h-16'
></div>
</div>
</Layout-Main>
...
...
src/view/NFT/Detail/index.vue
View file @
a405ce57
...
...
@@ -183,10 +183,10 @@
v-if=
"!$route.query.officia"
>
<div
class=
"w-10/12 pt-8"
v-if=
"showoverlay"
>
<app-cell
text=
"
文件类型"
value=
"png
"
class=
"my-1"
></app-cell>
<app-cell
text=
"
NFT类型"
:value=
"nftData.category
"
class=
"my-1"
></app-cell>
<app-cell
text=
"文件名"
:value=
"nftData.fileName"
:value=
"nftData.fileName
|| '未上传文件'
"
class=
"my-1"
></app-cell>
<div
class=
"flex justify-center"
>
...
...
@@ -240,10 +240,10 @@
v-else
>
<div
class=
"w-10/12 pt-8"
v-if=
"showoverlay"
>
<app-cell
text=
"
文件类型"
value=
"png
"
class=
"my-1"
></app-cell>
<app-cell
text=
"
NFT类型"
:value=
"nftData.category
"
class=
"my-1"
></app-cell>
<app-cell
text=
"文件名"
:value=
"nftData.fileName"
:value=
"nftData.fileName
|| '未上传文件'
"
class=
"my-1"
></app-cell>
<div
class=
"flex justify-center"
>
...
...
src/view/Other/Contact.vue
View file @
a405ce57
<
template
>
<Layout-Child>
<div
class=
"full-height flex justify-center items-center"
>
<div
class=
" relative"
>
<img
src=
"/img/mokeImg/spirt.png"
class=
'self-center mx-auto'
>
<div
>
<img
src=
"/img/mokeImg/contactqr.png"
class=
"p-8 bg-font-light-black rounded"
>
</div>
<div
class=
" text-font-dark-blue text-center py-5"
>
更多内容,请关注公众号
</div>
</div>
</div>
</Layout-Child>
</
template
>
...
...
src/view/Other/Ondev.vue
0 → 100644
View file @
a405ce57
<
template
>
<Layout-Child>
<div
class=
"full-height flex justify-center items-center"
>
<div>
<img
src=
"/img/mokeImg/deving.png"
alt=
""
>
<div
class=
"text-center text-font-dark-blue"
>
功能正在紧张开发中.
</div>
</div>
</div>
</Layout-Child>
</
template
>
<
script
lang=
"ts"
>
import
Vue
from
'vue'
;
export
default
Vue
.
extend
({
components
:{
'Layout-Child'
:()
=>
import
(
'@/layout/Child.vue'
),
},
});
</
script
>
src/view/User/Security/index.vue
View file @
a405ce57
<
template
>
<Layout-Child>
<div
class=
"full-page flex"
>
<img
src=
"/img/mokeImg/deving.png"
alt=
""
>
</div>
</Layout-Child>
</
template
>
<
script
lang=
"ts"
>
import
Vue
from
'vue'
;
export
default
Vue
.
extend
({
data
(){
return
{
}
},
components
:{
'Layout-Child'
:()
=>
import
(
'@/layout/Child.vue'
),
'app-cell'
:()
=>
import
(
'@/components/common/Cell.vue'
),
'app-btn'
:()
=>
import
(
'@/components/common/Btn.vue'
)
},
});
</
script
>
src/view/User/index.vue
View file @
a405ce57
...
...
@@ -9,8 +9,8 @@
<app-cell
text=
'手机号'
boxType=
'border'
type=
'click'
:value=
'userInfo.telephone?userInfo.telephone:""'
></app-cell>
<app-cell
text=
'邮箱绑定'
boxType=
'border'
:value=
'userInfo.email?userInfo.email:""'
icon=
'icon-xiayibu'
@
click
.
native=
"goEdit(
{type:'email',title:'邮箱绑定'})">
</app-cell>
<app-cell
text=
'个性签名'
boxType=
'border'
icon=
'icon-xiayibu'
@
click
.
native=
"goEdit(
{type:'signature',title:'个性签名'})">
</app-cell>
<app-cell
text=
'安全中心'
boxType=
'border'
icon=
'icon-xiayibu'
></app-cell>
<app-cell
text=
'消息管理'
boxType=
'border'
icon=
'icon-xiayibu'
></app-cell>
<app-cell
text=
'安全中心'
boxType=
'border'
icon=
'icon-xiayibu'
@
click
.
native=
'$router.push(
{name:"Deving"})'
>
</app-cell>
<app-cell
text=
'消息管理'
boxType=
'border'
icon=
'icon-xiayibu'
@
click
.
native=
'$router.push(
{name:"Deving"})'
>
</app-cell>
</div>
<div
class=
"fixed bottom-3 w-full left-0 z-30"
>
<app-btn
text=
"退出登录"
class=
"w-11/12 mx-auto text-font-white rounded-2xl bg-font-red"
border=
'none'
@
btnClicked=
'toggleDialog'
></app-btn>
...
...
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