1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

修改小程序目录,删除示例小程序

This commit is contained in:
2022-11-24 00:01:57 +08:00
parent abd8f20716
commit 396cbdb95d
200 changed files with 24 additions and 5690 deletions

View File

@@ -0,0 +1,4 @@
export default definePageConfig({
navigationBarTitleText: '身份码'
})

View File

@@ -0,0 +1,8 @@
.time-text {
font-weight: bold;
}
#qrcode {
width: 70vw;
height: 70vw;
}

View File

@@ -0,0 +1,21 @@
<template>
<view style="background-color: #F6F6F6;height: 100%;">
<image src="../../image/home.jpg" style="width: 100%;height: 130px;"></image>
</view>
<view style="text-align: center; margin-top: 100px;">
<view><text>{{ stuId }} {{ name }}</text></view>
<image id="qrcode" src="{{imgUrl}}"></image>
<view><text class="time-text">{{ time }}</text></view>
</view>
</template>
<script>
import './code.css'
export default {
data() {
return {
}
}
}
</script>