修改手动绑定不能返回的问题,修改发票类型字段,修改首页样式

This commit is contained in:
2024-06-24 15:06:24 +08:00
parent 31870c0222
commit 9ca94479fa
11 changed files with 26 additions and 19 deletions

View File

@@ -294,7 +294,7 @@ Page({
if (!data?.length) {
alertInfo("尚无信息")
wx.redirectTo({
url: '/pages/handleLogin/index',
url: '/pages/handleLogin/index?back=false',
})
return;
}

View File

@@ -24,7 +24,7 @@
<view class="logined" wx:else>
<avatar text="{{ user.nickName }}" />
<view>
<van-button type="info" size="small" plain="{{true}}" class="loginBtn" custom-style="font-size: 32rpx;" bind:click="chooseTenement">{{tenement.name}} <van-icon name="arrow-down" style="margin-left: 16rpx;" /></van-button>
<van-button type="info" size="small" plain="{{true}}" class="loginBtn" custom-style="font-size: 32rpx; max-width:300rpx; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;" bind:click="chooseTenement">{{tenement.name}} <van-icon name="arrow-down" style="margin-left: 16rpx;" /></van-button>
<view class="welcome"> 欢迎使用华昌宝能用电管理系统! </view>
</view>
</view>

View File

@@ -21,6 +21,10 @@
.park {
margin-left: 20rpx;
max-width: 200rpx;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.parkContent {