|
@@ -65,8 +65,10 @@ const query = reactive({
|
|
|
|
|
|
const entName = ref('')
|
|
|
|
|
|
+let obj = {}
|
|
|
onLoad(async (options) => {
|
|
|
console.log('options:', options)
|
|
|
+ // 网站二维码分享
|
|
|
if (options.scene) {
|
|
|
const scene = decodeURIComponent(options.scene)
|
|
|
const key = scene.split('=')[1]
|
|
@@ -87,7 +89,7 @@ onLoad(async (options) => {
|
|
|
getJobFairDetail()
|
|
|
}
|
|
|
}
|
|
|
- if (options.backgroundColor) backgroundColor.value = options.backgroundColor
|
|
|
+ if (options.backgroundColor || obj?.backgroundColor) backgroundColor.value = options.backgroundColor || obj?.backgroundColor
|
|
|
})
|
|
|
|
|
|
// 招聘会详情
|