| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- import {
- displayList,
- serialNumberTypeList,
- serialNumberPositionList,
- arrangeTypeList,
- switchOption,
- isEnable,
- } from '@/views/book/courseware/data/common';
- export { arrangeTypeList, switchOption, isEnable };
- // 拼音位置
- export const pinyinPositionList = [
- { value: 'front', label: '前面' },
- { value: 'back', label: '后面' },
- { value: 'top', label: '上面' },
- { value: 'bottom', label: '下面' },
- ];
- // 读音生成方式
- export const audioGenerationMethodList = [
- {
- value: 'upload',
- label: '上传',
- },
- {
- value: 'auto',
- label: '自动生成',
- },
- {
- value: 'record',
- label: '录音',
- },
- ];
- export function getOption() {
- return {
- number: '',
- new_word: '',
- cixing: '', // 词性
- definition_list: '', // 需要增加词性
- pinyin: '',
- mp3_list: '',
- collocation: '', // 搭配
- liju_list: '', // 例句
- };
- }
- export function getOtherWordProperty() {
- return {
- serial_number: 1,
- sn_type: serialNumberTypeList[0].value,
- sn_position: serialNumberPositionList[3].value,
- sn_display_mode: displayList[0].value,
- audio_generation_method: audioGenerationMethodList[0].value,
- pinyin_position: pinyinPositionList[0].value,
- };
- }
- export function getOtherWordData() {
- return {
- type: 'other_word',
- title: '其他词汇',
- property: getOtherWordProperty(),
- option: [getOption()],
- lrc_arr: [], // lrc 文件解析后的数据
- // lrc 文件数据
- lrc_data: {
- name: '',
- url: '',
- id: '',
- file_id: '',
- },
- // 音频文件数据
- audio_data: {
- name: '',
- media_duration: 0,
- temporary_url: '',
- url: '',
- file_id: '',
- },
- file_id_list: [], // 文件 id
- mind_map: {
- node_list: [
- { name: '其他词汇' }
- ], // 思维导图数据
- },
- multilingual: [], // 多语言
- };
- }
|