index.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <view class="content">
  3. <view>
  4. <view class="box_4">
  5. <view class="group_1">
  6. <view class="text-group_2">
  7. <text lines="1" class="text_3">服务对象</text>
  8. <text lines="1" class="text_4">请选择服务对象</text>
  9. </view>
  10. <u-icon name="arrow-right" color="#666" size="18"></u-icon>
  11. </view>
  12. <view class="group_2"></view>
  13. <view class="group_1">
  14. <view class="text-group_2">
  15. <text lines="1" class="text_3">服务类型</text>
  16. <text lines="1" class="text_4">请选择服务类型</text>
  17. </view>
  18. <u-icon name="arrow-right" color="#666" size="18"></u-icon>
  19. </view>
  20. <view class="group_2"></view>
  21. </view>
  22. <view class="tabBarLineHeight"></view>
  23. <view class="tabBarView">
  24. <view class="submitButton">提交</view>
  25. </view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. import tabBar from "../../components/tabBar/tabBar";
  31. export default {
  32. components: {
  33. tabBar
  34. },
  35. data() {
  36. return {
  37. title: 'Hello',
  38. tabIndex: 3
  39. }
  40. },
  41. onLoad() {
  42. },
  43. methods: {
  44. }
  45. }
  46. </script>
  47. <style scoped lang="scss">
  48. @import '/common/css/common.css';
  49. @import './index.rpx.scss';
  50. </style>