business.vue 807 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <view>
  3. <view v-for="(item,index) in list" :key="index" style="padding: 20upx 0;">
  4. <van-cell use-label-slot :title="item.name">
  5. <template slot="label">
  6. {{item.code}}
  7. </template>
  8. </van-cell>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. list:[
  17. {name:'城市运营商申请',code:"请联系:cshz@qzaiwang.com"},
  18. {name:'供应商申请',code:"请联系:gys@qzaiwang.com"},
  19. {name:'媒体公关',code:"请联系:mt@qzaiwang.com"},
  20. {name:'品牌广告',code:"请联系:gg@qzaiwang.com"},
  21. {name:'商家入驻',code:"请联系:sj@qzaiwang.com"},
  22. {name:'商务合作洽谈',code:"请联系:swhz@qzaiwang.com"}
  23. ]
  24. }
  25. },
  26. onLoad() {
  27. },
  28. methods:{
  29. }
  30. }
  31. </script>
  32. <style>
  33. </style>