JLBA202505130001_关于吉林银行新建AI智能培训系统的需求_修改sit的两个样式bug

This commit is contained in:
田岩
2026-01-19 14:08:59 +08:00
parent 746491b1b6
commit 0e03b9b3ed
5 changed files with 22 additions and 15 deletions
+2 -2
View File
@@ -4,10 +4,10 @@ ENV = 'development'
#VITE_APP_BASE_API_Url = 'https://aits.jlbank.com.cn:7002'
#VITE_APP_BASE_API_Url = 'https://aits.jlbank.com.cn:7001'
VITE_APP_BASE_API_Url = 'https://aitstest.jlbank.com.cn:7002'
VITE_APP_BASE_API_Url = 'https://aitstest.jlbank.com.cn:7001'
# VITE_APP_BASE_API_Url = 'https://aitstest.jlbank.com.cn:7002'
# VITE_APP_BASE_API_Url = 'http://192.168.247.200'
+1 -2
View File
@@ -6,7 +6,7 @@
<view class="score" v-if="['settlement', 'examination', 'pk_in'].includes(props.mode)">
{{ item.tgtGrade }}
</view>
<view class="score answerMethod" v-if="['study','examination', 'practice'].includes(props.mode)">
<view class="score answerMethod" v-if="['study','examination', 'practice'].includes(props.mode) && qnsTyp === 'ES'">
{{ answerMethod }}
</view>
<view class="fl1"></view>
@@ -50,7 +50,6 @@
<view :style="{ height: animationHeight }" :class="{ collapse_wrapper: props.mode === 'mistake' }" ref="wrapperRef">
<view class="collapse-content" ref="contentRef">
<view class="option_div" v-if="!['study_answer'].includes(props.mode)">
<template v-if="qnsTyp === 'ES'">
<questionVue
+11 -9
View File
@@ -157,15 +157,17 @@ export default function useCheckIn() {
checkInDays: localStatus.checkInDays,
popUpStatus: localStatus.popupDay === today
}
let holidayBody = {
rewardFlag: localStatus.rewardFlag,
obtainFlag: localStatus.obtainFlag
}
// 如果没有记录获取节日徽章,那么需要重新获取节日徽章信息
if(holidayBody.rewardFlag && !holidayBody.obtainFlag) {
const {body:holidayData} = await queryHolidayReward()
holidayBody = holidayData
}
// let holidayBody = {
// rewardFlag: localStatus.rewardFlag,
// obtainFlag: localStatus.obtainFlag
// }
// // 如果没有记录获取节日徽章,那么需要重新获取节日徽章信息
// if(holidayBody.rewardFlag && !holidayBody.obtainFlag) {
// const {body:holidayData} = await queryHolidayReward()
// holidayBody = holidayData
// }
// 永远重新获取节日
const {body:holidayBody} = await queryHolidayReward()
complete(checkInInfo, holidayBody)
return true;
}
+4 -1
View File
@@ -614,6 +614,9 @@
answerValue.value = text;
return oldText
}
const give_up = () => {
console.log('调用结束语音回答');
};
const changeBtn = () => {
if (props.isDisabled) return;
keyboardIsShow.value = !keyboardIsShow.value;
@@ -622,7 +625,7 @@
onHide(() => {
isGettingPermission.value = true
})
defineExpose({clearInputText})
defineExpose({clearInputText, give_up})
</script>
<style lang="scss" scoped>
@@ -492,6 +492,9 @@
answerValue.value = text;
return oldText
}
const give_up = () => {
console.log('调用结束语音回答');
};
const changeBtn = () => {
if (props.isDisabled) return;
keyboardIsShow.value = !keyboardIsShow.value;
@@ -500,7 +503,7 @@
onHide(() => {
isGettingPermission.value = true
})
defineExpose({clearInputText})
defineExpose({clearInputText, give_up})
</script>
<style lang="scss" scoped>