feat: nfc卡写入结果
This commit is contained in:
parent
82153c42ce
commit
698a8ed05b
13
pages.json
13
pages.json
|
@ -23,6 +23,13 @@
|
|||
"navigationBarTitleText": "nfc卡写入"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/adminNfc/nfcResult",
|
||||
"style": {
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTitleText": "nfc卡写入"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/adminMy/index",
|
||||
"style": {
|
||||
|
@ -279,10 +286,8 @@
|
|||
// 当我们进入了pages/index/index页面以后就会预下载pages/subPack分包
|
||||
"pages/index/index": {
|
||||
"network": "all", //在指定网络下预下载,可选值为:all(不限网络)、wifi(仅wifi下预下载)
|
||||
"packages": [
|
||||
"pages/subPack"
|
||||
] //进入页面后预下载分包
|
||||
"packages": ["pages/subPack"] //进入页面后预下载分包
|
||||
}
|
||||
},
|
||||
"uniIdRouter": {}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,68 @@
|
|||
<template>
|
||||
<view class="content">
|
||||
<u-navbar
|
||||
:is-back="false"
|
||||
title="NFC卡写入"
|
||||
title-color="black"
|
||||
:background="{ backgroundColor: '#fff' }"
|
||||
:border-bottom="false"
|
||||
>
|
||||
</u-navbar>
|
||||
|
||||
<view class="image-box">
|
||||
<image src="/static/images/nfc-result.png" mode="widthFix" />
|
||||
</view>
|
||||
|
||||
<view class="result-box">
|
||||
<view class="result-title">NFC卡写入成功!</view>
|
||||
<view class="result-content">NFC卡已成功绑定子区域</view>
|
||||
</view>
|
||||
|
||||
<u-tabbar :list="vuex_tabbar"></u-tabbar>
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
import { loginApi } from "@/api/apiList";
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
phone: "13800451500",
|
||||
pwd: "123456",
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
uni.hideLoading(); // 关闭 Loading
|
||||
},
|
||||
onLoad() {},
|
||||
methods: {},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.content {
|
||||
height: calc(100vh - 100rpx); // 确保容器有明确高度
|
||||
overflow: hidden;
|
||||
padding-bottom: 100rpx;
|
||||
|
||||
.image-box {
|
||||
width: 100%;
|
||||
height: 500rpx;
|
||||
image {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.result-box {
|
||||
.result-title {
|
||||
font-size: 36rpx;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
.result-content {
|
||||
margin-top: 32rpx;
|
||||
font-size: 28rpx;
|
||||
color: #999;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue