You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
931 B
46 lines
931 B
3 years ago
|
<template>
|
||
|
<div class="g-cnt">
|
||
|
<calendar></calendar>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { requestPost, requestGet } from "@/js/dai/request";
|
||
|
import nextTick from "dai-js/tools/nextTick";
|
||
|
import calendar from "./cpts/calendar";
|
||
|
|
||
|
export default {
|
||
|
name: "party-calendar",
|
||
|
components: {
|
||
|
calendar,
|
||
|
},
|
||
|
data() {
|
||
|
return {};
|
||
|
},
|
||
|
async mounted() {
|
||
|
// await this.getPartyOggList()
|
||
|
},
|
||
|
methods: {
|
||
|
async getPartyOggList() {
|
||
|
const url = "/resi/partymember/icPartyOrg/getSearchTreelist";
|
||
|
let params = {
|
||
|
agencyId: this.$store.state.user.agencyId,
|
||
|
};
|
||
|
const { data, code, msg } = await requestGet(url, params);
|
||
|
console.log("data-orgparty----o", data);
|
||
|
if (code === 0) {
|
||
|
this.partyOrgList = this.deepArrTOnull(data);
|
||
|
} else {
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.g-cnt {
|
||
|
background-color: #ffffff;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
</style>
|