1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <view class="phone-zjzgs-page">
- <view class="icon-title-navBar-box">
- <view @click="goUpPage" class="nav-bar-icon"></view>
- <text class="nav-bar-title">已办证数量</text>
- </view>
- <view class="zjzgs-body-box">
- <view class="zjzgs-num-box" v-for="item in data.list" :key="item.jzId">
- <view class="zjzgs-title">{{ item.jgName }}</view>
- <view class="num-item-box">
- <view>职业等级:{{ item.zyName }}{{item.zyLevel}}</view>
- </view>
- <view class="num-item-box">
- <view>申请数量:{{ item.userCount }}</view>
- </view>
- <view class="list-btn-box">
- <view class="list-btn" @click="checkUser(item)">查看详情</view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script setup>
- import {
- onLoad
- } from "@dcloudio/uni-app"
- import {ref} from "vue"
- import * as httpApi from "@/api/zijiazhenggongsi"
-
- const listIds = ref([])
-
- const certList = ref([])
-
- onLoad((options) =>{
- listIds.value = options.listIds.split(',');
- })
-
- function getCertInfo() {
- httpApi.getZiJiazhengGongsiInfo({idList:listIds.value}).then(res => {
- certList.value = res.data;
- })
- }
-
- function checkUser(item) {}
-
- function goUpPage() {
- uni.redirectTo({
- url:'/pages/admin/zijiazheng/index'
- })
- }
- </script>
- <style>
- </style>
|