no message

This commit is contained in:
kuaifan 2025-04-14 19:48:21 +08:00
parent f5d6702472
commit d3d5a7bade
5 changed files with 11 additions and 8 deletions

View File

@ -35,6 +35,9 @@
<!--引导页-->
<GuidePage/>
<!--会员详情窗口-->
<UserDetail/>
<!--返回效果-->
<MobileBack v-if="isFirstPage"/>
@ -92,11 +95,15 @@ import DropdownMenu from "./components/DropdownMenu";
import {ctrlPressed} from "./mixins/ctrlPressed";
import {mapState} from "vuex";
import emitter from "./store/events";
import SearchBox from "./components/SearchBox.vue";
import UserDetail from "./pages/manage/components/UserDetail.vue";
export default {
mixins: [ctrlPressed],
components: {
SearchBox,
UserDetail,
MobileBack,
MobileNotification,
AuthException,

View File

@ -291,9 +291,6 @@
<!--搜索框-->
<SearchBox ref="searchBox"/>
<!--会员详情窗口-->
<UserDetail/>
<!--工作报告-->
<DrawerOverlay
v-model="workReportShow"
@ -372,11 +369,9 @@ import ApproveDetails from "./manage/approve/details.vue";
import notificationKoro from "notification-koro1";
import emitter from "../store/events";
import SearchBox from "../components/SearchBox.vue";
import UserDetail from "./manage/components/UserDetail.vue";
export default {
components: {
UserDetail,
SearchBox,
ApproveDetails,
ImgUpload,

View File

@ -117,7 +117,7 @@ export default {
force: false,
config
});
}else{
} else {
this.showDetailDrawer = true;
}
},

View File

@ -2,9 +2,9 @@
<div class="report-detail">
<div class="report-title user-select-auto">
{{ data.title }}
<Icon v-if="loadIng > 0" type="ios-loading" class="icon-loading"></Icon>
<Icon v-if="loadIng > 0" type="ios-loading" class="icon-loading"/>
</div>
<div class="report-detail-context">
<div v-if="data.id" class="report-detail-context">
<ul>
<li>
<div class="report-label">

View File

@ -53,6 +53,7 @@ export default {
this.$store.dispatch("call", {
url: 'report/detail',
data,
spinner: 600,
}).then(({data}) => {
this.detailData = data;
}).catch(({msg}) => {