mirror of
https://github.com/geekgeekrun/geekgeekrun.git
synced 2026-09-06 16:07:17 +08:00
fix any chat mode isn't taking effect
This commit is contained in:
@@ -57,7 +57,7 @@ export async function initPuppeteer () {
|
|||||||
const bossCookies = readStorageFile('boss-cookies.json')
|
const bossCookies = readStorageFile('boss-cookies.json')
|
||||||
const bossLocalStorage = readStorageFile('boss-local-storage.json')
|
const bossLocalStorage = readStorageFile('boss-local-storage.json')
|
||||||
|
|
||||||
const targetCompanyList = readConfigFile('target-company-list.json')
|
const targetCompanyList = readConfigFile('target-company-list.json').filter(it => !!it.trim());
|
||||||
|
|
||||||
const localStoragePageUrl = `https://www.zhipin.com/desktop/`
|
const localStoragePageUrl = `https://www.zhipin.com/desktop/`
|
||||||
const recommendJobPageUrl = `https://www.zhipin.com/web/geek/job-recommend`
|
const recommendJobPageUrl = `https://www.zhipin.com/web/geek/job-recommend`
|
||||||
@@ -168,6 +168,7 @@ async function toRecommendPage (hooks) {
|
|||||||
) : jobListData.findIndex(
|
) : jobListData.findIndex(
|
||||||
it => !blockBossNotNewChat.has(it.encryptBossId)
|
it => !blockBossNotNewChat.has(it.encryptBossId)
|
||||||
)
|
)
|
||||||
|
debugger
|
||||||
|
|
||||||
let hasReachLastPage = false
|
let hasReachLastPage = false
|
||||||
|
|
||||||
|
|||||||
@@ -12,7 +12,10 @@
|
|||||||
>
|
>
|
||||||
<el-input v-model="formContent.dingtalkRobotAccessToken" />
|
<el-input v-model="formContent.dingtalkRobotAccessToken" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="期望公司(以逗号分隔)" prop="expectCompanies">
|
<el-form-item
|
||||||
|
label="期望公司(以逗号分隔,一个也不填将看到哪个聊哪个)"
|
||||||
|
prop="expectCompanies"
|
||||||
|
>
|
||||||
<el-input
|
<el-input
|
||||||
v-model="formContent.expectCompanies"
|
v-model="formContent.expectCompanies"
|
||||||
:autosize="{ minRows: 4 }"
|
:autosize="{ minRows: 4 }"
|
||||||
@@ -45,8 +48,7 @@ electron.ipcRenderer.invoke('fetch-config-file-content').then((res) => {
|
|||||||
formContent.value.expectCompanies = res.config['target-company-list.json'].join(',')
|
formContent.value.expectCompanies = res.config['target-company-list.json'].join(',')
|
||||||
})
|
})
|
||||||
|
|
||||||
const formRules = {
|
const formRules = {}
|
||||||
}
|
|
||||||
|
|
||||||
const formRef = ref<InstanceType<typeof ElForm>>()
|
const formRef = ref<InstanceType<typeof ElForm>>()
|
||||||
const handleSubmit = async () => {
|
const handleSubmit = async () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user