mirror of
https://github.com/kuaifan/dootask.git
synced 2026-03-06 09:27:05 +00:00
no message
This commit is contained in:
parent
f5d6702472
commit
d3d5a7bade
@ -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,
|
||||
|
||||
@ -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,
|
||||
|
||||
@ -117,7 +117,7 @@ export default {
|
||||
force: false,
|
||||
config
|
||||
});
|
||||
}else{
|
||||
} else {
|
||||
this.showDetailDrawer = true;
|
||||
}
|
||||
},
|
||||
|
||||
@ -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">
|
||||
|
||||
@ -53,6 +53,7 @@ export default {
|
||||
this.$store.dispatch("call", {
|
||||
url: 'report/detail',
|
||||
data,
|
||||
spinner: 600,
|
||||
}).then(({data}) => {
|
||||
this.detailData = data;
|
||||
}).catch(({msg}) => {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user