move brand logo flying animation to running-status

This commit is contained in:
bossgeekgo
2024-02-22 09:55:38 +08:00
parent b860e77e6b
commit 985c6edf14
2 changed files with 2 additions and 3 deletions

View File

@@ -1,6 +1,5 @@
<template>
<div class="form-wrap">
<FlyingCompanyLogoList />
<el-form ref="formRef" :model="formContent" label-position="top" :rules="formRules">
<el-form-item
label="BOSS直聘 Cookie 使用EditThisCookie扩展程序从你已登录过BOSS直聘的浏览器复制"
@@ -37,7 +36,6 @@ import JSON5 from 'json5'
import { ElForm, ElMessage } from 'element-plus'
import router from '../../router/index'
import { mountGlobalDialog as mountDependenciesSetupProgressIndicatorDialog } from '@renderer/features/DependenciesSetupProgressIndicatorDialog/operations'
import FlyingCompanyLogoList from '../../features/FlyingCompanyLogoList/index.vue'
const formContent = ref({
bossZhipinCookies: '',

View File

@@ -7,12 +7,14 @@
<p>🍀 祝你求职顺利</p>
</article>
<el-button :disabled="isStopping" @click="handleStopButtonClick">停止开聊</el-button>
<FlyingCompanyLogoList />
</div>
</template>
<script setup lang="ts">
import { ref, onUnmounted } from 'vue';
import { useRouter } from 'vue-router'
import FlyingCompanyLogoList from '../../features/FlyingCompanyLogoList/index.vue'
const { ipcRenderer } = electron
const router = useRouter()
@@ -40,7 +42,6 @@ onUnmounted(() => {
<style scoped lang="scss">
.geek-auto-start-chat-with-boss__running-status {
padding-top: 100px;
margin: 0 auto;
max-width: 640px;
}