12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <mobile-frame>
- <view class="main">
- <view class="one">
- <view class="one_1">
- <text class="text1">{{info.name}}{{info.specs}}</text>
- <text class="text2">好评率</text>
- <text class="text3">{{info.rate}}%</text>
- </view>
- <view class="one_2">
- <view class="one_2_1" v-for="(item,index) in addressList" :key="index"></view>
- </view>
- </view>
- </view>
- </mobile-frame>
- </template>
- <script>
- export default {
- data() {
- return {
- list: []
- };
- },
- onLoad: function(e) {
- },
- methods: {
- }
- }
- </script>
- <style lang="scss">
- .main {
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 100vh;
- .one {}
- }
- </style>
|