diff --git a/packages/ui/src/main/flow/OPEN_SETTING_WINDOW/ipc/index.ts b/packages/ui/src/main/flow/OPEN_SETTING_WINDOW/ipc/index.ts
index 5427a7a..ee1a4e4 100644
--- a/packages/ui/src/main/flow/OPEN_SETTING_WINDOW/ipc/index.ts
+++ b/packages/ui/src/main/flow/OPEN_SETTING_WINDOW/ipc/index.ts
@@ -188,6 +188,9 @@ export default function initIpc() {
if (hasOwn(payload, 'blockCompanyNameRegMatchStrategy')) {
bossConfig.blockCompanyNameRegMatchStrategy = payload.blockCompanyNameRegMatchStrategy
}
+ if (hasOwn(payload, 'fieldsForUseCommonConfig')) {
+ bossConfig.fieldsForUseCommonConfig = payload.fieldsForUseCommonConfig
+ }
promiseArr.push(writeConfigFile('boss.json', bossConfig))
diff --git a/packages/ui/src/renderer/src/page/MainLayout/GeekAutoStartChatWithBoss/index.vue b/packages/ui/src/renderer/src/page/MainLayout/GeekAutoStartChatWithBoss/index.vue
index daca352..faddccf 100644
--- a/packages/ui/src/renderer/src/page/MainLayout/GeekAutoStartChatWithBoss/index.vue
+++ b/packages/ui/src/renderer/src/page/MainLayout/GeekAutoStartChatWithBoss/index.vue
@@ -286,18 +286,36 @@
-
|
+
+
+
+ 期望薪资范围
+
+ |
- ||
|---|---|---|
| - {{ - formContent.expectSalaryLow - ? ((formContent.expectSalaryLow / m) * 10).toFixed(2) - : '无下限' - }}k - | -- {{ - formContent.expectSalaryHigh - ? ((formContent.expectSalaryHigh / m) * 10).toFixed(2) - : '无上限' - }}k - | -{{ m }}薪 | -
| + {{ text }} + | +||
|---|---|---|
| + {{ + formContent.expectSalaryLow + ? ((formContent.expectSalaryLow / m) * 10).toFixed(2) + : '无下限' + }}k + | ++ {{ + formContent.expectSalaryHigh + ? ((formContent.expectSalaryHigh / m) * 10).toFixed(2) + : '无上限' + }}k + | +{{ m }}薪 | +
| + {{ text }} + | +||
|---|---|---|
| + {{ + commonJobConditionConfig.expectSalaryLow + ? ( + (commonJobConditionConfig.expectSalaryLow / m) * + 10 + ).toFixed(2) + : '无下限' + }}k + | ++ {{ + commonJobConditionConfig.expectSalaryHigh + ? ( + (commonJobConditionConfig.expectSalaryHigh / m) * + 10 + ).toFixed(2) + : '无上限' + }}k + | +{{ m }}薪 | +