| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <template>
- <view class="content">
- <view>
- <scroll-view :scroll-top="scrollTop" scroll-y="true" class="scroll-Y" @scrolltoupper="upper"
- @scrolltolower="lower" @scroll="scroll">
- <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>
- </scroll-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>
|