调色调
This commit is contained in:
@@ -27,9 +27,9 @@ const crowdfundsDetail = crowdfund_id => req({
|
|||||||
url: "crowdfunds/" + crowdfund_id
|
url: "crowdfunds/" + crowdfund_id
|
||||||
})
|
})
|
||||||
|
|
||||||
// 获取关注列表
|
// 获取项目关注列表
|
||||||
const getCrowdfundsLike = page => req({
|
const getCrowdfundsLike = page => req({
|
||||||
url: "user/subscribes",
|
url: "user/subscribes/crowdfunds",
|
||||||
method: "get",
|
method: "get",
|
||||||
data: {
|
data: {
|
||||||
page: page
|
page: page
|
||||||
@@ -123,8 +123,6 @@ const graces = (company_id, page) => req({
|
|||||||
page: page
|
page: page
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
// 企业风采更多列表
|
// 企业风采更多列表
|
||||||
const videos = (company_id, page) => req({
|
const videos = (company_id, page) => req({
|
||||||
url: "videos/" + company_id + "/advert",
|
url: "videos/" + company_id + "/advert",
|
||||||
@@ -132,7 +130,6 @@ const videos = (company_id, page) => req({
|
|||||||
page: page
|
page: page
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
// 更多员工列表
|
// 更多员工列表
|
||||||
const users = (company_id, page) => req({
|
const users = (company_id, page) => req({
|
||||||
url: "company/" + company_id + "/users",
|
url: "company/" + company_id + "/users",
|
||||||
@@ -140,7 +137,7 @@ const users = (company_id, page) => req({
|
|||||||
page: page
|
page: page
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
// 我的活动列表啥
|
// 我的活动列表
|
||||||
const userActives = (state, page) => req({
|
const userActives = (state, page) => req({
|
||||||
url: "user/actives",
|
url: "user/actives",
|
||||||
data: {
|
data: {
|
||||||
@@ -167,7 +164,6 @@ const getOrderInfo = (orderId) => req({
|
|||||||
url: "crowdorders/" + orderId
|
url: "crowdorders/" + orderId
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
// 退款售后详情
|
// 退款售后详情
|
||||||
const getRefundInfo = (refundId) => req({
|
const getRefundInfo = (refundId) => req({
|
||||||
url: "refunds/" + refundId
|
url: "refunds/" + refundId
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
{
|
{
|
||||||
"usingComponents": {},
|
"usingComponents": {},
|
||||||
"navigationBarTitleText": "设置"
|
"navigationBarTitleText": "修改信息",
|
||||||
|
"navigationBarTextStyle": "white",
|
||||||
|
"navigationBarBackgroundColor": "#378fff"
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"usingComponents": {},
|
"usingComponents": {},
|
||||||
"navigationBarTitleText": "设置",
|
"navigationBarTitleText": "关于我们",
|
||||||
"navigationBarTextStyle": "white",
|
"navigationBarTextStyle": "white",
|
||||||
"navigationBarBackgroundColor": "#378fff"
|
"navigationBarBackgroundColor": "#378fff"
|
||||||
}
|
}
|
||||||
@@ -5,5 +5,15 @@ Page({
|
|||||||
title: '正在完善,看看其他的吧',
|
title: '正在完善,看看其他的吧',
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
// 退出登录
|
||||||
|
loginOut() {
|
||||||
|
wx.clearStorage({
|
||||||
|
success: (res) => {
|
||||||
|
wx.reLaunch({
|
||||||
|
url: '/pages/welcome/index',
|
||||||
|
})
|
||||||
|
},
|
||||||
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@@ -1,7 +1,4 @@
|
|||||||
<!-- <navigator class="item" hover-class="none" url="/pages/user/setting/aboutMine/aboutMine">
|
<navigator class="item" hover-class="none" url="/pages/user/setting/aboutMine/aboutMine">
|
||||||
<image src="/static/images/aboutMine.png" mode="widthFix" /> 个人信息
|
|
||||||
</navigator> -->
|
|
||||||
<navigator class="item" hover-class="none" catchtap="showtoast">
|
|
||||||
<image src="/static/images/aboutMine.png" mode="widthFix" /> 个人信息
|
<image src="/static/images/aboutMine.png" mode="widthFix" /> 个人信息
|
||||||
</navigator>
|
</navigator>
|
||||||
<navigator class="item" hover-class="none" url="/pages/user/setting/aboutAdvice/aboutAdvice">
|
<navigator class="item" hover-class="none" url="/pages/user/setting/aboutAdvice/aboutAdvice">
|
||||||
@@ -9,4 +6,7 @@
|
|||||||
</navigator>
|
</navigator>
|
||||||
<navigator class="item" hover-class="none" url="/pages/user/setting/aboutUs/aboutUs">
|
<navigator class="item" hover-class="none" url="/pages/user/setting/aboutUs/aboutUs">
|
||||||
<image src="/static/images/aboutUs.png" mode="widthFix" /> 关于我们
|
<image src="/static/images/aboutUs.png" mode="widthFix" /> 关于我们
|
||||||
</navigator>
|
</navigator>
|
||||||
|
<view class="item" catchtap="loginOut" >
|
||||||
|
<image src="/static/images/out.png" mode="widthFix" /> 退出登录
|
||||||
|
</view>
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 8.9 KiB |
BIN
static/images/out.png
Normal file
BIN
static/images/out.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 404 B After Width: | Height: | Size: 3.4 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 4.3 KiB |
Reference in New Issue
Block a user