company.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <template>
  2. <!-- 选择公司 -->
  3. <view>
  4. <u-navbar title="选择公司" autoBack placeholder></u-navbar>
  5. <view class="card_company" v-if="list.length > 0">
  6. <view class="hint_title">请选择燃气公司</view>
  7. <view class="item_company" v-for="(item,index) in list" :key="index" @click="goBooking">
  8. <u--image :showLoading="true" :src="src" width="80px" height="80px" @click="click"></u--image>
  9. <view class="wordage">
  10. <view class="title_company">{{item.title}}</view>
  11. <view class="distance_title">距您{{item.num}}</view>
  12. </view>
  13. </view>
  14. </view>
  15. <view style="margin-top: 30%;" v-else>
  16. <u-empty mode="list" text="该区/县暂无商家入驻"></u-empty>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. src: 'https://cdn.uviewui.com/uview/album/1.jpg',
  25. list: [{
  26. title: '宝智达燃气有限公司',
  27. num: '10.12km',
  28. }, {
  29. title: '宝智达燃气有限公司',
  30. num: '10.12km',
  31. }, ]
  32. }
  33. },
  34. methods: {
  35. // 去订气
  36. goBooking() {
  37. uni.navigateTo({
  38. url: '/pages/order/booking'
  39. });
  40. }
  41. }
  42. }
  43. </script>
  44. <style lang="scss" scoped>
  45. .card_company {
  46. display: flex;
  47. flex-direction: column,
  48. }
  49. .hint_title {
  50. margin-left: 30rpx;
  51. margin-top: 30rpx;
  52. font-size: 26rpx;
  53. color: #909399;
  54. }
  55. .item_company {
  56. display: flex;
  57. margin: 30rpx 30rpx 0rpx 30rpx;
  58. border: 1rpx solid #e7e6e4;
  59. border-radius: 10rpx;
  60. }
  61. .wordage {
  62. display: flex;
  63. flex-direction: column;
  64. justify-content: space-evenly;
  65. margin-left: 20rpx;
  66. padding: auto 0px;
  67. }
  68. .title_company {
  69. color: #303133;
  70. font-size: 30rpx;
  71. font-weight: 600;
  72. }
  73. .distance_title {
  74. font-size: 24rpx;
  75. color: #909399;
  76. }
  77. </style>