Browse Source

审核bug修改

master
aBin 4 years ago
parent
commit
2d86d38d1b
  1. 67
      src/components/Activity/ActivityDate.vue
  2. 21
      src/components/Activity/ActivitySearch.vue
  3. 26
      src/components/BtnCom/BtnCon.vue
  4. 2
      src/components/EntityApply/EntityApplyAdd.vue
  5. 11
      src/components/EntityApply/EntityApplySearch.vue
  6. 57
      src/components/Manage/ManageAdd.vue
  7. 13
      src/components/Manage/ManageDate.vue
  8. 22
      src/components/Manage/ManageSearch.vue
  9. 2
      src/router/index.js
  10. 3
      src/views/College/components/CollegeAdd.vue
  11. 10
      src/views/CooperativePartner/CooperativePartner.vue
  12. 10
      src/views/EntityApplication/VirtualApplication.vue

67
src/components/Activity/ActivityDate.vue

@ -1,7 +1,7 @@
<template> <template>
<div class="main flex-1"> <div class="main flex-1">
<a-spin :spinning="showEdit"> <a-spin :spinning="showEdit">
<div style="width:100%" v-if="lists && lists.length > 0"> <div style="width: 100%" v-if="lists && lists.length > 0">
<a-table <a-table
:columns="columns" :columns="columns"
:data-source="lists" :data-source="lists"
@ -19,45 +19,30 @@
</template> </template>
<template slot="time" slot-scope="text, record"> <template slot="time" slot-scope="text, record">
<span v-if="record.releaseTime">{{ record.releaseTime}}</span> <span v-if="record.releaseTime">{{ record.releaseTime }}</span>
<span v-if="record.closeTime">-{{record.closeTime}}</span> <span v-if="record.closeTime">-{{ record.closeTime }}</span>
</template> </template>
<template slot="auditStatus" slot-scope="text, record"> <template slot="auditStatus" slot-scope="text, record">
<a-tag <a-tag :color="record.auditStatus === 2 ? 'green' : record.auditStatus === 1 ? 'red' : 'blue'">{{
:color="record.auditStatus === 2 ? 'green' : record.auditStatus === 1 ? 'red' : 'blue'" record.auditStatus === 2 ? '已通过' : record.auditStatus === 1 ? '未通过' : '审核中'
>{{ record.auditStatus === 2 ? '已通过' : record.auditStatus === 1 ? '未通过' : '审核中' }}</a-tag> }}</a-tag>
</template> </template>
<template slot="examine" slot-scope="text, record"> <template slot="examine" slot-scope="text, record">
<div class="d-flex flex-column align-center"> <div class="d-flex flex-column align-center">
<a-button <a-button @click="handleApply(record, 2)" size="small" type="primary" v-if="record.auditStatus !== 2">通过</a-button>
@click="handleApply(record, 2)"
size="small"
type="primary"
v-if="record.auditStatus !== 2"
>通过</a-button>
<a-button @click="handleApply(record, 1)" size="small" type="danger" v-else>不通过</a-button> <a-button @click="handleApply(record, 1)" size="small" type="danger" v-else>不通过</a-button>
<a-textarea class="fill-width mt-3" placeholder="备注" v-model="record.remark" /> <a-textarea class="fill-width mt-3" placeholder="备注" v-model="record.remark" />
</div> </div>
</template> </template>
<template slot="edit" slot-scope="text, record"> <template slot="edit" slot-scope="text, record">
<a-icon <a-icon @click="showEditModal(record)" class="pointer mr-5" theme="twoTone" type="edit" />
@click="showEditModal(record)" <a-button @click="openEnroll(record.activityId)" size="small" type="primary">查看报名信息</a-button>
class="pointer mr-5"
theme="twoTone"
type="edit"
/>
<a-button @click="openEnroll(record.activityId)" size="small" type="primary">活动报名</a-button>
</template> </template>
<div <div class="d-flex flex-column" slot="expandedRowRender" slot-scope="record" style="margin: 0">
class="d-flex flex-column"
slot="expandedRowRender"
slot-scope="record"
style="margin: 0"
>
<a-spin :spinning="spinning" tip="详情加载中..."> <a-spin :spinning="spinning" tip="详情加载中...">
<div class="d-flex flex-nowrap justify-space-between mb-3"> <div class="d-flex flex-nowrap justify-space-between mb-3">
<div class="d-flex flex-row"> <div class="d-flex flex-row">
@ -68,10 +53,15 @@
<div class="d-flex flex-row"> <div class="d-flex flex-row">
<span class="font-bold-14"> <span class="font-bold-14">
活动类型 活动类型
<a-tag <a-tag color="blue" v-if="record.info && record.info.activityType !== null">{{
color="blue" record.info.activityType === 0
v-if="record.info && record.info.activityType !== null" ? '路演'
>{{ record.info.activityType === 0 ? '路演' : record.info.activityType === 1 ? '讲座' : record.info.activityType === 2 ? '沙龙' : '' }}</a-tag> : record.info.activityType === 1
? '讲座'
: record.info.activityType === 2
? '沙龙'
: ''
}}</a-tag>
</span> </span>
</div> </div>
<div class="d-flex flex-row"> <div class="d-flex flex-row">
@ -83,18 +73,15 @@
<div class="d-flex flex-nowrap justify-space-between mb-3"> <div class="d-flex flex-nowrap justify-space-between mb-3">
<div class="d-flex flex-row"> <div class="d-flex flex-row">
<span class="font-bold-14">组织单位</span> <span class="font-bold-14">组织单位</span>
<span <span v-if="record.info && record.info.organization">{{ record.info.organization }}</span>
v-if="record.info && record.info.organization"
>{{ record.info.organization }}</span>
<span v-else>暂无</span> <span v-else>暂无</span>
</div> </div>
<div class="d-flex flex-row"> <div class="d-flex flex-row">
<span class="font-bold-14"> <span class="font-bold-14">
发布平台 发布平台
<a-tag <a-tag color="green" v-if="record.info && record.info.publishPlatform !== null">{{
color="green" record.info.publishPlatform === 0 ? '绿谷' : record.info.publishPlatform === 1 ? '创时代' : ''
v-if="record.info && record.info.publishPlatform !== null" }}</a-tag>
>{{ record.info.publishPlatform === 0 ? '绿谷' : record.info.publishPlatform === 1 ? '创时代' : '' }}</a-tag>
</span> </span>
</div> </div>
</div> </div>
@ -123,8 +110,8 @@
<!-- 编辑 --> <!-- 编辑 -->
<activity-edit <activity-edit
:editItem="editItem" :edit-item="editItem"
:editVisible="editVisible" :edit-visible="editVisible"
@closeModal="closeModal" @closeModal="closeModal"
@getDetail="getDetail" @getDetail="getDetail"
@getSelectTeam="getSelectTeam" @getSelectTeam="getSelectTeam"
@ -191,9 +178,7 @@ const columns = [
export default { export default {
name: 'ActivityDate', name: 'ActivityDate',
components: { components: { ActivityEdit },
ActivityEdit,
},
props: { lists: { type: Array, default: () => [] }, pagination: { type: Object, default: () => {} } }, props: { lists: { type: Array, default: () => [] }, pagination: { type: Object, default: () => {} } },

21
src/components/Activity/ActivitySearch.vue

@ -1,3 +1,10 @@
<!--
* @Author: wally
* @email: 18603454788@163.com
* @Date: 2021-03-23 10:09:53
* @LastEditors: wally
* @LastEditTime: 2021-04-17 18:35:09
-->
<template> <template>
<div class="d-flex flex-wrap pb-3 align-center"> <div class="d-flex flex-wrap pb-3 align-center">
<!-- 活动类型 0路演 1讲座 2沙龙 不传参数则查询全部 --> <!-- 活动类型 0路演 1讲座 2沙龙 不传参数则查询全部 -->
@ -6,13 +13,7 @@
<a-checkbox-group :options="items" @change="onChange" /> <a-checkbox-group :options="items" @change="onChange" />
</div> </div>
<!-- 发布平台 --> <!-- 发布平台 -->
<div class="mb-3">
<span class="font-bold-14 ml-8">发布平台</span>
<a-radio-group @change="getPlatform">
<a-radio :value="0">绿谷</a-radio>
<a-radio :value="1">创时代</a-radio>
</a-radio-group>
</div>
<!-- 活动标题 --> <!-- 活动标题 -->
<a-input class="ml-3 mb-3" placeholder="标题" style="width: 150px" v-model="titleKey" /> <a-input class="ml-3 mb-3" placeholder="标题" style="width: 150px" v-model="titleKey" />
<!-- 发布时间 --> <!-- 发布时间 -->
@ -31,14 +32,12 @@ import ActivityAdd from 'components/Activity/ActivityAdd.vue';
export default { export default {
name: 'ActivitySearch', name: 'ActivitySearch',
components: { components: { ActivityAdd },
ActivityAdd,
},
data() { data() {
return { return {
visible: false, visible: false,
titleKey: '', titleKey: '',
items: ['路演', '讲座', '沙龙'], items: ['培训', '讲座', '交流', '路演', '论坛'],
activityType: [], activityType: [],
checkedValues: [], checkedValues: [],
publishPlatform: '', // publishPlatform: '', //

26
src/components/BtnCom/BtnCon.vue

@ -1,3 +1,10 @@
<!--
* @Author: wally
* @email: 18603454788@163.com
* @Date: 2021-03-23 10:09:53
* @LastEditors: wally
* @LastEditTime: 2021-04-17 19:40:54
-->
<template> <template>
<div class="btn-box pa-3"> <div class="btn-box pa-3">
<div class="font-bold-24">运维</div> <div class="font-bold-24">运维</div>
@ -6,33 +13,34 @@
<div @click="jump('/user-manage')" class="btn">用户管理</div> <div @click="jump('/user-manage')" class="btn">用户管理</div>
<div @click="jump('/banner-manage')" class="btn">轮播图管理</div> <div @click="jump('/banner-manage')" class="btn">轮播图管理</div>
<!-- <div @click="jump('/communication-community')" class="btn">交流社区</div> --> <!-- <div @click="jump('/communication-community')" class="btn">交流社区</div> -->
<div @click="jump('/event-announcement')" class="btn">活动公告</div> <div @click="jump('/event-announcement')" class="btn">双创活动-公告</div>
<!-- <div @click="jump('/event-registration')" class="btn">双创活动-报道</div> -->
<div @click="jump('/innovation-policy')" class="btn">创新政策</div> <div @click="jump('/innovation-policy')" class="btn">创新政策</div>
<div @click="jump('/Challenge')" class="btn">创新挑战</div> <div @click="jump('/Challenge')" class="btn">创新挑战</div>
<div @click="jump('/College')" class="btn">创业学院</div> <div @click="jump('/College')" class="btn">创业学院</div>
<!-- <div @click="jump('/talent-recruitment')" class="btn">人才招聘</div> --> <!-- <div @click="jump('/talent-recruitment')" class="btn">人才招聘</div> -->
<div @click="jump('/cooperative-partner')" class="btn">合作伙伴</div> <div @click="jump('/cooperative-partner')" class="btn">合作伙伴</div>
<div @click="jump('/about-us-derivative-enterprise')" class="btn">衍生企业</div> <!-- <div @click="jump('/about-us-derivative-enterprise')" class="btn">衍生企业</div> -->
<div class="font-bold-24">创新研究院</div> <div class="font-bold-24">创新研究院</div>
<!-- <div @click="jump('/cooperation-intention')" class="btn">合作意向</div> --> <!-- <div @click="jump('/cooperation-intention')" class="btn">合作意向</div> -->
<!-- <div @click="jump('/demand-filling')" class="btn">需求填报</div> --> <!-- <div @click="jump('/demand-filling')" class="btn">需求填报</div> -->
<div @click="jump('/innovative-service')" class="btn">服务</div> <div @click="jump('/innovative-service')" class="btn">服务</div>
<div @click="jump('/')" class="btn">合作伙伴</div> <!-- <div @click="jump('/')" class="btn">合作伙伴</div> -->
<div @click="jump('/')" class="btn">衍生企业</div> <!-- <div @click="jump('/')" class="btn">衍生企业</div> -->
<!-- <div @click="jump('/innovative-lab')" class="btn">实验室</div> --> <!-- <div @click="jump('/innovative-lab')" class="btn">实验室</div> -->
<!-- <div @click="jump('/category-manage')" class="btn">分类管理</div> --> <div @click="jump('/category-manage')" class="btn">分类管理</div>
<!-- <div @click="jump('/innovative-equipment')" class="btn">设备</div> --> <!-- <div @click="jump('/innovative-equipment')" class="btn">设备</div> -->
<!-- <div @click="jump('/innovative-achievements')" class="btn">成果</div> --> <!-- <div @click="jump('/innovative-achievements')" class="btn">成果</div> -->
<div class="font-bold-24">孵化平台</div> <div class="font-bold-24">孵化平台</div>
<div @click="jump('/entity-application')" class="btn">入驻实体申请</div> <div @click="jump('/virtual-application?type=2')" class="btn">入驻实体申请</div>
<div @click="jump('/virtual-application')" class="btn">入驻数智创时代 专业孵化器申请</div> <div @click="jump('/virtual-application?type=1')" class="btn">入驻数智创时代 专业孵化器申请</div>
<div @click="jump('/virtual-application')" class="btn">入驻线上孵化器</div> <div @click="jump('/virtual-application?type=0')" class="btn">入驻线上孵化器</div>
<div @click="jump('/incubation-services')" class="btn">服务</div> <div @click="jump('/incubation-services')" class="btn">服务</div>
<!-- <div @click="jump('/hatching-demand-filling')" class="btn">需求填报</div> --> <!-- <div @click="jump('/hatching-demand-filling')" class="btn">需求填报</div> -->
<div @click="jump('/')" class="btn">创业导师</div> <div @click="jump('/')" class="btn">创业导师</div>
<div @click="jump('/hatch-cooperative-partner')" class="btn">合作伙伴</div> <!-- <div @click="jump('/hatch-cooperative-partner')" class="btn">合作伙伴</div> -->
<!-- <div class="font-bold-24">产业部</div> <!-- <div class="font-bold-24">产业部</div>
<div @click="jump('/industrial-services')" class="btn">服务</div> <div @click="jump('/industrial-services')" class="btn">服务</div>

2
src/components/EntityApply/EntityApplyAdd.vue

@ -374,7 +374,7 @@ export default {
patentGrented: this.platform.patentGrented, patentGrented: this.platform.patentGrented,
patentInvent: this.platform.patentInvent, patentInvent: this.platform.patentInvent,
phone: this.platform.tel, phone: this.platform.tel,
placeType: this.placeType, // store 0:1: placeType: this.placeType, // store 0:线1:2
plantKind: this.platform.plantKind, plantKind: this.platform.plantKind,
position: this.platform.position, position: this.platform.position,
productTech: this.platform.productTech, productTech: this.platform.productTech,

11
src/components/EntityApply/EntityApplySearch.vue

@ -1,3 +1,10 @@
<!--
* @Author: wally
* @email: 18603454788@163.com
* @Date: 2021-03-23 10:09:54
* @LastEditors: wally
* @LastEditTime: 2021-04-17 19:35:22
-->
<template> <template>
<div class="d-flex flex-wrap pb-3"> <div class="d-flex flex-wrap pb-3">
<!-- 企业名称 --> <!-- 企业名称 -->
@ -26,9 +33,7 @@ import EntityApplyAdd from 'components/EntityApply/EntityApplyAdd.vue';
export default { export default {
name: 'EntityApplySearch', name: 'EntityApplySearch',
components: { components: { EntityApplyAdd },
EntityApplyAdd,
},
data() { data() {
return { return {
visible: false, visible: false,

57
src/components/Manage/ManageAdd.vue

@ -2,9 +2,9 @@
<div class="d-flex flex-wrap pb-3"> <div class="d-flex flex-wrap pb-3">
<!-- 添加 --> <!-- 添加 -->
<a-modal <a-modal
:maskClosable="false" :mask-closable="false"
@cancel="$emit('closeModal')" @cancel="$emit('closeModal')"
destroyOnClose destroy-on-close
footer footer
title="添加分类管理" title="添加分类管理"
v-model="visible" v-model="visible"
@ -12,48 +12,34 @@
> >
<a-form :form="form" @submit="handleSubmit"> <a-form :form="form" @submit="handleSubmit">
<!-- 类型 --> <!-- 类型 -->
<a-form-item <a-form-item :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol" label="类型">
:label-col="formItemLayout.labelCol"
:wrapper-col="formItemLayout.wrapperCol"
label="类型"
>
<a-select <a-select
placeholder="类型" placeholder="类型"
style="width:100%" style="width: 100%"
v-decorator="[ v-decorator="[
'model', 'model',
{ {
rules: [ rules: [{ required: true, message: '类型不能为空' }],
{ required: true, message: '类型不能为空' }, },
], ]"
},
]"
> >
<a-select-option <a-select-option :key="index" :value="item.id" v-for="(item, index) in types">{{ item.name }}</a-select-option>
:key="index"
:value="item.id"
v-for="(item, index) in types"
>{{ item.name }}</a-select-option>
</a-select> </a-select>
</a-form-item> </a-form-item>
<!-- 分类名称 --> <!-- 分类名称 -->
<a-form-item <a-form-item :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol" label="分类名称">
:label-col="formItemLayout.labelCol"
:wrapper-col="formItemLayout.wrapperCol"
label="分类名称"
>
<a-input <a-input
placeholder="分类名称" placeholder="分类名称"
v-decorator="[ v-decorator="[
'name', 'name',
{ {
rules: [ rules: [
{ required: true, message: '分类名称不能为空' }, { required: true, message: '分类名称不能为空' },
{ whitespace: true, message: '分类名称不能为空' }, { whitespace: true, message: '分类名称不能为空' },
{ max: 140, massage: '分类名称最多140个字符' }, { max: 140, massage: '分类名称最多140个字符' },
], ],
}, },
]" ]"
/> />
</a-form-item> </a-form-item>
@ -88,6 +74,9 @@ export default {
{ id: 0, name: '成果' }, { id: 0, name: '成果' },
{ id: 1, name: '仪器' }, { id: 1, name: '仪器' },
{ id: 2, name: '实验室' }, { id: 2, name: '实验室' },
{ id: 3, name: '产品' },
{ id: 4, name: '创业学院' },
{ id: 5, name: '发榜' },
], ],
}; };
}, },

13
src/components/Manage/ManageDate.vue

@ -18,8 +18,11 @@
<template slot="model" slot-scope="text, record"> <template slot="model" slot-scope="text, record">
<span v-if="record.model === 0">成果</span> <span v-if="record.model === 0">成果</span>
<span v-if="record.model === 1">仪器</span> <span v-else-if="record.model === 1">仪器</span>
<span v-if="record.model === 2">实验室</span> <span v-else-if="record.model === 2">实验室</span>
<span v-else-if="record.model === 3">产品</span>
<span v-else-if="record.model === 4">创业学院</span>
<span v-else-if="record.model === 5">发榜</span>
</template> </template>
<template slot="edit" slot-scope="text, record"> <template slot="edit" slot-scope="text, record">
@ -33,7 +36,7 @@
<a-empty v-else /> <a-empty v-else />
<!-- 编辑 --> <!-- 编辑 -->
<manage-edit :editItem="editItem" :editVisible="editVisible" @closeModal="closeModal" @selModelSearch="selModelSearch" /> <manage-edit :edit-item="editItem" :edit-visible="editVisible" @closeModal="closeModal" @selModelSearch="selModelSearch" />
</div> </div>
</template> </template>
@ -74,9 +77,7 @@ const columns = [
export default { export default {
name: 'ManageDate', name: 'ManageDate',
components: { components: { ManageEdit },
ManageEdit,
},
props: { lists: { type: Object, default: () => {} }, pagination: { type: Object, default: () => {} } }, props: { lists: { type: Object, default: () => {} }, pagination: { type: Object, default: () => {} } },

22
src/components/Manage/ManageSearch.vue

@ -1,16 +1,17 @@
<!--
* @Author: wally
* @email: 18603454788@163.com
* @Date: 2021-03-23 10:09:54
* @LastEditors: wally
* @LastEditTime: 2021-04-17 18:30:23
-->
<template> <template>
<div class="d-flex flex-wrap pb-3"> <div class="d-flex flex-wrap pb-3">
<!-- 团队名称 --> <!-- 团队名称 -->
<div> <div>
<a-input @change="handleChangeName" placeholder="分类名称" style="width: 150px" v-model="name" /> <a-input @change="handleChangeName" placeholder="分类名称" style="width: 150px" v-model="name" />
<a-select <a-select @change="handleChangeSelect('model', $event)" allow-clear class="ml-3" placeholder="类型" style="width: 150px">
@change="handleChangeSelect('model',$event)"
allow-clear
class="ml-3"
placeholder="类型"
style="width: 150px"
>
<a-select-option :key="model.id" :value="model.id" v-for="model in models">{{ model.value }}</a-select-option> <a-select-option :key="model.id" :value="model.id" v-for="model in models">{{ model.value }}</a-select-option>
</a-select> </a-select>
@ -31,9 +32,7 @@ import ManageAdd from 'components/Manage/ManageAdd.vue';
export default { export default {
name: 'ManageSearch', name: 'ManageSearch',
components: { components: { ManageAdd },
ManageAdd,
},
data() { data() {
return { return {
visible: false, visible: false,
@ -42,6 +41,9 @@ export default {
{ id: 0, value: '成果' }, { id: 0, value: '成果' },
{ id: 1, value: '仪器' }, { id: 1, value: '仪器' },
{ id: 2, value: '实验室' }, { id: 2, value: '实验室' },
{ id: 3, value: '产品' },
{ id: 4, value: '创业学院' },
{ id: 5, value: '发榜' },
], ],
}; };
}, },

2
src/router/index.js

@ -84,7 +84,7 @@ const routes = [
component: () => component: () =>
import(/* webpackChunkName: "about-us-derivative-enterprise" */ 'views/CooperativePartner/AboutUsDerivativeEnterprise.vue'), import(/* webpackChunkName: "about-us-derivative-enterprise" */ 'views/CooperativePartner/AboutUsDerivativeEnterprise.vue'),
}, },
// -------创新部 // 创新部
// 合作意向 // 合作意向
{ {
path: '/cooperation-intention', path: '/cooperation-intention',

3
src/views/College/components/CollegeAdd.vue

@ -128,6 +128,7 @@ export default {
const isJpgOrPng = file.type === 'image/jpeg' || file.type === 'image/png'; const isJpgOrPng = file.type === 'image/jpeg' || file.type === 'image/png';
if (!isJpgOrPng) { if (!isJpgOrPng) {
this.$message.error('仅支持 JPG/PNG 格式的图片!'); this.$message.error('仅支持 JPG/PNG 格式的图片!');
this.fileList = [];
} }
return isJpgOrPng; return isJpgOrPng;
}, },
@ -195,7 +196,7 @@ export default {
this.picId = this.fileList[0]; this.picId = this.fileList[0];
const params = { const params = {
param: { param: {
banners: this.banners, banners: this.banner,
contentUrl: this.contentUrl, contentUrl: this.contentUrl,
coverPicture: this.fileList[0], coverPicture: this.fileList[0],
intro: this.intro, intro: this.intro,

10
src/views/CooperativePartner/CooperativePartner.vue

@ -1,3 +1,10 @@
<!--
* @Author: wally
* @email: 18603454788@163.com
* @Date: 2021-03-23 10:09:55
* @LastEditors: wally
* @LastEditTime: 2021-04-17 19:20:58
-->
<template> <template>
<div class="pa-3 white fill-height d-flex flex-column"> <div class="pa-3 white fill-height d-flex flex-column">
<partner-search @getBackendSearch="getBackendSearch" /> <partner-search @getBackendSearch="getBackendSearch" />
@ -28,7 +35,8 @@ export default {
computed: mapState(['partnerOptions']), computed: mapState(['partnerOptions']),
async created() { async created() {
const options = { type: 1, typeOfPlatform: 2 }; const { query } = this.$route;
const options = { type: query.type1, typeOfPlatform: query.type2 };
this.setPartnerOptions(options); this.setPartnerOptions(options);
await this.getBackendSearch(); await this.getBackendSearch();
}, },

10
src/views/EntityApplication/VirtualApplication.vue

@ -1,3 +1,10 @@
<!--
* @Author: wally
* @email: 18603454788@163.com
* @Date: 2021-03-23 10:09:55
* @LastEditors: wally
* @LastEditTime: 2021-04-17 19:41:42
-->
<template> <template>
<div class="pa-3 white fill-height d-flex flex-column"> <div class="pa-3 white fill-height d-flex flex-column">
<entity-apply-search @entityApplicationSearch="entityApplicationSearch" /> <entity-apply-search @entityApplicationSearch="entityApplicationSearch" />
@ -28,7 +35,8 @@ export default {
computed: mapState(['placeType']), computed: mapState(['placeType']),
async created() { async created() {
this.setPlaceType(0); const { query } = this.$route;
this.setPlaceType(query.type);
await this.entityApplicationSearch(); await this.entityApplicationSearch();
}, },

Loading…
Cancel
Save