Skip to content

Commit

Permalink
fix(core): 修复超星考试页面样式问题
Browse files Browse the repository at this point in the history
  • Loading branch information
enncy committed May 20, 2022
1 parent fd3780c commit 03fa9be
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions packages/core/src/components/cx/ExamSettingPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,26 @@ export const ExamSettingPanel = defineComponent({
const settings = store.setting.cx.exam;

return () => (
<CommonWorkSettingPanel settings={settings} v-slots={{
upload: createWorkerSetting(
'自动答题',
{
selected: 'close',
options: [
<div class="ocs-setting-panel">
<div class="ocs-setting-items">
<CommonWorkSettingPanel settings={settings} v-slots={{
upload: createWorkerSetting(
'自动答题',
{
label: '请自行检查后自行点击提交',
value: 'close'
}
]
},
(e: any) => (settings.upload = e.target.value)
)
}}>
</CommonWorkSettingPanel>
selected: 'close',
options: [
{
label: '请自行检查后自行点击提交',
value: 'close'
}
]
},
(e: any) => (settings.upload = e.target.value)
)
}}>
</CommonWorkSettingPanel>
</div>
</div>

);
}
Expand Down

0 comments on commit 03fa9be

Please sign in to comment.