| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <view class="content">
- <view class="xuzhi">
- <view style="margin-left: 50rpx;margin-top: 15rpx;margin-right: 15rpx;" v-for="(item,index) in xuzhiList" :key="index">•{{item.list}}</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- xuzhiList:[
- {id:1,list:'酒店在14:00后办理入住;'},
- {id:2,list:'我们从分享时机、分享形式、分享动机、分享场景4个维度来聊聊;'},
- {id:3,list:'我们从分享时机、分享形式、分享动机、分享场景4个维度来聊聊,时机、分享形式、分享动机、分享场景4个维度来聊聊;'},
- ]
- }
- },
- onLoad() {
-
- },
- methods: {
-
- }
- }
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- background-color: #F2F3F5;
- }
- .xuzhi{
- display: revert;
- margin-top: 20rpx;
- width: 750rpx;
- height: 1300rpx;
- background: rgba(255, 255, 255, 1);
- color: rgba(102, 102, 102, 1);
- font-size: 28rpx;
- font-weight: 400;
- }
- </style>
|