let mixin = { data(){ return{ tasktypelist:[] } }, created() { this.getDictType() }, methods: { async getDictType() { const res = await this.http.quickGet('/system/dict/data/type/crowdsourcing_task_type',false) this.tasktypelist = res.data.data }, }, } // 记住,最后一定要导出 export default mixin