attestation.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <template>
  2. <div class="index">
  3. <el-row>
  4. <el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
  5. <el-col :span="24" class="one">认证入驻 </el-col>
  6. <el-col :span="24" class="two">
  7. <el-select v-model="activeName" placeholder="请选择认证角色类型" size="large" style="width: 240px">
  8. <el-option v-for="item in roleList" :key="item.code" :label="item.title" :value="item.code" />
  9. </el-select>
  10. </el-col>
  11. <el-col :span="24" class="thr">
  12. <expert v-if="activeName == 'Expert'"></expert>
  13. <company v-if="activeName == 'Company'"></company>
  14. <incubator v-if="activeName == 'Incubator'"></incubator>
  15. <competition v-if="activeName == 'Competition'"></competition>
  16. <investment v-if="activeName == 'Investment'"></investment>
  17. <association v-if="activeName == 'Association'"></association>
  18. <school v-if="activeName == 'School'"></school>
  19. <state v-if="activeName == 'State'"></state>
  20. <unit v-if="activeName == 'Unit'"></unit>
  21. </el-col>
  22. </el-col>
  23. </el-row>
  24. </div>
  25. </template>
  26. <script setup>
  27. import { cloneDeep } from 'lodash-es'
  28. const $checkRes = inject('$checkRes')
  29. import { UserStore } from '@/store/user'
  30. const userStore = UserStore()
  31. const user = computed(() => userStore.user)
  32. // 组件
  33. import school from './parts/school.vue'
  34. import association from './parts/association.vue'
  35. import company from './parts/company.vue'
  36. import competition from './parts/competition.vue'
  37. import expert from './parts/expert.vue'
  38. import incubator from './parts/incubator.vue'
  39. import state from './parts/state.vue'
  40. import unit from './parts/unit.vue'
  41. import investment from './parts/investment.vue'
  42. // 接口
  43. import { RoleStore } from '@/store/api/system/role'
  44. const roleStore = RoleStore()
  45. import { UsersStore } from '@/store/api/user/user'
  46. const store = UsersStore()
  47. import { DictDataStore } from '@/store/api/system/dictData'
  48. import { RegionStore } from '@/store/api/system/region'
  49. import { SectorStore } from '@/store/api/platform/sector'
  50. const sectorStore = SectorStore()
  51. const dictDataStore = DictDataStore()
  52. const regionStore = RegionStore()
  53. const activeName = ref('')
  54. // 加载中
  55. const loading = ref(false)
  56. // 字典
  57. const roleList = ref([])
  58. const typeList = ref([])
  59. const genderList = ref([])
  60. const fieldList = ref([])
  61. const educationList = ref([])
  62. const cityList = ref([])
  63. const isUseList = ref([])
  64. const patternList = ref([])
  65. const scaleList = ref([])
  66. const IndustryList = ref([])
  67. const cardTypeList = ref([])
  68. const contributionList = ref([])
  69. const plateList = ref([])
  70. const modeList = ref([])
  71. const statusList = ref([])
  72. const yearList = ref([])
  73. // 请求
  74. onMounted(async () => {
  75. loading.value = true
  76. await search()
  77. await searchOther()
  78. loading.value = false
  79. })
  80. const searchOther = async () => {
  81. let result
  82. // 角色
  83. result = await roleStore.prove({ user: user.value.id })
  84. if ($checkRes(result)) {
  85. roleList.value = result.data
  86. activeName.value = result.data[0].code
  87. }
  88. // 性别
  89. result = await dictDataStore.query({ code: 'gender', is_use: '0' })
  90. if ($checkRes(result)) genderList.value = result.data
  91. // 用户类型
  92. result = await dictDataStore.query({ code: 'userType', is_use: '0' })
  93. if ($checkRes(result)) typeList.value = result.data
  94. // 专家领域
  95. result = await dictDataStore.query({ code: 'field', is_use: '0' })
  96. if ($checkRes(result)) fieldList.value = result.data
  97. // 企业类型
  98. result = await dictDataStore.query({ code: 'companyType', is_use: '0' })
  99. if ($checkRes(result)) patternList.value = result.data
  100. // 企业规模
  101. result = await dictDataStore.query({ code: 'companyScale', is_use: '0' })
  102. if ($checkRes(result)) scaleList.value = result.data
  103. // 企业所属行业
  104. result = await dictDataStore.query({ code: 'companyIndustry', is_use: '0' })
  105. if ($checkRes(result)) IndustryList.value = result.data
  106. // 学历
  107. result = await dictDataStore.query({ code: 'education', is_use: '0' })
  108. if ($checkRes(result)) educationList.value = result.data
  109. // 证件类型
  110. result = await dictDataStore.query({ code: 'cardType', is_use: '0' })
  111. if ($checkRes(result)) cardTypeList.value = result.data
  112. // 出资方式
  113. result = await dictDataStore.query({ code: 'contribution', is_use: '0' })
  114. if ($checkRes(result)) contributionList.value = result.data
  115. // 是否使用
  116. result = await dictDataStore.query({ code: 'isUse', is_use: '0' })
  117. if ($checkRes(result)) isUseList.value = result.data
  118. // 城市
  119. result = await regionStore.area({ level: 'province', code: 22 })
  120. if ($checkRes(result)) cityList.value = result.data
  121. // 板块
  122. result = await sectorStore.query({ is_use: '0' })
  123. if ($checkRes(result)) plateList.value = result.data
  124. // 盈利模式
  125. result = await dictDataStore.query({ code: 'modeType', is_use: '0' })
  126. if ($checkRes(result)) modeList.value = result.data
  127. // 状态
  128. result = await dictDataStore.query({ code: 'examStatus', is_use: '0' })
  129. if ($checkRes(result)) statusList.value = result.data
  130. // 年度
  131. result = await dictDataStore.query({ code: 'year', is_use: '0' })
  132. if ($checkRes(result)) yearList.value = result.data
  133. }
  134. const search = async () => {
  135. if (user.value.id) {
  136. let res = await store.detail(user.value.id)
  137. if (res.errcode == '0') userStore.setUser(res.data)
  138. }
  139. }
  140. // provide
  141. provide('cloneDeep', cloneDeep)
  142. // 字典
  143. provide('genderList', genderList)
  144. provide('fieldList', fieldList)
  145. provide('educationList', educationList)
  146. provide('cityList', cityList)
  147. provide('isUseList', isUseList)
  148. provide('patternList', patternList)
  149. provide('scaleList', scaleList)
  150. provide('IndustryList', IndustryList)
  151. provide('cardTypeList', cardTypeList)
  152. provide('contributionList', contributionList)
  153. provide('plateList', plateList)
  154. provide('modeList', modeList)
  155. provide('yearList', yearList)
  156. provide('statusList', statusList)
  157. </script>
  158. <style scoped lang="scss">
  159. .main {
  160. .one {
  161. font-size: $global-font-size-20;
  162. font-weight: 700;
  163. margin: 0 0 20px 0;
  164. }
  165. .thr {
  166. padding: 20px;
  167. }
  168. }
  169. </style>