123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- <template>
- <QuestionBase>
- <template #content>
- <div class="stem">
- <el-input
- v-if="data.property.stem_type === stemTypeList[0].value"
- v-model="data.stem"
- rows="3"
- resize="none"
- type="textarea"
- placeholder="输入题干"
- />
- <RichText v-if="data.property.stem_type === stemTypeList[1].value" v-model="data.stem" placeholder="输入题干" />
- </div>
- <div class="content">
- <div v-for="(item, index) in data.option_list" :key="index" class="content-item">
- <div v-if="pic_list[item.picture_file_id]" class="content-pic">
- <div class="item-left">
- <el-image
- style="width: 72px; height: 72px"
- :src="pic_list[item.picture_file_id]"
- :preview-src-list="[pic_list[item.picture_file_id]]"
- fit="contain"
- />
- <button class="delete-btn" @click="delectOptions(index, item.picture_file_id)">
- <i class="el-icon-delete"></i>删除
- </button>
- </div>
- <div class="item-right">
- <div class="item-rich">
- <label class="">图片标题</label>
- <RichText v-model="item.picture_title" placeholder="输入图片标题" />
- </div>
- <div class="item-rich">
- <label class="">图片信息</label>
- <RichText v-model="item.picture_info" placeholder="输入图片信息" />
- </div>
- </div>
- </div>
- <template v-if="isEnable(data.property.is_enable_description)">
- <label class="title-little">题目要求:</label>
- <el-input v-model="item.description" rows="3" resize="none" type="textarea" placeholder="输入题目要求" />
- </template>
- <label class="title-little">阅读材料:</label>
- <RichText v-model="item.article" placeholder="输入阅读材料" />
- <template v-if="isEnable(data.property.is_enable_sample_text)">
- <el-divider class="write-divider" />
- <label class="title-little">范文:</label>
- <RichText v-model="item.sample_text" placeholder="输入范文" :wordlimit-num="5000" />
- <p class="tips">多篇范文之间使用分割线(---)</p>
- </template>
- </div>
- <UploadDrag @fileUploadSuccess="fileUploadSuccess" :limit="999" ref="uploadDrag"></UploadDrag>
- </div>
- </template>
- <template #property>
- <el-form :model="data.property">
- <el-form-item label="题干">
- <el-radio
- v-for="{ value, label } in stemTypeList"
- :key="value"
- v-model="data.property.stem_type"
- :label="value"
- >
- {{ label }}
- </el-radio>
- </el-form-item>
- <el-form-item label="题号">
- <el-input v-model="data.property.question_number" />
- </el-form-item>
- <el-form-item label-width="45px">
- <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-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 label-width="45px">
- <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-input-number :min="1" :step="10" v-model="data.property.word_num" class="word-num-input" :precision="0" />
- </el-form-item>
- <el-form-item label="范文">
- <el-radio
- v-for="{ value, label } in switchOption"
- :key="value"
- v-model="data.property.is_enable_sample_text"
- :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_upload_accessory"
- :label="value"
- >
- {{ label }}
- </el-radio>
- </el-form-item>
- </el-form>
- </template>
- </QuestionBase>
- </template>
- <script>
- import QuestionMixin from '../common/QuestionMixin.js';
- import { writePictrueData, getOption } from '@/views/exercise_questions/data/writePicture';
- import { GetFileStoreInfo } from '@/api/app';
- import UploadDrag from '../common/UploadDrag.vue';
- export default {
- name: 'TalkPicture',
- mixins: [QuestionMixin],
- components: { UploadDrag },
- data() {
- return {
- data: JSON.parse(JSON.stringify(writePictrueData)),
- pic_list: {},
- is_first: true,
- };
- },
- watch: {
- 'data.file_id_list': {
- handler() {
- if (this.is_first) {
- this.handleData();
- }
- },
- deep: true,
- },
- },
- created() {},
- mounted() {},
- methods: {
- // 初始化数据
- handleData() {
- this.data.file_id_list.forEach((item) => {
- GetFileStoreInfo({ file_id: item }).then(({ file_id, file_url }) => {
- this.$set(this.pic_list, file_id, file_url);
- });
- });
- this.is_first = false;
- },
- // 删除
- delectOptions(i, id) {
- this.$confirm('是否删除该条全部信息?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- })
- .then(() => {
- delete this.pic_list[id];
- this.data.file_id_list.splice(this.data.file_id_list.indexOf(id), 1);
- this.data.option_list.splice(i, 1);
- this.$refs.uploadDrag.clearFiles();
- })
- .catch(() => {});
- },
- fileUploadSuccess(file_id, file_url) {
- this.data.file_id_list.push(file_id);
- this.data.option_list.push(getOption());
- this.data.option_list[this.data.option_list.length - 1].picture_file_id = file_id;
- this.$set(this.pic_list, file_id, file_url);
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .content {
- :deep .el-upload {
- width: 100%;
- &-dragger {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 90px;
- font-size: 14px;
- :first-child {
- color: #000;
- }
- :last-child {
- color: $text-color;
- }
- }
- }
- .content-item {
- .content-pic {
- display: flex;
- column-gap: 8px;
- margin-bottom: 24px;
- }
- }
- .delete-btn {
- width: 100%;
- padding: 5px 8px;
- font-size: 14px;
- line-height: 22px;
- color: #f53f3f;
- background: #fff4f4;
- border: none;
- border-radius: 4px;
- .el-icon-delete {
- margin-right: 8px;
- }
- &:hover {
- color: #f53f3f;
- }
- &:focus {
- outline: none;
- }
- }
- .item-left {
- width: 72px;
- }
- .item-right {
- flex: 1;
- .item-rich {
- display: flex;
- > label {
- flex-shrink: 0;
- width: 64px;
- font-size: 14px;
- line-height: 32px;
- color: #4e5969;
- }
- }
- }
- }
- </style>
|