|
@@ -87,12 +87,14 @@ const questionInfo = ref<ExtractApiResponse<'getQuestionStruct'>>()
|
|
const onSubmit = (data: ExtractApiResponse<'getQuestionStruct'>) => {
|
|
const onSubmit = (data: ExtractApiResponse<'getQuestionStruct'>) => {
|
|
questionInfo.value = data
|
|
questionInfo.value = data
|
|
modalVisible.value = false
|
|
modalVisible.value = false
|
|
|
|
+ console.log('onsubmitSet', modalVisible.value)
|
|
submitModalVisible.value = true
|
|
submitModalVisible.value = true
|
|
}
|
|
}
|
|
|
|
|
|
/** 取消提交 */
|
|
/** 取消提交 */
|
|
const onCancelSubmit = () => {
|
|
const onCancelSubmit = () => {
|
|
modalVisible.value = true
|
|
modalVisible.value = true
|
|
|
|
+ console.log('onCancelSubmit', modalVisible.value)
|
|
submitModalVisible.value = false
|
|
submitModalVisible.value = false
|
|
}
|
|
}
|
|
|
|
|