123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355 |
- <!-- 听说训练 -->
- <template>
- <QuestionBase>
- <template #content>
- <div class="stem">
- <RichText v-model="data.stem" :font-size="18" placeholder="输入题干" />
- <RichText
- v-if="isEnable(data.property.is_enable_description)"
- v-model="data.description"
- placeholder="输入提示"
- />
- </div>
- <div class="content">
- <label class="title-little">内容</label>
- <ul>
- <li v-for="(item, i) in data.option_list" :key="i" class="content-item repeat-option">
- <span class="question-number" title="双击切换序号类型" @dblclick="changeOptionType(data)">
- {{ computedQuestionNumber(i, data.option_number_show_mode) }}
- </span>
- <div class="option-content">
- <RichText
- v-model="item.content"
- class="repeat-richtext"
- placeholder="拼音间用空格隔开,如: ni3 hao3"
- :inline="true"
- @handleRichTextBlur="handleRichTextBlur"
- />
- </div>
- <UploadAudio
- v-if="data.other.audio_generation_method === 'upload'"
- :key="item.audio_file_id || i"
- :file-id="item.audio_file_id"
- :item-index="i"
- :show-upload="!item.audio_file_id"
- @upload="uploads"
- @deleteFile="deleteFiles"
- />
- <div v-else-if="data.other.audio_generation_method === 'auto'" class="auto-matically">
- <AudioPlay v-if="item.audio_file_id" :file-id="item.audio_file_id" theme-color="gray" />
- <span
- v-loading="loading_list[i] ? loading_list[i].loading : false"
- class="auto-btn"
- @click="handleMatically(item, i)"
- >{{ item.audio_file_id ? '已生成' : '自动生成' }}</span
- >
- </div>
- <SoundRecord v-else :wav-blob.sync="item.audio_file_id" />
- <SvgIcon icon-class="delete" class="delete pointer" @click="deleteOption(i, item.audio_file_id)" />
- </li>
- </ul>
- </div>
- <div class="footer">
- <span class="add-option" @click="addOption">
- <SvgIcon icon-class="add-circle" size="14" /> <span>增加选项</span>
- </span>
- </div>
- </template>
- <template #property>
- <el-form :model="data.property" label-width="72px" label-position="left">
- <el-form-item label="题号">
- <el-input v-model="data.property.question_number" />
- </el-form-item>
- <el-form-item>
- <el-radio
- v-for="{ value, label } in questionNumberTypeList"
- :key="value"
- v-model="data.other.question_number_type"
- :label="value"
- >
- {{ label }}
- </el-radio>
- </el-form-item>
- <el-form-item label="题干题号">
- <el-select v-model="data.property.stem_question_number_font_size">
- <el-option v-for="item in fontSizeList" :key="item" :label="item" :value="item" />
- </el-select>
- </el-form-item>
- <el-form-item label="提示">
- <el-radio
- v-for="{ value, label } in switchOption"
- :key="value"
- v-model="data.property.is_enable_description"
- :label="value"
- >
- {{ label }}
- </el-radio>
- </el-form-item>
- <el-form-item label="分值">
- <el-radio
- v-for="{ value, label } in scoreTypeList"
- :key="value"
- v-model="data.property.score_type"
- :label="value"
- >
- {{ label }}
- </el-radio>
- </el-form-item>
- <el-form-item>
- <el-input-number
- v-model="data.property.score"
- :min="0"
- :step="data.property.score_type === scoreTypeList[0].value ? 1 : 0.1"
- />
- </el-form-item>
- <el-form-item label="音频">
- <el-radio
- v-for="{ value, label } in audioGenerationMethodList"
- :key="value"
- v-model="data.other.audio_generation_method"
- :label="value"
- >
- {{ label }}
- </el-radio>
- </el-form-item>
- </el-form>
- </template>
- </QuestionBase>
- </template>
- <script>
- import UploadAudio from '../common/UploadAudio.vue';
- import QuestionMixin from '../common/QuestionMixin.js';
- import SoundRecord from '../common/SoundRecord.vue';
- import { selectTypeList, changeOptionType, addTone } from '@/views/exercise_questions/data/common';
- import { repeatData, getOption, audioGenerationMethodList } from '@/views/exercise_questions/data/repeat';
- import { GetStaticResources } from '@/api/app';
- export default {
- name: 'RepeatQuestion',
- components: {
- UploadAudio,
- SoundRecord,
- },
- mixins: [QuestionMixin],
- data() {
- return {
- selectTypeList,
- audioGenerationMethodList,
- changeOptionType,
- data: JSON.parse(JSON.stringify(repeatData)),
- loading_list: [
- {
- loading: false,
- },
- {
- loading: false,
- },
- {
- loading: false,
- },
- ],
- matically_pinyin_obj: {},
- };
- },
- watch: {
- 'data.option_list.length': {
- handler(val) {
- this.loading_list = [];
- for (let i = 0; i < val; i++) {
- let obj = {
- loading: false,
- };
- this.loading_list.push(obj);
- }
- },
- deep: true,
- immediate: true,
- },
- },
- methods: {
- /**
- * 智能识别
- * @param {String} text 识别数据
- */
- recognition(text) {
- let arr = this.recognitionCommon(text);
- this.data.option_list = arr.map((content) => getOption(content));
- },
- addOption() {
- this.data.option_list.push(getOption());
- },
- uploads(file_id, index) {
- this.data.option_list[index].audio_file_id = file_id;
- this.data.file_id_list.push(file_id);
- },
- deleteFiles(file_id, itemIndex) {
- this.data.option_list[itemIndex].audio_file_id = '';
- this.data.file_id_list.splice(this.data.file_id_list.indexOf(file_id), 1);
- },
- // 删除小题
- deleteOption(i, file_id) {
- this.$confirm('是否删除?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- })
- .then(() => {
- this.data.option_list.splice(i, 1);
- this.data.file_id_list.splice(this.data.file_id_list.indexOf(file_id), 1);
- this.loading_list.splice(i, 1);
- })
- .catch(() => {});
- },
- handleReplaceTone(value, mark) {
- if (!value) return;
- value.split(/\s+/).forEach((item) => {
- this.handleValue(item);
- });
- this.matically_pinyin_obj[mark] = this.res_arr
- .map((item) =>
- item.map(({ number, con }) => (number && con ? addTone(Number(number), con) : number || con || '')),
- )
- .filter((item) => item.length > 0)
- .join(' ');
- },
- handleValue(valItem) {
- let numList = [];
- if (/[A-Za-zü]+\d/g.test(valItem)) {
- valItem.split('').forEach((item, i) => {
- if (/\d/.test(item)) {
- let con = valItem.replace(/\d/g, '');
- numList.push({
- index: i,
- number: item,
- con,
- isTran: true,
- });
- }
- });
- } else {
- numList = [];
- }
- this.res_arr.push(numList.length === 0 ? [{ con: valItem }] : numList);
- },
- handleItemPinyin(content, mark) {
- let content_arr = content.trim().split(' ');
- this.res_arr = [];
- this.$set(this.matically_pinyin_obj, mark, []);
- content_arr.forEach((items, index) => {
- let items_trim = items.trim();
- if (items_trim) {
- this.handleReplaceTone(items_trim, mark);
- }
- });
- },
- // 转成带声调的拼音
- handleRichTextBlur() {
- let rich_rext_arr = document.getElementsByClassName('repeat-richtext');
- if (rich_rext_arr) {
- for (let i = 0; i < rich_rext_arr.length; i++) {
- let content = rich_rext_arr[i].innerText;
- let index = content.search(/0|1|2|3|4/);
- if (index > -1) {
- this.handleItemPinyin(content, this.data.option_list[i].mark);
- setTimeout(() => {
- document.getElementsByClassName('repeat-richtext')[i].innerText =
- this.matically_pinyin_obj[this.data.option_list[i].mark];
- this.data.option_list[i].content = this.matically_pinyin_obj[this.data.option_list[i].mark];
- }, 100);
- }
- }
- }
- },
- // 自动生成音频
- handleMatically(item, i) {
- if (
- document.getElementsByClassName('repeat-richtext') &&
- document.getElementsByClassName('repeat-richtext')[i] &&
- document.getElementsByClassName('repeat-richtext')[i].innerText
- ) {
- this.loading_list[i].loading = true;
- let MethodName = 'tool-PinyinToVoiceFile';
- let data = {
- pinyin: document.getElementsByClassName('repeat-richtext')[i].innerText.trim().split(' ').join(','),
- };
- GetStaticResources(MethodName, data)
- .then((res) => {
- this.loading_list[i].loading = false;
- if (res.status === 1) {
- item.audio_file_id = res.file_id;
- this.data.file_id_list.push(res.file_id);
- }
- })
- .catch(() => {
- this.loading_list[i].loading = false;
- });
- }
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .repeat-option {
- :deep .upload-wrapper {
- margin-top: 0;
- }
- :deep .file-name {
- width: 205px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .auto-matically {
- display: flex;
- flex-shrink: 0;
- align-items: center;
- width: 233px;
- padding: 5px 12px;
- background-color: $fill-color;
- border-radius: 2px;
- .audio-wrapper {
- margin-right: 12px;
- :deep .audio-play {
- width: 16px;
- height: 16px;
- color: #000;
- background-color: initial;
- }
- :deep .audio-play.not-url {
- color: #a1a1a1;
- }
- :deep .voice-play {
- width: 16px;
- height: 16px;
- }
- }
- .auto-btn {
- font-size: 14px;
- font-weight: 400;
- line-height: 22px;
- color: #1d2129;
- cursor: pointer;
- }
- }
- .delete {
- flex-shrink: 0;
- }
- }
- </style>
|