index.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <view class="phone-zjzgs-page">
  3. <view class="phone-navBar-box">
  4. <view @click="goUpPage" class="nav-bar-icon"></view>
  5. <text class="nav-bar-title">子家政公司</text>
  6. <uni-icons class="nav-bar-right-icon bar-ml10" type="search" size="20" @click="toggle('top')"></uni-icons>
  7. </view>
  8. <view class="jiazheng-search-box">
  9. <uni-datetime-picker v-model="data.range" type="daterange" @change="onDateSelect" style="flex: 1" class="yishou-date-box"/>
  10. </view>
  11. <view>
  12. <!-- <view>
  13. <view>办证机构:工商联</view>
  14. <view>职业等级:育婴师高级 申请数量:10</view>
  15. </view>
  16. <view>
  17. <view>办证机构:工商联</view>
  18. <view>职业等级:育婴师高级 办证数量:10</view>-->
  19. </view>
  20. </view>
  21. </template>
  22. <script setup>
  23. import {
  24. reactive,
  25. ref
  26. } from "vue";
  27. const data = reactive({
  28. list: [], // 办证列表
  29. loading: false,
  30. page: 0,
  31. size: 10,
  32. state: 'more',
  33. contentText: {
  34. contentdown: '查看更多',
  35. contentrefresh: '加载中',
  36. contentnomore: '没有更多'
  37. },
  38. startDate: '',
  39. endDate: '',
  40. range: []
  41. })
  42. function goUpPage() {
  43. uni.redirectTo({
  44. url: `/pages/admin/ShouYe/shouye`
  45. })
  46. }
  47. </script>
  48. <style>
  49. </style>