123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602 |
- <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-wrapper">
- <div class="content">
- <div
- v-for="({ role, file_id, type, text }, i) in data.option_list"
- :key="i"
- class="option-list"
- :style="{ flexDirection: type === 'input' ? 'row-reverse' : 'row' }"
- >
- <span
- class="avatar"
- :style="{
- backgroundColor: data.property.role_list.find((item) => item.mark === role).color,
- }"
- >
- {{ data.property.role_list.find((item) => item.mark === role).name }}
- </span>
- <div v-if="type === 'text'" class="text">{{ text }}</div>
- <div v-else-if="type === 'image'" class="image">
- <img :src="file_map_list[file_id]" />
- </div>
- <div v-else-if="type === 'audio'" class="audio">
- <AudioPlay
- :file-id="file_id"
- :show-slider="true"
- :show-progress="false"
- :background-color="data.property.role_list.find((item) => item.mark === role).color"
- />
- </div>
- <div v-else-if="type === 'input'">
- <SoundRecordPreview type="small" :disabled="true" />
- </div>
- <div class="content-operation" :style="{ flexDirection: type === 'input' ? 'row-reverse' : 'row' }">
- <div class="up-down">
- <span :style="{ borderBottomColor: i === 0 ? '#c2c2c4' : '#000' }" @click="moveOption('up', i)"></span>
- <span
- :style="{ borderTopColor: i < data.option_list.length - 1 ? '#000' : '#c2c2c4' }"
- @click="moveOption('down', i)"
- ></span>
- </div>
- <SvgIcon icon-class="delete" @click="deleteOption(i)" />
- </div>
- </div>
- </div>
- <div class="operation">
- <div class="operation-left">
- <el-select v-model="curRole" placeholder="请选择">
- <el-option
- v-for="(item, i) in data.property.role_list"
- :key="i"
- :label="item.name.length === 0 ? ' ' : item.name"
- :value="item.mark"
- />
- </el-select>
- <SoundRecord @saveWav="saveWav" />
- </div>
- <div class="operation-right">
- <el-upload
- action="no"
- accept="audio/*"
- :show-file-list="false"
- :http-request="handleAudio"
- :before-upload="handleBeforeAudio"
- >
- <SvgIcon icon-class="music" />
- <span>上传音频</span>
- </el-upload>
- <el-upload
- action="no"
- accept="image/*"
- :show-file-list="false"
- :http-request="handleImage"
- :before-upload="handleBeforeImage"
- >
- <SvgIcon icon-class="picture" />
- <span>上传图片</span>
- </el-upload>
- <div class="insert-student" @click="insertStudent">
- <SvgIcon icon-class="add-circle" size="14" />
- <span>插入学生</span>
- </div>
- </div>
- </div>
- <el-input
- v-model="textInput"
- placeholder="输入"
- type="textarea"
- resize="none"
- :autosize="{ minRows: 3 }"
- @keyup.enter.native="handleText"
- />
- <span class="tips">输入对话内容后请按回车上屏</span>
- </div>
- <div v-if="isEnable(data.property.is_enable_reference_answer)" class="reference-answer">
- <div class="reference-title">参考答案:</div>
- <el-input v-model="data.reference_answer" type="textarea" rows="3" placeholder="输入参考答案" />
- </div>
- <div v-if="isEnable(data.property.is_enable_analysis)" class="analysis">
- <div class="analysis-title">解析:</div>
- <RichText v-model="data.analysis" :is-border="true" :font-size="14" placeholder="输入解析" />
- </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 switchOption"
- :key="value"
- v-model="data.property.is_enable_reference_answer"
- :label="value"
- >
- {{ label }}
- </el-radio>
- </el-form-item>
- <el-form-item label="解析">
- <el-radio
- v-for="{ value, label } in switchOption"
- :key="value"
- v-model="data.property.is_enable_analysis"
- :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 switchOption"
- :key="value"
- v-model="data.property.is_enable_voice_answer"
- :label="value"
- >
- {{ label }}
- </el-radio>
- </el-form-item>
- <el-form-item label="角色数">
- <el-select v-model="data.property.role_number" placeholder="请选择">
- <el-option v-for="item in 5" :key="item" :label="item" :value="item" />
- </el-select>
- </el-form-item>
- <el-form-item v-for="(item, i) in data.property.role_list" :key="i" :label="`角色 ${i + 1}`" class="role">
- <el-input v-model="item.name" />
- <el-color-picker v-model="item.color" />
- </el-form-item>
- </el-form>
- </template>
- </QuestionBase>
- </template>
- <script>
- import QuestionMixin from '../common/QuestionMixin.js';
- import AudioPlay from '../common/AudioPlay.vue';
- import SoundRecord from '@/components/common/SoundRecord.vue';
- import SoundRecordPreview from '@/views/exercise_questions/preview/components/common/SoundRecordPreview.vue';
- import { getRandomNumber } from '@/utils';
- import { fileUpload, GetFileURLMap } from '@/api/app';
- import { analysisRecognitionDialogueData, getDialogueData, getRole } from '@/views/exercise_questions/data/dialogue';
- export default {
- name: 'DialogueQuestion',
- components: {
- AudioPlay,
- SoundRecord,
- SoundRecordPreview,
- },
- mixins: [QuestionMixin],
- data() {
- return {
- curRole: '',
- textInput: '',
- file_id_list: [],
- file_map_list: [],
- data: getDialogueData(),
- };
- },
- watch: {
- 'data.property.role_number'(val) {
- if (this.data.property.role_list.length > val) {
- this.data.property.role_list = this.data.property.role_list.slice(0, val);
- } else {
- for (let i = this.data.property.role_list.length; i < val; i++) {
- this.data.property.role_list.push(getRole(i));
- }
- }
- },
- 'data.property.role_list': {
- handler(val) {
- // 如果当前角色(curRole)不在角色列表中,将当前角色(curRole)设置为角色列表中的第一个角色
- if (val.find((item) => item.mark === this.curRole) === undefined && val.length > 0) {
- this.curRole = val[0].mark;
- }
- },
- immediate: true,
- },
- 'data.option_list': {
- handler(val) {
- let file_id_list = [];
- val.forEach(({ type, file_id }) => {
- if (type === 'image' || type === 'audio') {
- file_id_list.push(file_id);
- }
- });
- // 判断 this.file_id_list 和 file_id_list 两个数组中的内容是否相等,位置可能不同
- if (
- this.file_id_list.length === file_id_list.length &&
- this.file_id_list.every((item) => file_id_list.includes(item))
- ) {
- return;
- }
- this.file_id_list = file_id_list;
- GetFileURLMap({ file_id_list }).then(({ url_map }) => {
- this.file_map_list = url_map;
- });
- },
- },
- },
- methods: {
- /**
- * 智能识别
- * @param {String} text 识别数据
- */
- recognition(text) {
- let arr = this.recognitionCommon(text);
- let obj = analysisRecognitionDialogueData(arr);
- this.recognitionCommonSetObj(obj);
- },
- // 音频上传前处理
- handleBeforeAudio(file) {
- if (this.curRole.length <= 0) {
- this.$message.error('请先选择角色');
- return false;
- }
- // 判断文件是否为音频
- if (!file.type.includes('audio')) {
- this.$message.error('请选择音频文件');
- return false;
- }
- },
- // 图片上传前处理
- handleBeforeImage(file) {
- if (this.curRole.length <= 0) {
- this.$message.error('请先选择角色');
- return false;
- }
- // 判断文件是否为图片
- if (!file.type.includes('image')) {
- this.$message.error('请选择图片文件');
- return false;
- }
- },
- // 音频上传
- handleAudio(file) {
- this.upload('audio', file);
- },
- // 图片上传
- handleImage(file) {
- this.upload('image', file);
- },
- // 上传
- upload(type, file) {
- fileUpload('Mid', file, { isGlobalprogress: true }).then(({ file_info_list }) => {
- if (file_info_list.length > 0) {
- const { file_id } = file_info_list[0];
- this.data.option_list.push({
- role: this.curRole,
- file_id,
- type,
- });
- }
- });
- },
- // 处理输入文本
- handleText() {
- if (this.curRole.length <= 0) {
- return this.$message.error('请先选择角色');
- }
- this.data.option_list.push({
- role: this.curRole,
- text: this.textInput.replace(/\n/, ''),
- file_id: '',
- mark: getRandomNumber(),
- type: 'text',
- });
- this.textInput = '';
- },
- /**
- * 移动选项
- * @param {'up'|'down'} type 类型
- * @param {number} i 索引
- */
- moveOption(type, i) {
- if ((type === 'up' && i === 0) || (type === 'down' && i === this.data.option_list.length - 1)) return;
- const item = this.data.option_list[i];
- this.data.option_list.splice(i, 1);
- this.data.option_list.splice(type === 'up' ? i - 1 : i + 1, 0, item);
- },
- /**
- * 删除选项
- * @param {number} i 索引
- */
- deleteOption(i) {
- this.data.option_list.splice(i, 1);
- },
- // 插入学生
- insertStudent() {
- if (this.curRole.length <= 0) {
- return this.$message.error('请先选择角色');
- }
- this.data.option_list.push({
- mark: getRandomNumber(),
- role: this.curRole,
- file_id: '',
- type: 'input',
- });
- },
- /**
- * 保存音频
- * @param {string} file_id 文件id
- */
- saveWav(file_id) {
- this.data.option_list.push({
- role: this.curRole,
- file_id,
- type: 'audio',
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .content-wrapper {
- display: flex;
- flex-direction: column;
- row-gap: 8px;
- padding-bottom: 8px;
- margin-bottom: 8px;
- border-bottom: $border;
- .content {
- display: flex;
- flex-direction: column;
- row-gap: 16px;
- padding: 16px;
- background-color: $fill-color;
- .option-list {
- display: flex;
- column-gap: 8px;
- .avatar {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 40px;
- min-width: 40px;
- height: 40px;
- min-height: 40px;
- margin-right: 8px;
- font-size: 12px;
- color: #fff;
- border-radius: 50%;
- }
- .content-operation {
- display: flex;
- column-gap: 8px;
- align-items: center;
- .up-down {
- display: flex;
- flex-direction: column;
- row-gap: 12px;
- // span 三角形
- :first-child {
- width: 0;
- height: 0;
- cursor: pointer;
- border-color: transparent;
- border-style: solid;
- border-width: 4px;
- }
- :last-child {
- width: 0;
- height: 0;
- cursor: pointer;
- border-color: transparent;
- border-style: solid;
- border-width: 4px;
- }
- }
- .svg-icon {
- cursor: pointer;
- }
- }
- .sound-record-preview {
- padding: 4px;
- background-color: #fff;
- border-radius: 40px;
- :deep .sound-item .sound-item-span {
- color: #1d1d1d;
- background-color: #fff;
- }
- :deep .sound-item-luyin .sound-item-span {
- color: #fff;
- background-color: $light-main-color;
- }
- }
- .text {
- padding: 8px 12px;
- word-break: break-all;
- background-color: #fff;
- border-radius: 8px;
- }
- .image img {
- height: 180px;
- border-radius: 8px;
- }
- }
- }
- .operation {
- display: flex;
- justify-content: space-between;
- font-size: 14px;
- &-left {
- display: flex;
- column-gap: 8px;
- align-items: center;
- .el-select {
- width: 130px;
- }
- }
- &-right {
- display: flex;
- column-gap: 36px;
- align-items: center;
- color: $main-color;
- .insert-student {
- display: flex;
- column-gap: 8px;
- align-items: center;
- cursor: pointer;
- }
- :deep .el-upload {
- display: flex;
- column-gap: 8px;
- align-items: center;
- }
- }
- }
- .tips {
- font-size: 14px;
- color: #e82d2d;
- }
- }
- .correct-answer {
- display: flex;
- flex-wrap: wrap;
- gap: 8px 8px;
- margin-top: 8px;
- .el-input {
- width: 180px;
- :deep &__prefix {
- display: flex;
- align-items: center;
- color: $text-color;
- }
- }
- }
- .reference-answer {
- margin-top: 8px;
- .reference-title {
- margin-bottom: 8px;
- font-size: 14px;
- }
- }
- .el-form {
- .role {
- :deep .el-form-item__content {
- display: flex;
- flex: 1;
- .el-input {
- width: 100px;
- margin-right: 16px;
- }
- .el-color-picker {
- flex: 1;
- &__trigger {
- width: 100%;
- background-color: $fill-color;
- }
- &__color {
- width: 22px;
- height: 22px;
- border-width: 0;
- }
- &__icon {
- left: 88%;
- width: 20px;
- color: $font-color;
- }
- }
- }
- }
- }
- </style>
|