aboutUs.vue 941 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view>
  3. <div class="images">
  4. <u--image shape="circle" :showLoading="true" :src="'/static/niu.jpg'" width="150px" height="150px" @click="click"></u--image>
  5. </div>
  6. <div style="padding:15px;">
  7. 酒店会,提供在线预定酒店,办理酒店会员,充值,消费。百分百酒店直营,花最少的价钱,住更好的酒店!
  8. </div>
  9. <u-cell title="营业执照" :isLink="true" arrow-direction="right"></u-cell>
  10. <u-cell title="经营许可证" :isLink="true" arrow-direction="right"></u-cell>
  11. <u-cell title="用户协议" :isLink="true" arrow-direction="right"></u-cell>
  12. <u-cell title="隐私政策" :isLink="true" arrow-direction="right"></u-cell>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. }
  20. },
  21. methods: {
  22. }
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. .images{
  27. display: flex;
  28. justify-content: center;
  29. align-items: center;
  30. height: 300px;
  31. }
  32. </style>