|
@@ -43,13 +43,7 @@
|
|
<view class="invitationBtn">邀请好友</view>
|
|
<view class="invitationBtn">邀请好友</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
- <view class="homeBtn"
|
|
|
|
- :style="`position: fixed; z-index: 1000; right: 0; bottom: 25%; width: 96rpx; height: 110rpx; display: flex; flex-direction: column; align-items: center;border-radius: 20rpx 0rpx 0px 20rpx;box-shadow: 0rpx 10rpx 20rpx 0px rgba(119,55,12,0.20); background-color: ${color2};`"
|
|
|
|
- @click="backAction">
|
|
|
|
- <image class="icon" style="margin-top: 8rpx;width: 30rpx; height: 28rpx;" src="https://dm.static.elab-plus.com/yezhu/h5/icon_homeBtn.png" mode="aspectFit"></image>
|
|
|
|
- <view class="text" style="margin-top: 6rpx;font-size: 12rpx;font-family: PingFang SC, PingFang SC-Semibold;font-weight: 400;text-align: center;color: #ffffff;">返回</view>
|
|
|
|
- <view class="text" style="margin-top: -2rpx;;font-size: 12rpx;font-family: PingFang SC, PingFang SC-Semibold;font-weight: 400;text-align: center;color: #ffffff;">任务大厅</view>
|
|
|
|
- </view>
|
|
|
|
|
|
+ <backHome></backHome>
|
|
<login-notice></login-notice>
|
|
<login-notice></login-notice>
|
|
<login></login>
|
|
<login></login>
|
|
</view>
|
|
</view>
|
|
@@ -62,6 +56,7 @@
|
|
} from '../../static/format.js'
|
|
} from '../../static/format.js'
|
|
|
|
|
|
let app = getApp();
|
|
let app = getApp();
|
|
|
|
+ import backHome from "@/components/backHome/backHome.vue"
|
|
export default {
|
|
export default {
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
@@ -130,6 +125,9 @@
|
|
onLoad(param) {
|
|
onLoad(param) {
|
|
this.projectId = param.projectId;
|
|
this.projectId = param.projectId;
|
|
},
|
|
},
|
|
|
|
+ components:{
|
|
|
|
+ backHome
|
|
|
|
+ },
|
|
mounted() {
|
|
mounted() {
|
|
this.color1 = app.globalData.color1;
|
|
this.color1 = app.globalData.color1;
|
|
this.color2 = app.globalData.color2;
|
|
this.color2 = app.globalData.color2;
|