123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <template>
- <!-- 首页 -->
- <view class="page">
- <image class="topBanner" src="../../static/image/topBanner.png" mode="scaleToFill"></image>
- <view class="content-list">
- <view class="item">
- <view class="flex item-user">
- <view class="item-left-user flex">
- <view class="user-pic">
-
- </view>
- <view class="user-name-box">
- <view class="user-name">
-
- </view>
- <view class="user-money flex">
- <view class="tipImg">
-
- </view>
- <view class="mongy">
-
- </view>
- </view>
- </view>
- </view>
- <view class="item-rigt-user">
-
- </view>
- </view>
- <view class="item-user-model flex">
- <view class="model">
-
- </view>
- <view class="model">
-
- </view>
- <view class="model">
-
- </view>
- </view>
-
- <view class="flex">
- <view class="function-block">
-
- </view>
- <view class="function-block">
-
- </view>
- </view>
-
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- onLoad(options) {
-
- },
- onShow() {},
- methods: {
-
- }
- };
- </script>
- <style lang="scss">
- .page{
- background-image:linear-gradient(#5d34ff,#e0d8ff) ;
- min-height: 100vh;
- }
- .topBanner{
- width: 750rpx;
- height: 900rpx;
- }
- </style>
|