| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <template>
- <view class="content">
- <view>
- <view class="box_4">
- <view class="group_1">
- <view class="text-group_2">
- <text lines="1" class="text_3">服务对象</text>
- <text lines="1" class="text_4">请选择服务对象</text>
- </view>
- <u-icon name="arrow-right" color="#666" size="18"></u-icon>
- </view>
- <view class="group_2"></view>
- <view class="group_1">
- <view class="text-group_2">
- <text lines="1" class="text_3">服务类型</text>
- <text lines="1" class="text_4">请选择服务类型</text>
- </view>
- <u-icon name="arrow-right" color="#666" size="18"></u-icon>
- </view>
- <view class="group_2"></view>
- </view>
- <view class="tabBarLineHeight"></view>
- <view class="tabBarView">
- <view class="submitButton">提交</view>
- </view>
- </view>
- </view>>
- </template>
- <script>
- import tabBar from "../../components/tabBar/tabBar";
- export default {
- components: {
- tabBar
- },
- data() {
- return {
- title: 'Hello',
- tabIndex: 3
- }
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style scoped lang="scss">
- @import '/common/css/common.css';
- @import './index.rpx.scss';
- </style>
|