1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <view class="homePage-container">
- <view class="scan-con">
- <u-icon name="scan" class="scan-icon" size="70"></u-icon>
- <text class="scan-txt">扫描识别</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- onShow() {
-
- },
- methods:{
-
- }
- }
- </script>
- <style lang="scss">
- page{
- height: 100%;
- }
- .homePage-container {
- width: 100%;
- height: 100%;
- background-color: rgba(0,0,0,.6);
- .scan-con{
- background-color: #ed1c24;
- width: 260upx;
- height: 260upx;
- border-radius: 50%;
- color: #fff;
- margin: 300upx auto 0;
- text-align: center;
- .scan-icon{
- margin: 70upx 0 14upx;
- }
- .scan-txt{
- display: block;
- font-size: 30upx;
- }
- }
- }
- </style>
|