|
@@ -3,7 +3,7 @@
|
|
|
<v-card class="default-width pa-5">
|
|
|
<!-- 标题 -->
|
|
|
<div class="resume-header">
|
|
|
- <div class="resume-title">加入已有企业</div>
|
|
|
+ <div class="resume-title">{{ $t('enterprise.joiningEnterprise') }}</div>
|
|
|
</div>
|
|
|
<!-- 表单 -->
|
|
|
<div class="CtFormClass" style="width: 600px;">
|
|
@@ -16,12 +16,12 @@
|
|
|
color="primary" class="white--text mt-8" min-width="350"
|
|
|
to="/enterprise/talentPool"
|
|
|
>
|
|
|
- 完成
|
|
|
+ {{ $t('common.complete') }}
|
|
|
</v-btn>
|
|
|
</div>
|
|
|
<!-- 底部 -->
|
|
|
<div class="text-center mt-5">
|
|
|
- <v-btn color="primary" variant="text" to="/enterprise/register">注册新企业</v-btn>
|
|
|
+ <v-btn color="primary" variant="text" to="/enterprise/register">{{ $t('enterprise.registeringNewEnterprise') }}</v-btn>
|
|
|
</div>
|
|
|
</v-card>
|
|
|
</div>
|
|
@@ -32,7 +32,7 @@ import CtForm from '@/components/CtForm'
|
|
|
import { enterpriseSearchByName } from '@/api/resume'
|
|
|
import { ref } from 'vue'
|
|
|
|
|
|
-defineOptions({name: 'enterprise-enterpriseRegister-JoiningEnterprise'})
|
|
|
+defineOptions({name: 'enterprise-enterpriseRegister-joiningEnterprise'})
|
|
|
const loginLoading = ref(false)
|
|
|
|
|
|
// 企业名称下拉列表
|