1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <template>
- <view class="phone-zjzgs-page">
- <view class="phone-navBar-box">
- <view @click="goUpPage" class="nav-bar-icon"></view>
- <text class="nav-bar-title">子家政公司</text>
- <uni-icons class="nav-bar-right-icon bar-ml10" type="search" size="20" @click="toggle('top')"></uni-icons>
- </view>
- <view class="jiazheng-search-box">
- <uni-datetime-picker v-model="data.range" type="daterange" @change="onDateSelect" style="flex: 1" class="yishou-date-box"/>
- </view>
- <view>
-
- <!-- <view>
- <view>办证机构:工商联</view>
- <view>职业等级:育婴师高级 申请数量:10</view>
- </view>
-
- <view>
- <view>办证机构:工商联</view>
- <view>职业等级:育婴师高级 办证数量:10</view>-->
- </view>
- </view>
- </template>
- <script setup>
- import {
- reactive,
- ref
- } from "vue";
- const data = reactive({
- list: [], // 办证列表
- loading: false,
- page: 0,
- size: 10,
- state: 'more',
- contentText: {
- contentdown: '查看更多',
- contentrefresh: '加载中',
- contentnomore: '没有更多'
- },
- startDate: '',
- endDate: '',
- range: []
- })
- function goUpPage() {
- uni.redirectTo({
- url: `/pages/admin/ShouYe/shouye`
- })
- }
- </script>
- <style>
- </style>
|