Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cust-app
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
李伟
cust-app
Commits
1ce52950
Commit
1ce52950
authored
Jan 03, 2025
by
liwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改了图片路径
parent
e2eaf85a
Changes
28
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
28 changed files
with
154 additions
and
733 deletions
+154
-733
pages.json
pages.json
+0
-9
Item.vue
pages/components/article/Item.vue
+7
-5
List.vue
pages/components/article/List.vue
+3
-1
activity.vue
pages/tab/activity.vue
+3
-1
article.vue
pages/tab/article.vue
+5
-2
index.vue
pages/tab/index.vue
+7
-5
msg.vue
pages/tab/msg.vue
+0
-613
my.vue
pages/tab/my.vue
+11
-8
rank.vue
pages/tab/rank.vue
+6
-4
index.vue
pages2/components/elm/index.vue
+6
-3
activityDetail.vue
pagesActivity/activityDetail.vue
+6
-4
articleDetail.vue
pagesArticle/articleDetail.vue
+15
-13
articleItem.vue
pagesArticle/components/articleItem.vue
+4
-2
userInfo.vue
pagesUser/userInfo.vue
+22
-22
userList.vue
pagesUser/userList.vue
+2
-2
index.vue
pageslogin/index.vue
+3
-2
home-bgc.png
pageslogin/static/images/home-bgc.png
+0
-0
logo.png
pageslogin/static/images/logo.png
+0
-0
index.vue
pagesme/components/elm/index.vue
+6
-3
linkage.vue
pagesme/components/three-level-linkage/linkage.vue
+6
-9
doubleauth.vue
pagesme/me/doubleauth.vue
+5
-3
identityauthentication.vue
pagesme/me/identityauthentication.vue
+7
-7
likeList.vue
pagesme/me/likeList.vue
+4
-2
updateInformation.vue
pagesme/me/updateInformation.vue
+10
-8
aboutme.vue
pagesme/set/aboutme.vue
+7
-1
contact.vue
pagesme/set/contact.vue
+3
-2
set.vue
pagesme/set/set.vue
+3
-1
preference.vue
pagespreference/preference/preference.vue
+3
-1
No files found.
pages.json
View file @
1ce52950
...
...
@@ -17,15 +17,6 @@
"backgroundColorTop"
:
"#F4F5F9"
}
},
{
"path"
:
"pages/tab/msg"
,
"style"
:
{
"navigationStyle"
:
"custom"
,
"backgroundColor"
:
"#F4F5F9"
,
"backgroundColorTop"
:
"#F4F5F9"
,
"backgroundColorBottom"
:
"#F4F5F9"
}
},
{
"path"
:
"pages/tab/article"
,
"style"
:
...
...
pages/components/article/Item.vue
View file @
1ce52950
...
...
@@ -23,9 +23,9 @@
<template
v-if=
"!isState"
>
<view
class=
"name"
>
<text
@
click=
"gotoUserInfo(info)"
>
{{
info
.
nickName
}}
</text>
<image
v-if=
"info.gender
!='MALE'"
class=
"gender"
src=
"../../../static/images/like/famale.png
"
mode=
""
>
<image
v-if=
"info.gender
!= 'MALE'"
class=
"gender"
:src=
"baseUrl+'/user/famale.png'
"
mode=
""
>
</image>
<image
v-else
class=
"gender"
src=
"../../../static/images/like/male.png
"
mode=
""
></image>
<image
v-else
class=
"gender"
:src=
"baseUrl+'/user/male.png'
"
mode=
""
></image>
</view>
<view
class=
"info"
>
<text
decode=
"true"
style=
"color: #434343;"
>
{{
info
.
information
}}
</text>
...
...
@@ -81,12 +81,12 @@
<!-- </u-button>-->
</view>
<view
class=
"btn"
@
click=
"gotoDetail(info)"
>
<image
src=
"../../../static/images/104.png
"
mode=
""
></image>
<image
:src=
"baseUrl+'/article/104.png'
"
mode=
""
></image>
<text>
{{info.commentCount}}
</text>
</view>
<view
class=
"btn"
@
click=
"praise(info)"
>
<image
v-if=
"!info.isLike"
src=
"../../../static/images/105.png
"
mode=
""
></image>
<image
v-else
src=
"../../../static/images/105-no.png
"
mode=
""
></image>
<image
v-if=
"!info.isLike"
:src=
"baseUrl+'/article/105.png'
"
mode=
""
></image>
<image
v-else
:src=
"baseUrl+'/article/105-no.png'
"
mode=
""
></image>
<text>
{{info.likeCount}}
</text>
</view>
</view>
...
...
@@ -154,6 +154,8 @@
},
data
()
{
return
{
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
tagStyle
:
{
text
:
'line-height:1em'
},
...
...
pages/components/article/List.vue
View file @
1ce52950
...
...
@@ -6,7 +6,7 @@
'color': '#C9C9D0',
'position': 'absolute',
'width': '100vw',
}"
empty-view-img="/static/images/empty.png
" :empty-view-img-style="{
}"
:empty-view-img="baseUrl+'/common/empty.png'
" :empty-view-img-style="{
'position': 'absolute',
'top': '210rpx',
'width': '447rpx',
...
...
@@ -37,6 +37,8 @@
},
data
()
{
return
{
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
// v-model绑定的这个变量不要在分页请求结束中自己赋值!!!
dataList
:
[],
// 当前组件是否已经加载过了
...
...
pages/tab/activity.vue
View file @
1ce52950
...
...
@@ -12,7 +12,7 @@
<view
class=
"card"
v-for=
"(item,index) in activityList"
:key=
"index"
@
click=
"gotopage(item)"
>
<view
class=
"contentBody"
>
<view
class=
"leftlist"
>
<image
src=
"/static/images/home/gonggao.png
"
class=
"leftlistimage"
/>
<image
:src=
"baseUrl+'/index/gonggao.png'
"
class=
"leftlistimage"
/>
</view>
<view
class=
"rightlist"
>
<view
class=
"rightlist-title"
>
{{
item
.
title
}}
</view>
...
...
@@ -49,6 +49,8 @@ export default {
},
data
()
{
return
{
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
//分页查询参数
queryParam
:{
page
:
1
,
...
...
pages/tab/article.vue
View file @
1ce52950
...
...
@@ -3,7 +3,7 @@
<z-paging-swiper>
<!-- 发表动态按钮-->
<view
:class=
"['add',isOpen ? 'add2':'']"
>
<image
@
click=
'goPage("/pagesArticle/publishArticle")'
src=
"../../static/images/102.png
"
mode=
""
/>
<image
@
click=
'goPage("/pagesArticle/publishArticle")'
:src=
"baseUrl+'/article/102.png'
"
mode=
""
/>
</view>
<!-- 需要固定在顶部不滚动的view放在slot="top"的view中 -->
<!-- 注意!此处的z-tabs为独立的组件,可替换为第三方的tabs,若需要使用z-tabs,请在插件市场搜索z-tabs并引入,否则会报插件找不到的错误 -->
...
...
@@ -13,7 +13,7 @@
<!-- 通知中心-->
<template
slot=
"left"
>
<view
style=
"position: relative;"
@
click=
"goMessage"
>
<image
class=
"left"
@
click=
"goMessage"
src=
"../../static/images/101.png
"
mode=
""
></image>
<image
class=
"left"
@
click=
"goMessage"
:src=
"baseUrl+'/article/101.png'
"
mode=
""
></image>
<u-badge
style=
"font-weight: 600;"
@
click=
"goMessage"
:value=
"num"
bgColor=
"#FA5151"
:max=
"99"
:offset=
"[-6,-8]"
:absolute=
"true"
></u-badge>
</view>
...
...
@@ -60,6 +60,9 @@
},
data
()
{
return
{
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
//tab标签
list
:
[{
name
:
'关注'
},
...
...
pages/tab/index.vue
View file @
1ce52950
...
...
@@ -5,7 +5,7 @@
<!-- 左上角搜索-->
<u-navbar
bgColor=
"white"
:placeholder=
"true"
>
<view
class=
"u-nav-slot"
slot=
"left"
@
click=
"screen"
>
<image
src=
"../../static/images/screen.png
"
class=
"img"
mode=
"aspectFill"
></image>
<image
:src=
"baseUrl+'/index/screen.png'
"
class=
"img"
mode=
"aspectFill"
></image>
<view
class=
"text"
>
搜索
</view>
</view>
</u-navbar>
...
...
@@ -20,7 +20,7 @@
<!-- 公告-->
<view
class=
"notice"
>
<view>
<image
src=
"/static/images/home/gonggao.png
"
class=
"notice-image"
/>
<image
:src=
"baseUrl+'/index/gonggao.png'
"
class=
"notice-image"
/>
</view>
<view
class=
"leftline"
></view>
<view
class=
"title"
>
{{
notice
.
title
}}
</view>
...
...
@@ -30,7 +30,7 @@
<!-- 热门推荐-->
<view
class=
"recommendation-top"
>
<view
class=
"recommendationContent"
>
<image
src=
"/static/images/home/recommend.png
"
class=
"recommend-image"
/>
<image
:src=
"baseUrl+'/index/recommend.png'
"
class=
"recommend-image"
/>
<view
class=
"top-title"
>
热门推荐
</view>
...
...
@@ -38,7 +38,7 @@
<view
class=
"more"
>
<view
class=
"more-title"
@
click=
"gotoMoreUserList"
>
查看更多
</view>
<view
class=
"more-image"
>
<image
class=
"rightimage"
src=
"
../static/images/home/home_icon_jiantou@2x.png
"
/>
<image
class=
"rightimage"
src=
""
/>
</view>
</view>
</view>
...
...
@@ -46,7 +46,7 @@
<view
class=
"card"
v-for=
"(item,index) in businessList"
:key=
"index"
@
click=
"gotoUserDetail(item)"
>
<view
class=
"contentBody"
>
<view
class=
"leftlist"
>
<image
src=
"/static/images/home/gonggao.png
"
class=
"leftlistimage"
/>
<image
:src=
"baseUrl+'/index/gonggao.png'
"
class=
"leftlistimage"
/>
</view>
<view
class=
"rightlist"
>
<view
class=
"rightlist-title"
>
{{
item
.
name
}}
</view>
...
...
@@ -83,6 +83,8 @@
},
data
()
{
return
{
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
// 商家列表
notice
:{},
//banner列表
...
...
pages/tab/msg.vue
deleted
100644 → 0
View file @
e2eaf85a
This diff is collapsed.
Click to expand it.
pages/tab/my.vue
View file @
1ce52950
...
...
@@ -99,7 +99,7 @@
立即认证
</view>
</view>
<view
class=
"boxsing"
style=
"height: 52rpx;"
v-if=
"info.completionRatio
<
80
"
>
<view
class=
"boxsing"
style=
"height: 52rpx;"
>
<view
class=
"boxsname"
style=
"margin-left: 42rpx;"
>
个人资料
</view>
...
...
@@ -115,7 +115,7 @@
</view>
<!-- 动态 第三部分-->
<view
class=
"box"
@
click=
"goCommunity"
v-if=
"(info.userArticleViewResponse.articleImg
!==null&&info.userArticleViewResponse.articleImg.length)||info.userArticleViewResponse.articleContent!==
null"
>
<view
class=
"box"
@
click=
"goCommunity"
v-if=
"(info.userArticleViewResponse.articleImg
!== null && info.userArticleViewResponse.articleImg.length) || info.userArticleViewResponse.articleContent !==
null"
>
<view
class=
"boxsing"
>
<image
src=
"../../static/images/106.svg"
style=
"width: 42rpx;height: 42rpx;margin-left: 42rpx;;"
mode=
"aspectFill"
>
...
...
@@ -124,11 +124,11 @@
我的动态
</view>
</view>
<view
:class=
"['imgs',info.userArticleViewResponse.articleImg.length==2?'twoTemp':'']"
v-if=
"info.userArticleViewResponse.articleImg!==null&&info.userArticleViewResponse.articleImg.length"
>
<image
v-for=
"item in info.userArticleViewResponse.articleImg"
:src=
"item"
mode=
"aspectFill"
></image>
</view>
<view
class=
"strs"
v-if=
"info.userArticleViewResponse.articleContent!==null"
>
<view
class=
"strs"
v-if=
"info.userArticleViewResponse.articleContent !== null"
>
{{
info
.
userArticleViewResponse
.
articleContent
}}
</view>
<view
:class=
"['imgs',info.userArticleViewResponse.articleImg.length == 2 ? 'twoTemp':'']"
v-if=
"info.userArticleViewResponse.articleImg !== null && info.userArticleViewResponse.articleImg.length"
>
<image
v-for=
"item in info.userArticleViewResponse.articleImg"
:src=
"item"
mode=
"aspectFill"
></image>
</view>
</view>
...
...
@@ -227,8 +227,11 @@ import {setUserProfile} from '../../api/login/index'
lovers
:
'8'
,
goldBalance
:
0
,
userArticleViewResponse
:{
articleImg
:
null
,
articleContent
:
null
articleImg
:[
'http://192.168.1.80/upload/CmsBanner/20241230/18E63B570FF04DB3A8EFE277D58256C4.jpg'
,
'http://192.168.1.80/upload/CmsBanner/20241230/18E63B570FF04DB3A8EFE277D58256C4.jpg'
],
articleContent
:
'将昨天的快乐在今天发出去,就是双倍快乐!'
}
},
numtwo
:
0
,
...
...
pages/tab/rank.vue
View file @
1ce52950
...
...
@@ -35,7 +35,7 @@
<view
class=
"two-rankValue"
>
<view
style=
"display: flex; justify-content: center; align-items: center;margin: auto 20rpx; height: 60rpx;"
>
<text
style=
"font-weight: bold; font-size: 20px; color: rgb(231, 97, 97); text-align: right; display: block;"
>
{{
rankList
[
1
].
hours
}}
</text>
<image
src=
"/static/images/rank/rankRecommend2.png
"
class=
"recommend-image"
/>
<image
:src=
"baseUrl+'/rank/rankRecommend2.png'
"
class=
"recommend-image"
/>
</view>
</view>
</view>
...
...
@@ -53,7 +53,7 @@
<view
class=
"one-rankValue"
>
<view
style=
"display: flex; justify-content: center;align-items: center;margin: auto 20rpx; height: 60rpx;"
>
<text
style=
"font-weight: bold; font-size: 20px; color: rgb(215, 31, 31); text-align: right; display: block;"
>
{{
rankList
[
0
].
hours
}}
</text>
<image
src=
"/static/images/rank/rankRecommend1.png
"
class=
"recommend-image"
/>
<image
:src=
"baseUrl+'/rank/rankRecommend1.png'
"
class=
"recommend-image"
/>
</view>
</view>
</view>
...
...
@@ -71,7 +71,7 @@
<view
class=
"three-rankValue"
>
<view
style=
"display: flex; justify-content: center;align-items: center;margin: auto 20rpx; height: 60rpx;"
>
<text
style=
"font-weight: bold; font-size: 20px; color: rgb(229, 132, 36); text-align: right; display: block;"
>
{{
rankList
[
2
].
hours
}}
</text>
<image
src=
"/static/images/rank/rankRecommend3.png
"
class=
"recommend-image"
/>
<image
:src=
"baseUrl+'/rank/rankRecommend3.png'
"
class=
"recommend-image"
/>
</view>
</view>
</view>
...
...
@@ -100,7 +100,7 @@
</u-col>
<u-col
span=
"2"
>
<view
style=
"display: flex; justify-content: flex-start;margin-left: 15rpx"
>
<image
src=
"/static/images/rank/rankRecommend.png
"
class=
"recommend-image"
/>
<image
:src=
"baseUrl+'/rank/rankRecommend.png'
"
class=
"recommend-image"
/>
<u--text
:bold=
"true"
size=
"15"
color=
"#4facfe"
:text=
"item.hours"
/>
</view>
</u-col>
...
...
@@ -120,6 +120,8 @@ export default {
},
data
()
{
return
{
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
subList
:
[
{
name
:
'女生榜'
...
...
pages2/components/elm/index.vue
View file @
1ce52950
...
...
@@ -3,14 +3,16 @@
<view
class=
"bg"
></view>
<view
class=
"dialog_content"
>
<view
class=
"bag"
>
<image
class=
"pop-bgc"
:src=
"
img + '/img
/home-pop-bg.png'"
></image>
<image
class=
"pop-bgc"
:src=
"
baseUrl + '/common
/home-pop-bg.png'"
></image>
<view
class=
"divss"
>
<view
class=
"namne"
>
资料审核已提交
</view>
<view
class=
"namnes"
>
为了保证交友环境安全,我们 需要对你的资料进行审核
</view>
<view
class=
"button"
@
click=
"gzh"
>
审核通过后通知我
</view>
</view>
</view>
<view
class=
"dialog_foot"
@
click=
"hideDialog()"
><image
src=
"../../../static/images/closeing.png"
mode=
"aspectFill"
style=
"width: 64rpx;height: 64rpx;;"
></image></view>
<view
class=
"dialog_foot"
@
click=
"hideDialog()"
>
<image
:src=
"baseUrl+'/common/closeing.png'"
mode=
"aspectFill"
style=
"width: 64rpx;height: 64rpx;"
/>
</view>
</view>
</view>
</
template
>
...
...
@@ -20,7 +22,8 @@ export default {
props
:
[
'dataInfo'
],
data
()
{
return
{
img
:
this
.
$BASE_URL
,
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
show
:
false
,
info
:
this
.
dataInfo
};
...
...
pagesActivity/activityDetail.vue
View file @
1ce52950
...
...
@@ -19,16 +19,16 @@
<view
class=
"popup-title"
>
报名
</view>
<view
class=
"pop-body"
>
<view>
<image
class=
"popbody-image"
src=
"../static/images/home/gonggao.png
"
/>
<image
class=
"popbody-image"
:src=
"baseUrl+'/index/gonggao.png'
"
/>
</view>
<view>
<view
class=
"popbod-title"
>
{{
activityDetail
.
title
}}
</view>
<view
class=
"pop-time"
>
<image
class=
"poptime-img"
src=
"../static/images/activity/date.png
"
/>
<image
class=
"poptime-img"
:src=
"baseUrl+'/activity/date.png'
"
/>
<view
class=
"poptime-text"
>
{{
activityDetail
.
startTime
}}
</view>
</view>
<view
class=
"pop-price"
>
<image
class=
"popprice-img"
src=
"../static/images/activity/unitPrice.png
"
/>
<image
class=
"popprice-img"
:src=
"baseUrl+'/activity/unitPrice.png'
"
/>
<view
class=
"popprice-text"
>
单价:
<text>
¥
{{
activityDetail
.
applicationFee
}}
次/人
</text></view>
</view>
...
...
@@ -54,6 +54,8 @@
export
default
{
data
()
{
return
{
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
show
:
false
,
//报名弹窗
activityDetail
:
{},
//活动详情
activityId
:
''
,
// 活动id
...
...
@@ -72,7 +74,7 @@
console
.
log
(
"活动详情"
,
res
)
this
.
activityDetail
=
res
.
data
.
data
// 处理图片样式问题
this
.
activityDetail
.
details
=
res
.
data
.
details
.
replace
(
/\<img/gi
,
this
.
activityDetail
.
details
=
res
.
data
.
d
ata
.
d
etails
.
replace
(
/\<img/gi
,
'<img style="max-width:100%;height:auto;border-radius: 12px 12px 12px 12px;" '
)
})
},
...
...
pagesArticle/articleDetail.vue
View file @
1ce52950
...
...
@@ -30,15 +30,15 @@
@
click=
"btnPrarse(info)"
:src=
"
info.praise
?
'../static/images
/105.png'
:
'../static/images
/105-no.png'
?
baseUrl+'/article
/105.png'
:
baseUrl+'/article
/105-no.png'
"
></image>
{{
info
.
likesNumber
}}
</div>
<div
class=
"action-item"
>
<image
src=
"../static/images/104.png
"
:src=
"baseUrl+'/article/104.png'
"
@
click=
"btnComment(info)"
></image>
<text
v-if=
"info.childrenCommentInfos.length"
>
...
...
@@ -75,15 +75,15 @@
@
click=
"btnPrarse(info.childrenCommentInfos[0])"
:src=
"
children.praise
? '../static/images
/105.png'
: '../static/images
/105-no.png'
? baseUrl+'/article
/105.png'
: baseUrl+'/article
/105-no.png'
"
></image>
{{
info
.
childrenCommentInfos
[
0
].
likesNumber
}}
</div>
<div
class=
"action-item"
>
<image
src=
"../static/images/104.png
"
:src=
"baseUrl+'/article/104.png'
"
@
click=
"btnComment(info.childrenCommentInfos[0])"
></image>
</div>
...
...
@@ -118,15 +118,15 @@
@
click=
"btnPrarse(children)"
:src=
"
children.praise
? '../static/images
/105.png'
: '../static/images
/105-no.png'
? baseUrl+'/article
/105.png'
: baseUrl+'/article
/105-no.png'
"
></image>
{{
children
.
likesNumber
}}
</div>
<div
class=
"action-item"
>
<image
src=
"../static/images/104.png
"
:src=
"baseUrl+'/article/104.png'
"
@
click=
"btnComment(children)"
></image>
</div>
...
...
@@ -166,14 +166,14 @@
<view
class=
"bottom-button"
>
<image
@
click=
""
src=
"../static/images/104.png
"
:src=
"baseUrl+'/article/103.png'
"
/>
<text
class=
"imageText"
>
分享
</text>
</view>
<view
class=
"bottom-button"
>
<image
@
click=
""
src=
"../static/images/104.png
"
:src=
"baseUrl+'/article/104.png'
"
></image>
<text
class=
"imageText"
>
{{
1
}}
</text>
</view>
...
...
@@ -181,8 +181,8 @@
<image
@
click=
""
:src=
"info.praise
? '../static/images
/105.png'
: '../static/images
/105-no.png'"
? baseUrl+'/article
/105.png'
: baseUrl+'/article
/105-no.png'"
></image>
<text
class=
"imageText"
>
{{
2
}}
</text>
</view>
...
...
@@ -199,6 +199,8 @@ export default{
},
data
()
{
return
{
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
item
:{
createTime
:
'2024-12-28 15:02:01'
,
headPortrait
:
'http://192.168.1.80/upload/CmsBanner/20241230/18E63B570FF04DB3A8EFE277D58256C4.jpg'
,
//头像
...
...
pagesArticle/components/articleItem.vue
View file @
1ce52950
...
...
@@ -7,9 +7,9 @@
<template>
<view
class=
"name"
>
<text
@
click=
"gotoUserInfo(info)"
>
{{
info
.
nickName
}}
</text>
<image
v-if=
"info.gender!='MALE'"
class=
"gender"
src=
"../../static/images/like/famale.png
"
mode=
""
>
<image
v-if=
"info.gender!='MALE'"
class=
"gender"
:src=
"baseUrl+'/user/famale.png'
"
mode=
""
>
</image>
<image
v-else
class=
"gender"
src=
"../../static/images/like/male.png
"
mode=
""
></image>
<image
v-else
class=
"gender"
:src=
"baseUrl+'/user/male.png'
"
mode=
""
></image>
</view>
<view
class=
"info"
>
<text
decode=
"true"
style=
"color: #434343;"
>
{{
info
.
information
}}
</text>
...
...
@@ -80,6 +80,8 @@
},
data
()
{
return
{
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
tagStyle
:
{
text
:
'line-height:1em'
},
...
...
pagesUser/userInfo.vue
View file @
1ce52950
...
...
@@ -11,21 +11,21 @@
<ls-swiper
:list=
"userData.imgList"
imgKey=
""
:loop=
"true"
:dots=
"true"
:autoplay=
"true"
:height=
"340"
/>
<view
class=
"hint"
v-if=
"userData.result != null && userData.result"
>
<image
src=
"../static/images/like/02.png
"
mode=
"aspectFill"
></image>
<image
:src=
"baseUrl+'/user/mutuallyLike.png'
"
mode=
"aspectFill"
></image>
<view
class=
"t"
>
{{
'相互喜欢'
}}
</view>
</view>
<view
class=
"hint"
v-else-if=
"userData.otherMatchingStatus != null && userData.otherMatchingStatus=='NOT_LIKE_ME'"
>
<image
src=
"../static/images/like/dislike.png
"
mode=
"aspectFill"
></image>
<image
:src=
"baseUrl+'/user/dislike.png'
"
mode=
"aspectFill"
></image>
<view
class=
"t"
>
{{
'对我无感'
}}
</view>
</view>
<view
class=
"hint"
v-else-if=
"userData.selfMatchingStatus!=null&&userData.selfMatchingStatus=='LIKE'"
>
<image
src=
"../static/images/like/02.png
"
mode=
"aspectFill"
></image>
<image
:src=
"baseUrl+'/user/mutuallyLike.png'
"
mode=
"aspectFill"
></image>
<view
class=
"t"
>
{{
'我喜欢过'
...
...
@@ -37,7 +37,7 @@
<view
class=
"box-jj"
>
<view
class=
"box-jj-ta"
>
<view
class=
"box-jj-ta-left"
>
<image
src=
"../static/images/yrz.png
"
class=
"img"
mode=
"aspectFill"
></image>
<image
:src=
"baseUrl+'/user/yrz.png'
"
class=
"img"
mode=
"aspectFill"
></image>
<view
class=
"te"
>
{{
userData
.
school
?
userData
.
school
:
''
}}
</view>
<view
class=
"xian"
></view>
<view
class=
"te"
>
...
...
@@ -62,10 +62,10 @@
<!-- 个人信息-->
<view
class=
"box-name"
>
<view
class=
"name"
>
{{
userData
.
nickName
?
userData
.
nickName
:
''
}}
</view>
<image
src=
"../static/xiugai/nv.png
"
mode=
"aspectFill"
v-if=
"userData.gender == 'FEMALE'"
></image>
<image
src=
"../static/images/like/male.png
"
mode=
"aspectFill"
v-else
></image>
<image
:src=
"baseUrl+'/user/famale.png'
"
mode=
"aspectFill"
v-if=
"userData.gender == 'FEMALE'"
></image>
<image
:src=
"baseUrl+'/user/male.png'
"
mode=
"aspectFill"
v-else
></image>
<view
class=
"hint"
v-if=
"userData.userAuthStatus != null"
>
<image
src=
"../static/images/auth.png
"
mode=
"aspectFill"
></image>
<image
:src=
"baseUrl+'/user/auth.png'
"
mode=
"aspectFill"
></image>
<view
class=
"t"
>
{{
userData
.
userAuthStatus
==
'IdentityAuth'
...
...
@@ -88,7 +88,7 @@
<view
class=
""
>
{{
userData
.
city
?
userData
.
city
:
''
}}
</view>
</view>
<view
class=
"ling"
v-if=
"userData.emotional"
>
<image
src=
"../static/images/indexlable.png
"
class=
"img"
mode=
"aspectFill"
></image>
<image
:src=
"baseUrl+'/user/indexlable.png'
"
class=
"img"
mode=
"aspectFill"
></image>
<view
class=
"text"
>
{{
userData
.
emotional
==
'Single'
?
'正在寻觅'
...
...
@@ -139,9 +139,7 @@
v-if=
"(userData.userArticleViewResponse.articleImg !== null && userData.userArticleViewResponse.articleImg.length) || userData.userArticleViewResponse.articleContent !== null"
>
<view
class=
"content"
>
<view
class=
"have_image"
>
<image
src=
"@/static/images/106.svg"
mode=
"aspectFill"
>
</image>
<image
:src=
"baseUrl+'/user/106.svg'"
mode=
"aspectFill"
/>
<view
class=
"title"
style=
"font-family: SC-Bold;"
>
我的动态
</view>
...
...
@@ -160,7 +158,7 @@
<view
class=
"card"
>
<view
class=
"content"
>
<view
class=
"have_image"
>
<image
src=
"../static/images/indexabout.png
"
mode=
"aspectFill"
></image>
<image
:src=
"baseUrl+'/user/indexabout.png'
"
mode=
"aspectFill"
></image>
<view
class=
"title"
style=
"font-family: SC-Bold;"
>
关于我自己
</view>
</view>
<view
class=
"one"
>
{{
userData
.
aboutMe
}}
</view>
...
...
@@ -171,7 +169,7 @@
<view
class=
"card"
>
<view
class=
"content"
>
<view
class=
"have_image"
>
<image
src=
"../static/images/indexlove.png
"
mode=
"aspectFill"
></image>
<image
:src=
"baseUrl+'/user/indexlove.png'
"
mode=
"aspectFill"
></image>
<view
class=
"title"
style=
"font-family: SC-Bold;"
>
兴趣爱好
</view>
</view>
<view
class=
"one"
>
{{
userData
.
interest
}}
</view>
...
...
@@ -182,7 +180,7 @@
<view
class=
"card"
>
<view
class=
"content"
>
<view
class=
"have_image"
>
<image
src=
"../static/images/indexcharacter.png
"
mode=
"aspectFill"
></image>
<image
:src=
"'/user/indexcharacter.png'
"
mode=
"aspectFill"
></image>
<view
class=
"title"
style=
"font-family: SC-Bold;"
>
心仪的Ta
</view>
</view>
<view
class=
"one"
>
{{
userData
.
loveRequirement
}}
</view>
...
...
@@ -199,14 +197,14 @@
'color': '#434343',
'border':'none',
}">
<image
src=
"../static/images/share.png
"
class=
"simg"
mode=
"aspectFill"
></image>
<image
:src=
"baseUrl+'/common/share.png'
"
class=
"simg"
mode=
"aspectFill"
></image>
将
{{
userData
.
gender
!=
'MALE'
?
'她'
:
'他'
}}
推荐给好友
</u-button>
</view>
<view
class=
"bo2"
v-if=
"userData.selfMatchingStatus !== null"
@
click=
"canelLike()"
>
<image
v-if=
"userData.selfMatchingStatus == 'NOT_LIKE'"
src=
"../static/images/like/noLike.png
"
class=
"simg"
mode=
"aspectFill"
></image>
<image
v-if=
"userData.selfMatchingStatus == 'LIKE'"
src=
"../static/images/like/liketo.png
"
:src=
"baseUrl+'/user/noLike.png'
"
class=
"simg"
mode=
"aspectFill"
></image>
<image
v-if=
"userData.selfMatchingStatus == 'LIKE'"
:src=
"baseUrl+'/user/liketo.png'
"
class=
"simg"
mode=
"aspectFill"
></image>
<view
class=
"name"
>
{{
userData
.
selfMatchingStatus
==
'NOT_LIKE'
?
'取消无感'
:
userData
.
selfMatchingStatus
==
'LIKE'
?
'取消喜欢'
:
''
...
...
@@ -232,18 +230,18 @@
<!-- 两个图标按钮 喜欢和不喜欢-->
<view
v-if=
"showArrowDown"
>
<view
class=
"footer-fixedlike"
v-if=
"userData.selfMatchingStatus == null"
>
<view
class=
"left"
@
click=
"logion(userData.id, false,
'../static/images
/clo.png')"
>
<image
src=
"../static/images/clo.png
"
style=
"width: 100%;height: 100%;;"
mode=
"aspectFill"
></image>
<view
class=
"left"
@
click=
"logion(userData.id, false,
baseUrl+'/user
/clo.png')"
>
<image
:src=
"baseUrl+'/user/clo.png'
"
style=
"width: 100%;height: 100%;;"
mode=
"aspectFill"
></image>
</view>
<view
class=
"right"
@
click=
"logion(userData.id, true,
'../static/images
/con1.png')"
>
<image
src=
"../static/images/con1.png
"
style=
"width: 100%;height: 100%;;"
mode=
"aspectFill"
></image>
<view
class=
"right"
@
click=
"logion(userData.id, true,
baseUrl+'/user
/con1.png')"
>
<image
:src=
"baseUrl+'/user/con1.png'
"
style=
"width: 100%;height: 100%;;"
mode=
"aspectFill"
></image>
</view>
</view>
</view>
<!-- 点击喜欢和不喜欢的动画效果-->
<image
v-if=
"showAnima"
:src=
"animUrl"
mode=
"aspectFill"
class=
"animate-middel-top"
/>
<!-- 向下滑动的箭头-->
<image
v-show=
"showArrowDown"
src=
"../static/images/home/arrow_down_sm.png
"
mode=
"aspectFill"
class=
"fixed_down"
/>
<image
v-show=
"showArrowDown"
:src=
"baseUrl+'/user/arrow_down_sm.png'
"
mode=
"aspectFill"
class=
"fixed_down"
/>
</view>
<myPopup
v-if=
"isShow"
:content=
"userData.selfMatchingStatus=='NOT_LIKE'?'是否取消无感?':
userData.selfMatchingStatus=='LIKE'?'是否取消喜欢?':'是否解除匹配?'"
@
confirm=
"confirm"
@
cancel=
"cancelbtn"
>
...
...
@@ -262,6 +260,8 @@
},
data
()
{
return
{
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
//用户信息
userData
:
{
result
:
true
,
...
...
pagesUser/userList.vue
View file @
1ce52950
...
...
@@ -15,8 +15,8 @@
<view
class=
"bottom-left"
>
<view
class=
"bottom-info"
>
{{
item
.
nickName
}}
<image
v-if=
"item.gender == 'MALE'"
class=
"gender"
src=
"../
../
static/images/like/male.png"
mode=
""
/>
<image
v-else
class=
"gender"
src=
"../
../
static/images/like/famale.png"
mode=
""
/>
<image
v-if=
"item.gender == 'MALE'"
class=
"gender"
src=
"../static/images/like/male.png"
mode=
""
/>
<image
v-else
class=
"gender"
src=
"../static/images/like/famale.png"
mode=
""
/>
</view>
<view
class=
"bottom-info"
>
{{
item
.
age
}}
岁
...
...
pageslogin/index.vue
View file @
1ce52950
<
template
>
<view
class=
"home-page-container"
@
touchmove
.
stop
.
prevent=
"() =>
{}">
<view
class=
""
>
<image
class=
"bgc-imga"
src=
"../static/images/bg-c.png
"
mode=
"widthFix"
></image>
<image
class=
"bgc-img"
src=
"static/images/home-bgc.png
"
mode=
"aspectFit"
></image>
<image
class=
"bgc-imga"
:src=
"baseUrl+'/login/bg-c.png'
"
mode=
"widthFix"
></image>
<image
class=
"bgc-img"
:src=
"baseUrl+'/login/home-bgc.png'
"
mode=
"aspectFit"
></image>
<!--
<image
class=
"logo-img"
src=
"static/images/logo.png"
></image>
-->
<view
class=
"start-btn"
>
<button
open-type=
"getPhoneNumber"
@
getphonenumber=
"getPhoneNumber($event)"
>
开始邂逅
</button>
...
...
@@ -18,6 +18,7 @@
export
default
{
data
()
{
return
{
baseUrl
:
'http://192.168.1.80/static/images'
,
//用户初始化登录 (可能用户类型传参错误)
initLoginError
:
false
,
tipMsg
:
''
,
...
...
pageslogin/static/images/home-bgc.png
deleted
100644 → 0
View file @
e2eaf85a
34.5 KB
pageslogin/static/images/logo.png
deleted
100644 → 0
View file @
e2eaf85a
26.5 KB
pagesme/components/elm/index.vue
View file @
1ce52950
...
...
@@ -3,14 +3,16 @@
<view
class=
"bg"
></view>
<view
class=
"dialog_content"
>
<view
class=
"bag"
>
<image
class=
"pop-bgc"
:src=
"
img + '/img
/home-pop-bg.png'"
></image>
<image
class=
"pop-bgc"
:src=
"
baseUrl + '/common
/home-pop-bg.png'"
></image>
<view
class=
"divss"
>
<view
class=
"namne"
>
资料审核已提交
</view>
<view
class=
"namnes"
>
为了保证交友环境安全,我们 需要对你的资料进行审核
</view>
<view
class=
"button"
@
click=
"gzh"
>
审核通过后通知我
</view>
</view>
</view>
<view
class=
"dialog_foot"
@
click=
"hideDialog()"
><image
src=
"../../../static/images/closeing.png"
mode=
"aspectFill"
style=
"width: 64rpx;height: 64rpx;;"
></image></view>
<view
class=
"dialog_foot"
@
click=
"hideDialog()"
>
<image
:src=
"baseUrl+'/common/closeing.png'"
mode=
"aspectFill"
style=
"width: 64rpx;height: 64rpx;;"
/>
</view>
</view>
</view>
</
template
>
...
...
@@ -20,7 +22,8 @@ export default {
props
:
[
'dataInfo'
],
data
()
{
return
{
img
:
this
.
$BASE_URL
,
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
show
:
false
,
info
:
this
.
dataInfo
};
...
...
pagesme/components/three-level-linkage/linkage.vue
View file @
1ce52950
...
...
@@ -3,11 +3,8 @@
<view
class=
"dsds"
v-if=
"showPopup"
@
click=
"showPopup = false"
>
</view>
<view
class=
"linkage"
v-if=
"showPopup"
@
touchmove
.
stop
.
prevent=
"clear"
>
<!-- 遮罩层 -->
<view
class=
"linkage-content linkage--fixed"
>
<view
class=
"linkage__header"
>
选择城市
</view>
<view
class=
"linkage__box"
>
...
...
@@ -15,11 +12,11 @@
class=
"linkage-view"
:mask-style=
"fsdfds"
:value=
"pickerValue"
@
change=
"pickerChange"
>
<picker-view-column>
<view
class=
"picker-item"
style=
"height: 92rpx;"
v-for=
"(item,index) in firstLevel"
:key=
"index"
:class=
"one
==
index?'lldl':''"
>
{{
item
.
name
}}
</view>
:key=
"index"
:class=
"one
==
index?'lldl':''"
>
{{
item
.
name
}}
</view>
</picker-view-column>
<picker-view-column
v-if=
"secondShow"
>
<view
class=
"picker-item"
v-for=
"(item,index) in secondLevel"
:key=
"index"
:class=
"two
==
index?'lldl':''"
>
{{
item
.
name
}}
</view>
:class=
"two
==
index?'lldl':''"
>
{{
item
.
name
}}
</view>
</picker-view-column>
</picker-view>
</view>
...
...
pagesme/me/doubleauth.vue
View file @
1ce52950
<
template
>
<view
class=
"content"
>
<view
class=
"auth-item"
>
<image
class=
"auth-img"
src=
"../../static/images/me/sfauth.png
"
></image>
<image
class=
"auth-img"
:src=
"baseUrl+'/user/sfauth.png'
"
></image>
<view
class=
"auth-con"
>
<view
class=
"auth-con-1"
>
身份认证
</view>
<view
class=
"auth-con-2"
v-if=
"userInfo.identityAuth=='EXAMINE'"
>
审核中
</view>
...
...
@@ -15,7 +15,7 @@
<view
class=
"auth-btn"
@
click=
"gosf()"
v-if=
"userInfo.identityAuth==null"
>
立即认证
</view>
</view>
<view
class=
"auth-item"
>
<image
class=
"auth-img"
src=
"../../static/images/me/xlauth.png
"
></image>
<image
class=
"auth-img"
:src=
"baseUrl+'/user/xlauth.png'
"
></image>
<view
class=
"auth-con"
>
<view
class=
"auth-con-1"
>
学历认证
</view>
<view
class=
"auth-con-2"
v-if=
"userInfo.educationAuth=='EXAMINE'"
>
审核中
</view>
...
...
@@ -37,6 +37,8 @@
export
default
{
data
()
{
return
{
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
userInfo
:
{},
tipMsg
:
''
,
isConfirm
:
false
...
...
pagesme/me/identityauthentication.vue
View file @
1ce52950
...
...
@@ -2,8 +2,8 @@
<view>
<view
class=
"title-txt"
>
上传身份证照片
</view>
<view
class=
"con-txt"
>
根据监管要求身份证照片仅用于实名认证
</view>
<image
class=
"zheng-image"
:src=
"
zhengimageUrl
"
@
click=
"chooseImg('z')"
mode=
"aspectFill"
></image>
<image
class=
"fan-image"
:src=
"
fanimageUrl
"
@
click=
"chooseImg('f')"
mode=
"aspectFill"
></image>
<image
class=
"zheng-image"
:src=
"
baseUrl+'/user/zheng.png'
"
@
click=
"chooseImg('z')"
mode=
"aspectFill"
></image>
<image
class=
"fan-image"
:src=
"
baseUrl+'/user/fan.png'
"
@
click=
"chooseImg('f')"
mode=
"aspectFill"
></image>
<view
class=
"to-btn"
@
click=
"authadd"
>
提交
</view>
...
...
@@ -16,8 +16,8 @@
export
default
{
data
()
{
return
{
zhengimageUrl
:
"../../static/images/me/zheng.png"
,
fanimageUrl
:
"../../static/images/me/fan.png"
,
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
updatezImg
:
""
,
updatefImg
:
""
,
newImageSrc
:
""
,
...
...
pagesme/me/likeList.vue
View file @
1ce52950
...
...
@@ -15,8 +15,8 @@
<view
class=
"bottom-left"
>
<view
class=
"bottom-info"
>
{{
item
.
nickName
}}
<image
v-if=
"item.gender == 'MALE'"
class=
"gender"
src=
"../../static/images/like/male.png
"
mode=
""
/>
<image
v-else
class=
"gender"
src=
"../../static/images/like/famale.png
"
mode=
""
/>
<image
v-if=
"item.gender == 'MALE'"
class=
"gender"
:src=
"baseUrl+'/user/male.png'
"
mode=
""
/>
<image
v-else
class=
"gender"
:src=
"baseUrl+'/user/famale.png'
"
mode=
""
/>
</view>
<view
class=
"bottom-info"
>
{{
item
.
age
}}
岁
...
...
@@ -37,6 +37,8 @@ let util = require('@/util/means.js');
export
default
{
data
()
{
return
{
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
//用户列表
userList
:[
{
...
...
pagesme/me/updateInformation.vue
View file @
1ce52950
...
...
@@ -5,7 +5,7 @@
<view
class=
"pr40 pl72 pt40 rowa"
v-if=
"userInfo.waitApprovedStatus != 'PASS'"
>
<view
class=
"mw32 mt8 h32 bc000 cfff br-50 tc lh32 fs24"
>
!
</view>
<view
class=
"ml14 c333 fs28 lh44"
>
{{
userInfo
.
remarks
==
null
?
"请上传个人的真实照片,通过后这样才能匹配到高质量好友哦~"
:
userInfo
.
remarks
}}
{{
userInfo
.
remarks
==
null
?
"请上传个人的真实照片,通过后这样才能匹配到高质量好友哦~"
:
userInfo
.
remarks
}}
</view>
</view>
<!-- 个人资料 顶部头像-->
...
...
@@ -80,7 +80,7 @@
<view
class=
"w690 p30 bcfff br20 ml30 mt35"
style=
"margin-top: -30rpx;"
>
<view
class=
"rowjbic"
>
<view
class=
"rowic"
>
<image
src=
"../../static/images/indexabout.png
"
class=
"w30 h30"
mode=
"aspectFill"
></image>
<image
:src=
"baseUrl+'/user/indexabout.png'
"
class=
"w30 h30"
mode=
"aspectFill"
></image>
<view
style=
"color: #434343;"
class=
"fs28 fwb ml10"
>
基础资料
</view>
</view>
<view
class=
"w120 h52 lh52 tc br100 fs28"
@
click=
"gotoeditInfo"
style=
"color: #434343; background-color: #F5F6FA;"
>
...
...
@@ -90,7 +90,7 @@
<view
class=
"rowic mt40"
>
<view
class=
"fs40 fwb"
style=
"color: #4A4A4A;"
>
{{
userInfo
.
nickName
}}
</view>
<image
class=
"w48 h48 br-50 ml30"
:src=
"userInfo.gender == 'MALE' ?
'/static/images/like/male.png': '/static/xiugai/nv
.png'"
mode=
"aspectFill"
>
:src=
"userInfo.gender == 'MALE' ?
baseUrl+'/user/male.png': baseUrl+'/user/famale
.png'"
mode=
"aspectFill"
>
</image>
</view>
<view
class=
"fs28 fwb c333 rowic mt25"
>
...
...
@@ -105,7 +105,7 @@
</view>
</view>
<view
class=
"rowic mt36"
v-if=
"userInfo.emotional != null"
>
<image
class=
"w42 h42"
src=
"../../static/images/indexlable.png
"
mode=
"aspectFill"
></image>
<image
class=
"w42 h42"
:src=
"baseUrl+'/user/indexlable.png'
"
mode=
"aspectFill"
></image>
<view
class=
"fs24 ml10 c333"
v-if=
"userInfo.emotional == 'Single'"
>
正在寻觅
</view>
<view
class=
"fs24 ml10 c333"
v-if=
"userInfo.emotional == 'Love'"
>
热恋中
</view>
</view>
...
...
@@ -139,7 +139,7 @@
<!-- 认证板块-->
<view
class=
"w690 p30 bcfff br20 mt30 ml30 p30"
>
<view
class=
"rowic"
>
<image
class=
"w30 h30"
src=
"/static/xiugai/2.png
"
mode=
"aspectFill"
></image>
<image
class=
"w30 h30"
:src=
"baseUrl+'/user/xiugai.png'
"
mode=
"aspectFill"
></image>
<view
style=
"color: #434343;"
class=
"fs28 fwb ml10"
>
双重认证(
{{
numtwo
}}
/2)
</view>
</view>
<view
class=
"rowjbic mt25"
>
...
...
@@ -180,7 +180,7 @@
<view
class=
"w690 p30 bcfff br20 mt30 ml30 p30"
>
<view
class=
"rowjbic"
>
<view
class=
"rowic"
>
<image
class=
"w30 h30"
src=
"/static/images/indexinterest.png
"
mode=
"aspectFill"
/>
<image
class=
"w30 h30"
:src=
"baseUrl+'/user/indexinterest.png'
"
mode=
"aspectFill"
/>
<view
style=
"color: #434343;"
class=
"fs28 fwb ml10"
>
关于我自己
</view>
</view>
<view
class=
"w120 h52 lh52 tc br100 fs28"
@
click=
"gotoEditText(1,userInfo.aboutMe)"
style=
"color: #434343; background-color: #F5F6FA;"
>
...
...
@@ -195,7 +195,7 @@
<view
class=
"w690 p30 bcfff br20 mt30 ml30 p30"
>
<view
class=
"rowjbic"
>
<view
class=
"rowic"
>
<image
class=
"w30 h30"
src=
"/static/images/indexlove.png
"
mode=
"aspectFill"
></image>
<image
class=
"w30 h30"
:src=
"baseUrl+'/user/indexlove.png'
"
mode=
"aspectFill"
></image>
<view
style=
"color: #434343;"
class=
"fs28 fwb ml10"
>
兴趣爱好
</view>
</view>
<view
class=
"w120 h52 lh52 tc br100 fs28"
@
click=
"gotoEditText(2,userInfo.interest)"
style=
"color: #434343; background-color: #F5F6FA;"
>
...
...
@@ -210,7 +210,7 @@
<view
class=
"w690 p30 bcfff br20 mt30 ml30 p30"
>
<view
class=
"rowjbic"
>
<view
class=
"rowic"
>
<image
class=
"w30 h30"
src=
"/static/images/indexcharacter.png
"
mode=
"aspectFill"
></image>
<image
class=
"w30 h30"
:src=
"baseUrl+'/user/indexcharacter.png'
"
mode=
"aspectFill"
></image>
<view
style=
"color: #434343;"
class=
"fs28 fwb ml10"
>
心仪的Ta
</view>
</view>
<view
class=
"w120 h52 lh52 tc br100 fs28"
@
click=
"gotoEditText(3,userInfo.loveRequirement)"
style=
"color: #434343; background-color: #F5F6FA;"
>
...
...
@@ -241,6 +241,8 @@
export
default
{
data
()
{
return
{
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
//用户资料
userInfo
:
{
waitApprovedStatus
:
''
,
...
...
pagesme/set/aboutme.vue
View file @
1ce52950
...
...
@@ -2,7 +2,7 @@
<view>
<view
class=
"con-box"
>
<view
class=
"con-box-top"
>
<image
class=
"con-box-logo"
src=
"../static/images/logo.png
"
mode=
"aspectFill"
></image>
<image
class=
"con-box-logo"
:src=
"baseUrl+'/login/logo.png'
"
mode=
"aspectFill"
></image>
<view
class=
"con-box-name"
>
欧SSS
</view>
<view
class=
"con-box-version"
>
v 1.1.1
</view>
</view>
...
...
@@ -18,6 +18,12 @@
<
script
>
export
default
{
data
()
{
return
{
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
}
},
methods
:
{
goys
()
{
uni
.
navigateTo
({
...
...
pagesme/set/contact.vue
View file @
1ce52950
<
template
>
<view
class=
"page"
>
<!--start 商业使用 未经作者授权不得删除此项 联系微信:MMRWXM(请注明来意) start -->
<image
class=
"wechart-qr"
mode=
"aspectFill"
show-menu-by-longpress
src=
"../static/images/wechart.png
"
></image>
<image
class=
"wechart-qr"
mode=
"aspectFill"
show-menu-by-longpress
:src=
"baseUrl+'/common/wechart.png'
"
></image>
<view
class=
"wechart-no bold"
>
微信号 MMRWXM
</view>
<view
class=
"tips bold"
>
如需软件定制开发请扫码添加微信
</view>
<!--end 商业使用 未经作者授权不得删除此项 联系微信:MMRWXM(请注明来意) end -->
...
...
@@ -12,7 +12,8 @@
export
default
{
data
()
{
return
{
imgSrc
:
''
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
};
},
onLoad
()
{
...
...
pagesme/set/set.vue
View file @
1ce52950
...
...
@@ -5,7 +5,7 @@
<view
class=
"list-item-text"
>
{{
item
.
name
}}
</view>
<image
class=
"list-item-icon"
src=
"../../static/right.png
"
mode=
"aspectFill"
></image>
<image
class=
"list-item-icon"
:src=
"baseUrl+'/common/right.png'
"
mode=
"aspectFill"
></image>
</view>
</view>
<myPopup
v-if=
"isShow"
content=
"确定要注销吗?"
@
confirm=
"confirm"
@
cancel=
"cancelbtn"
></myPopup>
...
...
@@ -23,6 +23,8 @@
},
data
()
{
return
{
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
list
:
[{
name
:
"推荐设置"
,
url
:
"/pagespreference/preference/preference"
...
...
pagespreference/preference/preference.vue
View file @
1ce52950
...
...
@@ -8,7 +8,7 @@
<view
class=
"name"
>
{{
item
.
regionName2
}}
</view>
<view
class=
""
v-if=
"index == 0"
><u-icon
name=
"arrow-down"
color=
"#434343"
size=
"16"
></u-icon></view>
<view
class=
""
v-else
><u-icon
name=
"close"
color=
"#434343"
size=
"16"
></u-icon></view>
<image
src=
"../../static/select.png
"
v-if=
"index == 0"
class=
"img"
mode=
"aspectFill"
></image>
<image
:src=
"baseUrl+'/common/select.png'
"
v-if=
"index == 0"
class=
"img"
mode=
"aspectFill"
></image>
</view>
<view
class=
"div"
@
click=
"add"
><view
class=
"name"
style=
"margin-left: 0rpx;"
>
添加
</view></view>
...
...
@@ -52,6 +52,8 @@ export default {
},
data
()
{
return
{
//图片路径
baseUrl
:
'http://192.168.1.80/static/images'
,
falg
:
false
,
minValue
:
1
,
maxValue
:
100
,
...
...
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