123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- <template>
- <view class="admin-shouye-page">
- <view class="shouye-head-box">{{indexInfoData.jzName}}</view>
- <view class="index-banner-default" v-if="!swiperInfo.length>0"></view>
- <uni-swiper-dot v-else class="shouye-swiper-box" :info="swiperInfo" :current="current" field="content" mode="dot" :dots-styles="dotStyle">
- <swiper class="swiper-box" @change="change" autoplay circular interval="5000">
- <!-- autoplay circular interval="3000" -->
- <swiper-item v-for="(item ,index) in swiperInfo" :key="index">
- <img class="index-banner-img" :src="item.pic" @click="gotoKc(item)"/>
- </swiper-item>
- </swiper>
- </uni-swiper-dot>
- <view class="tj-btn-box">
- <text :class="{active: tjBtn == 1}" @click="tjBtnClick(1)">本周</text>
- <text :class="{active: tjBtn == 2}" @click="tjBtnClick(2)">本月</text>
- <text :class="{active: tjBtn == 0}" @click="tjBtnClick(0)">全部</text>
- </view>
- <view class="index-tj-row">
- <view class="index-tj-box">
- <view class="tj-num-box">{{indexInfoData.bzCount}}/{{indexInfoData.jzCount}}</view>
- <view class="tj-tip-box">考证人员/家政人员</view>
- </view>
- <view class="index-kc-box" @click="goToPage('sykc')">
- <view class="tj-num-box">{{indexInfoData.kechengCount}}/{{indexInfoData. kechengUsed}}</view>
- <view class="tj-tip-box">剩余课程/已售课程</view>
- <icon class="sjkc-jt-icon"></icon>
- </view>
- </view>
- <view class="index-tongzhi-box" @click="goToPage('tz')">
- <text class="tongzhi-num">{{tzNum}}</text>
- <rich-text :nodes="tzContent" class="tongzhi-content"></rich-text>
- <icon></icon>
- </view>
- <view class="card-list-box">
- <view class="card-list-title">管理家政人员</view>
- <view @click="goToPage('jz')" class="card-item-box">
- <icon class="index-icon jz-icon"></icon>
- <text>家政人员</text>
- </view>
- <!-- 添加子账号权限只有主账号拥有,其他子账号无法查看 -->
- <view @click="goToPage('zzh')" class="card-item-box" v-if="auth.type == 2">
- <icon class="index-icon zzh-icon"></icon>
- <text>创建子账号</text>
- </view>
- </view>
- <view class="card-list-box">
- <view class="card-list-title">管理考证人员</view>
- <view @click="goToPage('bz')" class="card-item-box">
- <icon class="index-icon kz-icon"></icon>
- <text>办证管理</text>
- </view>
- <view @click="goToPage('ks')" class="card-item-box">
- <icon class="index-icon ks-icon"></icon>
- <text>考试管理</text>
- </view>
- <view @click="goToPage('cj')" class="card-item-box">
- <icon class="index-icon cj-icon"></icon>
- <text>成绩管理</text>
- </view>
- <view @click="goToPage('lc')" class="card-item-box">
- <icon class="index-icon lx-icon"></icon>
- <text>练习管理</text>
- </view>
- <view @click="goToPage('kc')" class="card-item-box">
- <icon class="index-icon kc-icon"></icon>
- <text>课程管理</text>
- </view>
- </view>
- <!-- 页面底端 -->
- <customTabbarAdminVue :current-tab="0"></customTabbarAdminVue>
- <tip-dialog ref="tipDialogRef" :title="tipTitle" :content="tipContent"></tip-dialog>
- </view>
- </template>
- <script setup>
- import cacheManager from "@/utils/cacheManager.js";
- import {onLoad,onShow} from '@dcloudio/uni-app';
- import {reactive,ref} from "vue";
- import customTabbarAdminVue from "@/components/custom-tabbar/custom-tabbar-admin.vue";
- import {getAppNoticeList,getAppNoticeWait,getGlIndexInfo,getIndexKechengList} from '@/api/shouye.js'
- import tipDialog from '@/components/dialog/tipDialog.vue';
- import config from '../../../config.js'
- import * as httpApi from "@/api/login.js"
- const version = config.appInfo.version;
- const tipDialogRef = ref(null);
- const tipTitle = '升级提醒';
- const tipContent = '您的APP不是最新版本,部分功能不能使用,请升级至最新版本!';
- const auth = cacheManager.get('auth');
- const tjBtn = ref(1);
- const tzNum = ref(0);
- const tzContent = ref('');
- const searchType = ref('');
- const current = ref(0);
- let indexInfoData = reactive({
- searchType:1,
- bzCount: 0,
- jzCount: 0,
- jzName: '',
- kechengCount: 0,//剩余课程数量
- kechengUsed: 0,//售出课程数量
- });
- const swiperInfo = ref([]);
- const dotStyle = reactive({
- width:'8',
- height:'8',
- bottom:'-12',
- backgroundColor: 'rgba(226,230,236)',
- border: '1px rgb(226,230,236) solid',
- selectedBackgroundColor: 'rgb(92, 192, 147)',
- selectedBorder: '1px rgb(92, 192, 147) solid'
- });
- function change(e) {
- current.value = e.detail.current
- }
-
- function gotoKc(item){
- uni.navigateTo({
- url: `/pages/admin/Kecheng/study?kcId=${item.kcId}&from=shouye`
- })
- }
- onLoad((options) => {
- initPage();
- })
- function initPage() {
- getKcTg();
- getTzNum();
- getTzlist();
- getIndexInfo();
- }
- function getKcTg(){
- getIndexKechengList({}).then(res => {
- swiperInfo.value = res.data.data;
- })
- }
- function getTzNum(){
- getAppNoticeWait({}).then(res => {
- tzNum.value = res.data;
- })
- }
- function getIndexInfo(){
- getGlIndexInfo({searchType:indexInfoData.searchType}).then(res => {
- indexInfoData.bzCount = res.data.bzCount;
- indexInfoData.jzCount = res.data.jzCount;
- indexInfoData.jzName = res.data.jzName;
- indexInfoData.kechengCount = res.data.kechengCount;
- indexInfoData.kechengUsed = res.data.kechengUsed;
- })
- }
- function getTzlist(){
- const opt = {
- page: 1,
- size: 10, // 固定查询10条
- }
- getAppNoticeList(opt).then(res => {
- tzContent.value = res.data.data[0].name;
- })
- }
- // 按钮切换
- function tjBtnClick(data){
- tjBtn.value = data;
- indexInfoData.searchType = data;
- getIndexInfo();
- }
- // 获取用户头像
- function goToPage(data){
- switch (data) {
- case 'jz':
- uni.redirectTo({
- url:'/pages/admin/Jiazheng/index'
- })
- break;
- case 'zzh':
- uni.redirectTo({
- url:'/pages/admin/zizhanghao/list'
- })
- break;
- case 'sykc':
- uni.redirectTo({
- url:'/pages/admin/yishou/yishou'
- })
- break;
- case 'bz':
- uni.redirectTo({
- url:'/pages/admin/banzheng/list'
- })
- break;
- case 'ks':
- uni.redirectTo({
- url:'/pages/admin/Kaoshi/list'
- })
- break;
- case 'cj':
- uni.redirectTo({
- url:'/pages/admin/Chengji/list'
- })
- break;
- case 'kc':
- uni.redirectTo({
- url:'/pages/admin/Kecheng/list'
- })
- break;
- case 'tz':
- uni.redirectTo({
- url:'/pages/admin/tongzhi/list'
- })
- break;
- case 'lc':
- uni.redirectTo({
- url:'/pages/admin/Lianxi/list'
- })
- break;
- }
- }
- function getLoginInit(){
- httpApi.getVersion({}).then(res => {
- if(version!=res.data.version){
- tipDialogRef.value.handleShow();
- }
- })
- }
-
- onShow(() => {
- getLoginInit()
- })
- </script>
|