Browse Source

emm

feature
zxc 3 years ago
parent
commit
02b8925ab3
  1. 8
      src/views/modules/communityParty/stas/index.vue

8
src/views/modules/communityParty/stas/index.vue

@ -142,12 +142,13 @@ export default {
},
async created () {
this.getOrgList()
await this.getOrgList()
await this.handleSearch()
},
async mounted () {
const { user } = this.$store.state
this.agencyId = user.agencyId
await this.handleSearch()
},
methods: {
@ -193,9 +194,12 @@ export default {
this.form.startTime = '';
this.form.endTime = '';
}
if (this.form.joinOrgId === '' || this.form.joinOrgId === null || this.form.joinOrgId === undefined){
console.log(this.orgList)
let a = this.orgList[0]
this.form.joinOrgId = a.id;
this.joinOrgIds = this.form.joinOrgId
}else {
this.form.joinOrgId = this.joinOrgIds[this.joinOrgIds.length - 1];
}

Loading…
Cancel
Save