体验模式

This commit is contained in:
gcd 2025-03-27 17:25:27 +08:00
parent 828c962295
commit 5f44da79cc
2 changed files with 31 additions and 15 deletions

View File

@ -1,5 +1,13 @@
{
"pages": [
{
"path" : "pages/user/login",
"style" :
{
"navigationBarTitleText" : "登录",
"disableScroll": true
}
},
{
"path" : "pages/index/index",
"style" :
@ -24,27 +32,19 @@
"navigationStyle": "custom"
}
},
{
"path" : "pages/user/login",
"style" :
{
"navigationBarTitleText" : "登录",
"disableScroll": true
}
},
{
"path" : "pages/order/order-info",
"style" :
{
"navigationBarTitleText" : "工单详情"
}
},
{
"path" : "pages/order/order-submit",
"style" :
{
"navigationBarTitleText" : "提交"
}
},
{
"path" : "pages/order/order-submit",
"style" :
{
"navigationBarTitleText" : "提交"
}
}
],
"globalStyle": {

View File

@ -22,6 +22,9 @@
<me-button @click="phoneLogin()" text="手机号一键登录" width="590rpx"></me-button>
</view>
</view>
<view class="visitor-ctr flex-c">
<view class="visitor flex-c" hover-class="auto-mask-layer-radius8" hover-start-time="0" hover-stay-time="50">体验一下</view>
</view>
</view>
</template>
@ -148,5 +151,18 @@ page {
margin-top: 32rpx;
}
}
.visitor-ctr {
width: 100%;
height: 104rpx;
position: fixed;
bottom: 68rpx;
left: 0;
.visitor {
width: 176rpx;
height: 72rpx;
font-size: 28rpx;
color: var(--summaryColor);
}
}
}
</style>