mirror of
https://github.com/kuaifan/dootask.git
synced 2026-03-26 23:33:01 +00:00
no message
This commit is contained in:
parent
f5d6702472
commit
d3d5a7bade
@ -35,6 +35,9 @@
|
|||||||
<!--引导页-->
|
<!--引导页-->
|
||||||
<GuidePage/>
|
<GuidePage/>
|
||||||
|
|
||||||
|
<!--会员详情窗口-->
|
||||||
|
<UserDetail/>
|
||||||
|
|
||||||
<!--返回效果-->
|
<!--返回效果-->
|
||||||
<MobileBack v-if="isFirstPage"/>
|
<MobileBack v-if="isFirstPage"/>
|
||||||
|
|
||||||
@ -92,11 +95,15 @@ import DropdownMenu from "./components/DropdownMenu";
|
|||||||
import {ctrlPressed} from "./mixins/ctrlPressed";
|
import {ctrlPressed} from "./mixins/ctrlPressed";
|
||||||
import {mapState} from "vuex";
|
import {mapState} from "vuex";
|
||||||
import emitter from "./store/events";
|
import emitter from "./store/events";
|
||||||
|
import SearchBox from "./components/SearchBox.vue";
|
||||||
|
import UserDetail from "./pages/manage/components/UserDetail.vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [ctrlPressed],
|
mixins: [ctrlPressed],
|
||||||
|
|
||||||
components: {
|
components: {
|
||||||
|
SearchBox,
|
||||||
|
UserDetail,
|
||||||
MobileBack,
|
MobileBack,
|
||||||
MobileNotification,
|
MobileNotification,
|
||||||
AuthException,
|
AuthException,
|
||||||
|
|||||||
@ -291,9 +291,6 @@
|
|||||||
<!--搜索框-->
|
<!--搜索框-->
|
||||||
<SearchBox ref="searchBox"/>
|
<SearchBox ref="searchBox"/>
|
||||||
|
|
||||||
<!--会员详情窗口-->
|
|
||||||
<UserDetail/>
|
|
||||||
|
|
||||||
<!--工作报告-->
|
<!--工作报告-->
|
||||||
<DrawerOverlay
|
<DrawerOverlay
|
||||||
v-model="workReportShow"
|
v-model="workReportShow"
|
||||||
@ -372,11 +369,9 @@ import ApproveDetails from "./manage/approve/details.vue";
|
|||||||
import notificationKoro from "notification-koro1";
|
import notificationKoro from "notification-koro1";
|
||||||
import emitter from "../store/events";
|
import emitter from "../store/events";
|
||||||
import SearchBox from "../components/SearchBox.vue";
|
import SearchBox from "../components/SearchBox.vue";
|
||||||
import UserDetail from "./manage/components/UserDetail.vue";
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
UserDetail,
|
|
||||||
SearchBox,
|
SearchBox,
|
||||||
ApproveDetails,
|
ApproveDetails,
|
||||||
ImgUpload,
|
ImgUpload,
|
||||||
|
|||||||
@ -117,7 +117,7 @@ export default {
|
|||||||
force: false,
|
force: false,
|
||||||
config
|
config
|
||||||
});
|
});
|
||||||
}else{
|
} else {
|
||||||
this.showDetailDrawer = true;
|
this.showDetailDrawer = true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -2,9 +2,9 @@
|
|||||||
<div class="report-detail">
|
<div class="report-detail">
|
||||||
<div class="report-title user-select-auto">
|
<div class="report-title user-select-auto">
|
||||||
{{ data.title }}
|
{{ 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>
|
||||||
<div class="report-detail-context">
|
<div v-if="data.id" class="report-detail-context">
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<div class="report-label">
|
<div class="report-label">
|
||||||
|
|||||||
@ -53,6 +53,7 @@ export default {
|
|||||||
this.$store.dispatch("call", {
|
this.$store.dispatch("call", {
|
||||||
url: 'report/detail',
|
url: 'report/detail',
|
||||||
data,
|
data,
|
||||||
|
spinner: 600,
|
||||||
}).then(({data}) => {
|
}).then(({data}) => {
|
||||||
this.detailData = data;
|
this.detailData = data;
|
||||||
}).catch(({msg}) => {
|
}).catch(({msg}) => {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user