|
|
@ -36,8 +36,8 @@ export default { |
|
|
|
szyfTalents: false, |
|
|
|
viewPdf: false, |
|
|
|
dyfcId: null, |
|
|
|
yzfcId: null |
|
|
|
|
|
|
|
yzfcId: null, |
|
|
|
vrImg:false |
|
|
|
}, |
|
|
|
mutations: { |
|
|
|
set_yfcj (state, visible) { |
|
|
@ -152,7 +152,10 @@ export default { |
|
|
|
}, |
|
|
|
set_hsyf_djType (state, value) { |
|
|
|
state.djType = value |
|
|
|
} |
|
|
|
}, |
|
|
|
set_hsyf_vr_img(state, value) { |
|
|
|
state.vrImg = value |
|
|
|
}, |
|
|
|
}, |
|
|
|
actions: { |
|
|
|
SET_YFCJ (context, visible) { |
|
|
@ -268,6 +271,9 @@ export default { |
|
|
|
SET_GSXQ_ID (context, val) { |
|
|
|
context.commit('set_gsxq_id', val) |
|
|
|
}, |
|
|
|
SET_HSYF_VR_IMG(context, val){ |
|
|
|
context.commit('set_hsyf_vr_img', val) |
|
|
|
}, |
|
|
|
// 确保当前只能显示最近点击的弹窗
|
|
|
|
showGlobalDialog (context, type) { |
|
|
|
context.commit('set_yfcj', false) |
|
|
@ -403,6 +409,7 @@ export default { |
|
|
|
dyfcId: state => state.dyfcId, |
|
|
|
yzfcId: state => state.yzfcId, |
|
|
|
szyfTalents: state => state.szyfTalents, |
|
|
|
gsxq: state => state.gsxq |
|
|
|
gsxq: state => state.gsxq, |
|
|
|
vrImg:state => state.vrImg, |
|
|
|
} |
|
|
|
} |
|
|
|