Commit 96a21780 by peijy

8.8 老师-后勤报修

parent 5d3a4cb4
......@@ -39,6 +39,7 @@ declare module '@vue/runtime-core' {
VanPullRefresh: typeof import('vant/es')['PullRefresh']
VanRadio: typeof import('vant/es')['Radio']
VanRadioGroup: typeof import('vant/es')['RadioGroup']
VanRate: typeof import('vant/es')['Rate']
VanSearch: typeof import('vant/es')['Search']
VanSidebar: typeof import('vant/es')['Sidebar']
VanSidebarItem: typeof import('vant/es')['SidebarItem']
......
......@@ -199,12 +199,54 @@ const routes = [
name: "TeacherList",
component: () => import("../views/parent/TeacherList.vue"),
},
/* 学生选课 家长端 */
{
path: "/studentCourseSelection",
name: "studentCourseSelection",
component: () => import("../views/parent/studentCourseSelection/index"),
},
/* 学生选课 家长端 学科成绩 */
{
path: "/subjectAchievement",
name: "subjectAchievement",
component: () => import("../views/parent/studentCourseSelection/subjectAchievement"),
},
/* 学生选课 家长端 成绩查看 */
{
path: "/totalScoreView",
name: "totalScoreView",
component: () => import("../views/parent/studentCourseSelection/totalScoreView"),
},
/* 教师列表页 教师端的 可以查看所有教师 */
{
path: "/teacherListTeac",
name: "TeacherListTeac",
component: () => import("../views/teacher/TeacherListTeac.vue"),
},
/* 后勤报修 教师端的 */
{
path: "/logisticsRepair",
name: "logisticsRepair",
component: () => import("../views/teacher/logisticsRepair/index"),
},
/* 后勤报修新增 教师端的 */
{
path: "/addRepair",
name: "addRepair",
component: () => import("../views/teacher/logisticsRepair/addRepair"),
},
/* 后勤报修查看 教师端的 */
{
path: "/checkRepair",
name: "checkRepair",
component: () => import("../views/teacher/logisticsRepair/checkRepair"),
},
/* 后勤报修反馈 教师端的 */
{
path: "/feedbackRepair",
name: "feedbackRepair",
component: () => import("../views/teacher/logisticsRepair/feedbackRepair"),
},
// /* 课程表 */
// {
// path: "/gradeSchedule",
......
/**
* 教师报修
* */
import axios from "../utils/axios";
//个人报修列表
export function getRepairList() {
return axios.get('/wx/repairs/getList');
}
//新增报修信息
export function addRepairInfo(data) {
return axios.post('/wx/repairs/add/' ,{
...data
} );
}
//获取报修单号
export function getNumber(data) {
return axios.get('/wx/repairs/getNumber');
}
//修改报修信息
export function editRepairInfo(data) {
return axios.post('/wx/repairs/edit/' ,{
...data
} );
}
//删除报修信息
export function removeRepairInfo(id) {
return axios.post('/wx/repairs/remove/' + id );
}
//反馈结果
export function getFeedResult(data) {
return axios.post('/wx/repairs/edit/' ,{
...data
} );
}
//查询报修信息详情
export function getRepairInfo(id) {
return axios.get('/wx/repairs/' + id );
}
//上传故障图片
export function uploadPic(query) {
return axios({
url: "/wx/userInfo/editFailure",
method: "PUT",
data: query,
});
}
/**
* 家长选课
* */
import axios from "../utils/axios";
//查询个人成绩信息
export function getPersonGrade(id) {
return axios.get('/wx/course/achievement/' + id );
}
//根据学生3门选课查询
export function getSelectGrade(data) {
return axios.post('/wx/course/studenttypeview' ,{
...data
} );
}
//保存选课信息
export function saveSelectInfo(data) {
return axios.post('/wx/course/savestudentcourse' ,{
...data
} );
}
......@@ -141,6 +141,7 @@ export default {
name: "Login",
setup() {
//双向绑定对象
const state = reactive({
message: "请填写学生身份证号",
// studentName: "伊一", //学生姓名
......
<template>
<div class="main">
<div>
<van-nav-bar
title="教师信息"
left-text="返回"
......
<!--成绩查看 totalScoreView-->
<template>
<van-nav-bar
title="成绩查看"
left-text="返回"
left-arrow
@click-left="goback"
/>
<!-- 一模-->
<div
class="c_main_list card"
:class=" collapsFirst ? 'isCollaps': ''"
>
<!--折叠-->
<div class="collaps" @click="isCollaps(1)" v-if="collapsFirst == false">展开</div>
<div class="collaps" @click="isCollaps(1)" v-else>折叠</div>
<div style="text-align: center;font-size: 20px" class="title">一模</div>
<div class="totalScore">
<div>总成绩:<span>600</span></div>
<div>总成绩年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>语文:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>数学:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>英语:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>历史:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>地理:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>生物:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>物理:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>化学:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>政治:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
</div>
<!-- 二模-->
<div
class="c_main_list card"
:class=" collapsSecond ? 'isCollaps': ''"
>
<!--折叠-->
<div class="collaps" @click="isCollaps(2)" v-if="collapsSecond == false">展开</div>
<div class="collaps" @click="isCollaps(2)" v-else>折叠</div>
<div style="text-align: center;font-size: 20px" class="title">二模</div>
<div class="totalScore">
<div>总成绩:<span>600</span></div>
<div>总成绩年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>语文:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>数学:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>英语:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>历史:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>地理:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>生物:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>物理:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>化学:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>政治:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
</div>
<!-- 三模-->
<div
class="c_main_list card"
:class=" collapsThird ? 'isCollaps': ''"
>
<!--折叠-->
<div class="collaps" @click="isCollaps(3)" v-if="collapsThird == false">展开</div>
<div class="collaps" @click="isCollaps(3)" v-else>折叠</div>
<div style="text-align: center;font-size: 20px" class="title">三模</div>
<div class="totalScore">
<div>总成绩:<span>600</span></div>
<div>总成绩年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>语文:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>数学:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>英语:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>历史:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>地理:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>生物:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>物理:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>化学:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
<div class="subject">
<div>政治:<span>600</span></div>
<div>年纪排名:<span>5000</span></div>
</div>
</div>
</template>
<script setup>
import {onMounted, ref, onUpdated, reactive, toRefs} from "vue";
import {useRouter,useRoute} from "vue-router";
import {useStore} from "vuex";
import {
getPersonGrade, //查询个人成绩信息
} from "@/service/studentCourseSelection";
const router = useRouter();
const route = useRoute();
const store = useStore();
const query = route.query;
const state = reactive({
});
const collapsFirst = ref(false);
const collapsSecond = ref(false);
const collapsThird = ref(false);
const isCollaps = (num) => {
if(num == 1){
collapsFirst.value = !collapsFirst.value
}
if(num == 2){
collapsSecond.value = !collapsSecond.value
}
if(num == 3){
collapsThird.value = !collapsThird.value
}
};
onMounted( async () => {
console.log('query.id',query.id)
let result = await getPersonGrade(query.id)
console.log('result',result)
})
const goback = (g) => {
router.back();
};
</script>
<style lang="less" scoped>
.totalScore{
font-size: 14px;
display:flex;
justify-content: space-around;
margin: 20px 0 10px 0;
padding-bottom: 15px;
border-bottom:1px solid silver;
}
.subject{
font-size: 14px;
display:flex;
justify-content: space-around;
margin-bottom: 10px;
}
.card{
spadding: 18px 12px 15px 17px;
position:relative;
height: 160px;
overflow-y: hidden
}
.collaps{
text-align:center;
height: 30px;
line-height: 30px;
width: 80px;
font-size: 14px;
position:absolute;
right: 0;
top: 0;
background: #4ea0fc;
border-radius: 5px;
color: #ffffff;
}
.isCollaps{
height: 350px !important;
}
</style>
......@@ -363,19 +363,19 @@ export default {
console.log(123, file);
const formData = new FormData();
formData.append("avatarfile", file.file);
console.log('formData',formData)
// 请求接口上传图片到服务器
let result = await uploadImgpar(formData);
console.log('666',result)
if (result.code == 200) {
state.imgUrl = file.content;
// state.imgUrl = axios.defaults.baseURL + result.imgUrl;
let userInfo = store.state.userInfo;
userInfo.avatar = file.content;
store.commit("edituserInfo", userInfo);
this.$toast("头像修改成功");
Toast.success("头像修改成功");
} else {
this.$toast(res.msg);
Toast.fail(res.msg);
}
};
......
......@@ -17,6 +17,7 @@
</van-swipe-item>
</van-swipe>
<div class="main">
<!-- 家长登录查看的 -->
<div
style="padding-left: 10px; padding-right: 5px"
v-show="parentShow"
......@@ -32,6 +33,7 @@
<text class="main_top_o_text">学生请假</text>
</div>
</div>
<!-- 老师登录查看的 -->
<div
style="padding-left: 10px; padding-right: 5px"
v-show="teacherShow"
......@@ -83,7 +85,7 @@
<span class="item_text">冬夏时令</span>
</van-grid-item> -->
</van-grid>
<!-- 家长登录查看的 -->
<van-grid class="theIconGrid" :column-num="4" v-show="parentShow">
<van-grid-item icon="photo-o" text="园区介绍" url=" #/gardenIntr">
<van-image
......@@ -182,6 +184,13 @@
/>
<span class="item_text">教师信息</span>
</van-grid-item>
<van-grid-item icon="photo-o" text="学生选课" url=" #/studentCourseSelection">
<van-image
style="width: 48px"
:src="require('@/assets/index/rkls.png')"
/>
<span class="item_text">学生选课</span>
</van-grid-item>
<!-- <van-grid-item icon="photo-o" text="请假" url=" #/studentLeavetask">
<van-image
style="width: 48px"
......@@ -220,6 +229,7 @@
<span class="item_text">素质评价</span>
</van-grid-item> -->
</van-grid>
<!-- 老师登录查看的 -->
<van-grid class="theIconGrid" :column-num="4" v-show="teacherShow">
<van-grid-item icon="photo-o" text="园区介绍" url=" #/gardenIntr">
<van-image
......@@ -390,7 +400,17 @@
/>
<span class="item_text">问卷调查</span>
</van-grid-item>
<van-grid-item
icon="photo-o"
text="后勤报修"
url=" #/logisticsRepair"
>
<van-image
style="width: 48px"
:src="require('@/assets/index/dcwj.png')"
/>
<span class="item_text">后勤报修</span>
</van-grid-item>
<!-- <van-grid-item icon="photo-o" text="我的领用" url=" #/myUse">
<van-image
style="width: 24px"
......@@ -566,6 +586,7 @@ export default {
const getuserInfo = async () => {
//访问后台接口
let result = await getInfo();
console.log('info',result)
if (result.code === 200) {
let userInfo = result.userInfo;
if (userInfo.type == 1) {
......
<template>
<van-nav-bar
title="报修结果反馈"
left-text="返回"
left-arrow
@click-left="goback"
/>
<div class="">
<div class="main">
<div class="mainCard">
<div style="display: flex;flex-direction: row;justify-content: left;align-items: center">
<p style="width: 3px;height: 18px;background-color: #1989fa;border: 1px solid #1989fa;border-radius: 2px"></p>
<p class="title">反馈结果</p>
</div>
<van-form label-align="right" label-width="105px" ref="feedbackForm">
<van-field
label="报修单号"
v-model="state.id"
rows="1"
autosize
type="textarea"
placeholder="报修单号"
/>
<van-field
v-model="state.maintainResult"
is-link
readonly
name="picker"
label="维修结果"
placeholder="请选择维修结果"
@click="showPicker = true"
/>
<van-popup v-model:show="showPicker" position="bottom">
<van-picker
:columns="columns"
@confirm="onConfirm"
@cancel="showPicker = false"
/>
</van-popup>
<van-field name="rate" label="评价:">
<template #input>
<van-rate v-model="state.evaluate" />
</template>
</van-field>
<div class="main_one_btna" style="margin:20px 0">
<van-button
style="width: 75px; height: 28px; margin-right: 15px"
type="primary"
@click="submitFeedbackForm"
native-type="submit"
loading-type="spinner"
:loading="loading"
>确认
</van-button>
</div>
</van-form>
</div>
</div>
</div>
</template>
<script setup>
import { onMounted, ref, onUpdated,reactive } from "vue";
import { Dialog, Toast } from "vant";
import { useRouter } from "vue-router";
import { useStore } from "vuex";
import {
getFeedResult, //反馈结果
} from "@/service/repair";
import { formatDatetime } from "@/utils/time.js";
const router = useRouter();
const store = useStore();
const minDate = new Date(
new Date().getFullYear(),
new Date().getMonth(),
new Date().getDate()
);
const maxDate = new Date(2050, 10, 1);
const state = reactive({
id:null, //报修单号
maintainResult:'', //维修结果
maintainState:2, //维修状态
evaluate:'', //评价
});
const showPicker = ref(false);
const columns = ['已修好', '无法维修'];
const onConfirm = (value) => {
state.maintainResult = value;
showPicker.value = false;
};
// 提交表单
const feedbackForm = ref(null);
// 加载效果
const loading = ref(false);
const courseNumss = ref([]);
onMounted( () => {
console.log("3- 组件挂在完毕执行 --- onMounted");
console.log('router1',router.currentRoute.value.query.id)
state.id = router.currentRoute.value.query.id
console.log('state.id',state.id)
});
// 确认按钮
const submitFeedbackForm = () => {
feedbackForm.value
.validate()
.then((valid) => {
Toast.loading({
message: "加载中...",
forbidClick: true,
});
console.log(valid);
state.id = Number(state.id)
state.maintainState = 3
getFeedResult({
...state,
})
.then((response) => {
Toast.success("提交成功");
goback();
})
.catch((error) => {
loading.value = false;
Toast.fail("提交失败");
});
})
.catch((message) => {});
};
const goback = (g) => {
router.back();
};
</script>
<style scoped lang="less">
/** 最上层banner条 */
.home {
height: 15rem;
}
.bg_color {
background-color: rgb(230, 230, 230);
}
.m_top {
height: 40vw;
position: relative;
}
.main {
margin: 15px;
height: auto !important;
min-height: 80vh;
line-height: 20px;
border-radius: 50px 50px 70px 70px;
// background-color: rgba(255, 199, 0, 100);
font-size: 14px;
text-align: center;
padding-bottom: 15vw;
.mainCard {
background:#ffffff;
padding:0px 10px 10px 10px;
border: 1px solid silver;
border-radius: 10px;
box-shadow:0px 0px 10px #888888;
.title {
text-align: left;
font-size: 14px;
color: #1989fa;
margin-left: 10px;
}
}
}
</style>
<template>
<van-nav-bar
title="报修列表"
left-text="返回"
left-arrow
@click-left="goback"
right-text="新增"
@click-right="goAddRepair"
/>
<!-- 下拉刷新 -->
<van-pull-refresh v-model="refreshing" @refresh="onRefresh">
<van-list
v-model:loading="loading"
:finished="finished"
finished-text="没有更多了"
@load="onLoad"
>
<!--循环-->
<div
class="c_main_list"
v-for="item in list"
:key="item.id"
style="padding: 18px 12px 15px 17px"
>
<div style="position: relative">
<div style="position: absolute; top: -18px; right: -12px">
<div
v-if="item.maintainState === 3 && item.maintainResult === '无法维修'"
style="
width: 105px;
height: 20px;
background: #33ddc6;
border-radius: 0px 6px 0px 6px;
font-family: PingFang SC;
color: #ffffff;
font-size: 12px;
text-align: center;
"
>
已完成—无法维修
</div>
<div
v-if="item.maintainState === 3 && item.maintainResult === '已维修'"
style="
width: 105px;
height: 20px;
background: #ff7868;
border-radius: 0px 6px 0px 6px;
font-family: PingFang SC;
color: #ffffff;
font-size: 12px;
text-align: center;
"
>
已完成-维修完成
</div>
<div
v-if="item.maintainState === 1"
style="
width: 52px;
height: 20px;
background: #aebdc5;
border-radius: 0px 6px 0px 6px;
font-family: PingFang SC;
color: #ffffff;
font-size: 12px;
text-align: center;
"
>
未接单
</div>
<div
v-if="item.maintainState === 2"
style="
width: 52px;
height: 20px;
background: #ffc641;
border-radius: 0px 6px 0px 6px;
font-family: PingFang SC;
color: #ffffff;
font-size: 12px;
text-align: center;
"
>
维修中
</div>
</div>
<div
style="
font-family: PingFang SC;
font-weight: 700;
color: #000000;
font-size: 16px;
"
>
<!-- {{ item.title }}-->
后勤报修申请 - {{ item.repairsName }}
</div>
<div style="display: flex; align-items: center; margin-top: 10px">
<div
style="
height: 20px;
font-family: PingFang SC;
color: #6f787d;
font-size: 14px;
"
>
报修单号: {{item.id}}
</div>
</div>
<div style="display: flex; align-items: center; margin-top: 10px">
<div
style="
height: 20px;
font-family: PingFang SC;
color: #6f787d;
font-size: 14px;
"
>
报修人: {{ item.repairsName }}
</div>
</div>
<div
style="
display: flex;
align-items: center;
justify-content: flex-end;
margin-top: 23px;
"
>
<div
@click="goDetails(item)"
class="flex_center"
style="
width: 64px;
height: 32px;
border: 1px solid;
border-color: #aebdc5;
border-radius: 3px;
font-family: PingFang SC;
font-weight: 700;
color: #aebdc5;
font-size: 14px;
text-align: center;
margin-left: 10px;
"
>
查看
</div>
<div
v-if="item.maintainState === 1"
class="flex_center"
@click="removeRepair(item)"
style="
width: 64px;
height: 32px;
background: #ff7a6a;
border-radius: 3px;
font-family: PingFang SC;
font-weight: 700;
color: #ffffff;
font-size: 14px;
text-align: center;
margin-left: 10px;
"
>
删除
</div>
<div
v-if="item.maintainState === 1"
class="flex_center"
@click="editRepair(item)"
style="
width: 64px;
height: 32px;
background: #39befe;
border-radius: 3px;
font-family: PingFang SC;
font-weight: 700;
color: #ffffff;
font-size: 14px;
margin-left: 10px;
"
>
编辑
</div>
<div
v-if="item.maintainState === 2"
class="flex_center"
@click="feedback(item)"
style="
width: 64px;
height: 32px;
background: #ff7a6a;
border-radius: 3px;
font-family: PingFang SC;
font-weight: 700;
color: #ffffff;
font-size: 14px;
text-align: center;
margin-left: 10px;
"
>
反馈
</div>
</div>
</div>
</div>
</van-list>
</van-pull-refresh>
</template>
<script setup>
import { ref, toRefs, computed, reactive, onMounted } from "vue";
import { useRouter } from "vue-router";
import {
getRepairList, //个人报修列表
removeRepairInfo, //删除报修信息
} from "@/service/repair";
import { Toast } from "vant";
import axios from "axios";
import { useStore } from "vuex";
import { formatDatetime, formatDate } from "@/utils/time.js";
const store = useStore();
const router = useRouter();
const state = reactive({
searchText: "",
typeId: "",
optionId: 0,
});
console.log('store',store.state)
//删除按钮
const removeRepair = async (item) => {
console.log(item);
let result = await removeRepairInfo(item.id);
console.log('result',result)
if (result.code == 200) {
Toast.success("删除成功");
onRefresh();
}
};
const list = ref([]);
//加载中
const loading = ref(false);
const finished = ref(false);
const refreshing = ref(false);
const pageNum = ref(0);
//获取列表list数据
const onLoad = async () => {
if (refreshing.value) {
list.value = [];
pageNum.value = 0;
refreshing.value = false;
}
pageNum.value += 1;
let result = await getRepairList();
console.log('result',result);
if (result.code == 200) {
list.value.push(...result.rows);
loading.value = false;
list.value.length === result.total && (finished.value = true);
} else {
Toast("获取信息失败!");
loading.value = false;
return;
}
// controller.abort();
};
//下拉刷新
const onRefresh = () => {
refreshing.value=true
// 清空列表数据
finished.value = false;
// 重新加载数据
// 将 loading 设置为 true,表示处于加载状态
loading.value = true;
onLoad();
};
// const loadData = async () => {};
onMounted(async () => {
// loadData();
// let result = await getcourseNum();
// courseNums.value = result.data;
});
/*查看按钮*/
const goDetails = (item) => {
console.log('查看',item.id)
router.push({
path: "/checkRepair",
query: {
id:item.id
},
});
// }
};
/*编辑按钮*/
const editRepair = (item) =>{
router.push({
path: "/addRepair",
query: {
id:item.id
},
});
};
/*反馈按钮*/
const feedback = (item) => {
console.log('feedback',item.id)
router.push({
path: "/feedbackRepair",
query: {
id:item.id
},
});
};
const goback = () => {
router.back();
};
//新增按钮
const goAddRepair = (g) => {
router.push({
path: "/addRepair",
});
};
</script>
<style lang="less" scoped>
// ::v-deep.van-dropdown-menu__bar {
// box-shadow: none !important;
// }
::v-deep .van-tabs__line {
background: #1989fa;
}
::v-deep .van-dropdown-menu__bar {
box-shadow: none !important;
}
.main_search {
width: 100vw;
height: 15vw;
display: flex;
align-items: center;
background: white;
.main_search_1 {
flex: 1;
height: 15vw;
display: inline-block;
vertical-align: top;
}
.van-dropdown-menu:root {
--van-dropdown-menu-box-shadow: none;
}
.main_search_2 {
height: 15vw;
display: flex;
align-items: center;
}
}
</style>
[
"/Users/muyecun/Desktop/zhxy/src/assets/index/home.jpg",
"/Users/muyecun/Desktop/zhxy/src/assets/ttf/x.ttf",
"/Users/muyecun/Desktop/zhxy/src/assets/xxcjx.png",
"/Users/muyecun/Desktop/zhxy/src/assets/zbb.png",
"/Users/muyecun/Desktop/zhxy/src/router/config.js",
"/Users/muyecun/Desktop/zhxy/src/store/other.js",
"/Users/muyecun/Desktop/zhxy/src/utils/dict.js",
"/Users/muyecun/Desktop/zhxy/src/utils/MyTools.js",
"/Users/muyecun/Desktop/zhxy/src/views/tabbar/main/parent.vue",
"/Users/muyecun/Desktop/zhxy/src/views/tabbar/main/teacher.vue"
"/Users/ths/WebstormProjects/二中/公众号/zhxy/src/assets/index/home.jpg",
"/Users/ths/WebstormProjects/二中/公众号/zhxy/src/assets/index/hqbx.png",
"/Users/ths/WebstormProjects/二中/公众号/zhxy/src/assets/ttf/x.ttf",
"/Users/ths/WebstormProjects/二中/公众号/zhxy/src/assets/xxcjx.png",
"/Users/ths/WebstormProjects/二中/公众号/zhxy/src/assets/zbb.png",
"/Users/ths/WebstormProjects/二中/公众号/zhxy/src/router/config.js",
"/Users/ths/WebstormProjects/二中/公众号/zhxy/src/store/other.js",
"/Users/ths/WebstormProjects/二中/公众号/zhxy/src/utils/dict.js",
"/Users/ths/WebstormProjects/二中/公众号/zhxy/src/utils/MyTools.js",
"/Users/ths/WebstormProjects/二中/公众号/zhxy/src/views/tabbar/main/parent.vue",
"/Users/ths/WebstormProjects/二中/公众号/zhxy/src/views/tabbar/main/teacher.vue"
]
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment