12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view>
- <view v-for="(item,index) in list" :key="index" style="padding: 20upx 0;">
- <van-cell use-label-slot :title="item.name">
- <template slot="label">
- {{item.code}}
- </template>
- </van-cell>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- list:[
- {name:'城市运营商申请',code:"请联系:cshz@qzaiwang.com"},
- {name:'供应商申请',code:"请联系:gys@qzaiwang.com"},
- {name:'媒体公关',code:"请联系:mt@qzaiwang.com"},
- {name:'品牌广告',code:"请联系:gg@qzaiwang.com"},
- {name:'商家入驻',code:"请联系:sj@qzaiwang.com"},
- {name:'商务合作洽谈',code:"请联系:swhz@qzaiwang.com"}
- ]
- }
- },
- onLoad() {
-
- },
- methods:{
-
- }
- }
- </script>
- <style>
- </style>
|