油站小程序

This commit is contained in:
@QQNZX 2023-12-18 16:31:53 +08:00
parent 5891934b1b
commit 447bf6c744
2 changed files with 29 additions and 1 deletions

View File

@ -193,6 +193,13 @@
"navigationStyle": "custom"
}
},
{
"path": "CardManagement/Detail",
"style": {
"navigationBarTitleText": "添加子卡管理",
"navigationStyle": "custom"
}
},
{
"path": "writeOff/writeOff",
"style": {

View File

@ -30,6 +30,9 @@
</view>
</view>
</view>
<view class="x_anniu" @click="goDetail()">
<uni-icons type="plusempty" color="#fff" size="30"></uni-icons>
</view>
<!-- <u-empty v-if="list.length == 0 " mode="coupon" text="内容为空"
icon="http://cdn.uviewui.com/uview/empty/coupon.png">
@ -66,6 +69,11 @@
tapindex(index) {
this.tindex = index
},
goDetail() {
uni.navigateTo({
url: '/pagesMy/CardManagement/Detail'
})
},
goback() {
uni.navigateBack()
}
@ -197,4 +205,17 @@
font-size: 14px;
border-radius: 50px;
}
.x_anniu {
position: fixed;
bottom: 50px;
right: 30px;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background-color: #0000ff;
}
</style>