123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778 |
- <template>
- <div class="none_writeTable writeTable printTable" v-if="dataConfig">
- <div class="none_word_main_table" v-for="(data, indexT) in dataConfig" :key="indexT">
- <div class="writeTop" :class="[data.left.fileList ? 'writeTop-nopadding' : '']">
- <div
- class="left left-preview"
- :class="[data.left.fileList.length === 0 ? 'left-big' : '']"
- :style="{ borderColor: data.borderColor }"
- >
- <div class="header-info-preview">
- <h5 :style="{ textAlign: data.fontAlign }">{{ data.headerCon }}</h5>
- <label :style="{ background: data.borderColor }">{{ data.label }}</label>
- </div>
- <div class="item-image" v-if="data.left.fileList.length > 0">
- <el-image
- style="width: 568px; height: 294px"
- :src="data.left.fileList[0].fileUrl"
- :preview-src-list="[data.left.fileList[0].fileUrl]"
- fit="contain"
- />
- </div>
- <h2 :class="['con-preview', data.left.fileList.length === 0 ? 'con-preview-big' : '']">
- {{ data.left.con }}
- </h2>
- </div>
- <div class="right right-preview left-preview" :style="{ borderColor: data.borderColor }">
- <div
- :style="{
- display: 'flex',
- justifyContent: !(data.right.collocation && data.right.exampleSent) ? 'center' : 'auto',
- }"
- >
- <div style="width: max-content">
- <AudioPlay
- :file-id="data.right.audio_file"
- v-if="data.right.audio_file"
- :style="{ background: data.borderColor }"
- />
- <div class="hz-box">
- <div class="hz-item" v-for="(itemh, indexh) in data.right.hz_info" :key="indexh">
- <p :style="{ color: data.borderColor }">
- {{ data.right.pinyin.split(' ')[indexh] ? data.right.pinyin.split(' ')[indexh] : '' }}
- </p>
- <Strockplay
- className="adult-strockplay"
- :Book_text="itemh.con"
- :playStorkes="true"
- :strokePlayColor="data.borderColor"
- :strokeColor="'#000000'"
- :palyWidth="'18px'"
- :BoxbgType="'0'"
- :curItem="itemh.hzDetail.hz_json"
- :targetDiv="'writeTops-item-' + '-' + indexh + '-' + itemh.con"
- :class="[indexh !== 0 ? 'writeTop-item-noLeft' : '']"
- class="writeTop-item"
- :style="{ borderColor: data.borderColor }"
- />
- </div>
- </div>
- </div>
- <div
- class="definition-box"
- v-if="data.right.collocation || data.right.exampleSent"
- style="flex: 1; margin: 100px 0 0 16px"
- >
- <div v-if="data.right.cixing">
- <label class="card-label">词性:</label>
- <p>{{ data.right.cixing }}</p>
- </div>
- <div v-if="data.right.definition">
- <label class="card-label">释义:</label>
- <p>{{ data.right.definition }}</p>
- </div>
- </div>
- </div>
- <div
- class="definition-box"
- :style="{
- width: !(data.right.collocation && data.right.exampleSent) ? data.right.hz_info.length * 98 + 'px' : '',
- margin: !(data.right.collocation && data.right.exampleSent) ? '16px auto 0 auto' : '',
- }"
- >
- <template v-if="!(data.right.collocation && data.right.exampleSent)">
- <div v-if="data.right.cixing">
- <label class="card-label">词性:</label>
- <p>{{ data.right.cixing }}</p>
- </div>
- <div v-if="data.right.definition">
- <label class="card-label">释义:</label>
- <p>{{ data.right.definition }}</p>
- </div>
- </template>
- <div v-if="data.right.collocation">
- <label class="card-label">搭配:</label>
- <p>{{ data.right.collocation }}</p>
- </div>
- <div v-if="data.right.exampleSent">
- <label class="card-label">例句:</label>
- <p>{{ data.right.exampleSent }}</p>
- </div>
- </div>
- </div>
- </div>
- <!-- <div class="writeBottom">
- <span>BLCUP 全球国际中文教学云平台</span>
- <b>{{ indexT + 1 + '/' + dataConfig.result.length }}</b>
- <a>www.chinesedu.com</a>
- </div> -->
- </div>
- </div>
- </template>
- <script>
- //这里可以导入其它文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等)
- import StrockplayredlineTable from '../../components/corpus/StrockplayredlineTable.vue';
- import Strockplay from '../../components/corpus/Strockplay.vue';
- import Strockred from '../../components/corpus/Strockred.vue';
- import FreewriteLettle from '../../components/corpus/FreewriteLettle.vue';
- import UploadDrag from './UploadDrag.vue';
- import AudioPlay from './AudioPlay.vue';
- const HanziWriter = require('hanzi-writer');
- import { getLogin } from '@/api/api';
- export default {
- //import引入的组件需要注入到对象中才能使用
- components: {
- StrockplayredlineTable,
- Strockplay,
- Strockred,
- FreewriteLettle,
- UploadDrag,
- AudioPlay,
- },
- //props: ["dataConfig", "data", "indexT", "totalNumber", "type", "none"],
- data() {
- //这里存放数据
- return {
- ifFreeShow: false,
- activeIndex: null,
- activeColIndex: null,
- dataConfig: null,
- loading: false,
- userID: this.$route.query.userID ? this.$route.query.userID : '',
- id: this.$route.query.id ? this.$route.query.id : '',
- };
- },
- //计算属性 类似于data概念
- computed: {},
- //监控data中数据变化
- watch: {},
- //方法集合
- methods: {
- download2() {
- document.getElementsByClassName('printTable')[0].style.zoom = 2;
- //执行window.print打印功能
- window.print();
- this.$message({
- message: '操作成功',
- type: 'success',
- });
- this.$router.replace({
- path: '/wordcard/cread',
- query: { cachesType: 'push', userID: this.userID, id: this.id },
- });
- return false;
- },
- changePraShow() {
- this.ifFreeShow = false;
- },
- closeifFreeShow(data, rowIndex, colIndex) {
- this.ifFreeShow = false;
- this.$forceUpdate();
- },
- freeWrite(item, row, col) {
- this.ifFreeShow = true;
- this.activeIndex = row;
- this.activeColIndex = col;
- // this.currentHz = this.curQue.option[indexs].rightOption[rightindex].con;
- if (item) {
- this.currenHzData = item;
- } else {
- this.currenHzData = {};
- }
- },
- ExerciseChangeCurQue(answer, rowIndex, colIndex) {
- if (answer) {
- this.data[rowIndex][colIndex].strokes_image_url = answer.strokes_image_url;
- this.data[rowIndex][colIndex].history = answer.history;
- this.$forceUpdate();
- }
- },
- changeFillId(file, fileList) {
- let obj = {
- name: file.name,
- fileId: file.file_id,
- fileUrl: file.file_url_open,
- };
- this.data.fileList.push(obj);
- },
- handleDeleteImg() {
- this.data.fileList = [];
- },
- initHanziwrite() {
- let _this = this;
- this.dataConfig.result.forEach((item, pageNumber) => {
- if (item.hz_info && item.hz_info.length === 1) {
- let node = document.getElementById(`character-target-info-div` + pageNumber);
- if (node && node.children.length > 1) {
- node.removeChild(node.children[1]);
- }
- //var ren = require("hanzi-writer-data/国");
- _this.writer = HanziWriter.default.create(`character-target-info-div` + pageNumber, item.hz_info[0].con, {
- width: 22,
- height: 22,
- padding: 0,
- radicalColor: '#000000',
- strokeColor: '#fff',
- });
- }
- });
- },
- },
- //生命周期 - 创建完成(可以访问当前this实例)
- created() {},
- //生命周期 - 挂载完成(可以访问DOM元素)
- mounted() {
- let _this = this;
- let writeTableData = localStorage.getItem('newEditTable');
- if (writeTableData) {
- _this.dataConfig = JSON.parse(writeTableData);
- if (_this.dataConfig) {
- _this.dataConfig.forEach((item) => {
- if (item.left.con.trim()) {
- let MethodName = 'tool-TextToVoiceFile';
- let datas = {
- text: item.left.con.trim(),
- };
- getLogin(MethodName, datas)
- .then((res) => {
- if (res.status === 1) {
- item.right.audio_file = res.file_id;
- }
- })
- .catch(() => {});
- }
- });
- // _this.$nextTick(() => {
- // _this.initHanziwrite();
- // });
- }
- setTimeout(() => {
- _this.download2();
- }, 2000);
- }
- },
- //生命周期-创建之前
- beforeCreated() {},
- //生命周期-挂载之前
- beforeMount() {},
- //生命周期-更新之前
- beforUpdate() {},
- //生命周期-更新之后
- updated() {},
- //生命周期-销毁之前
- beforeDestory() {},
- //生命周期-销毁完成
- destoryed() {},
- //如果页面有keep-alive缓存功能,这个函数会触发
- activated() {},
- };
- </script>
- <style lang="scss" scoped>
- .none_writeTable {
- width: 540px;
- display: flex;
- justify-content: center;
- align-items: flex-start;
- flex-wrap: wrap;
- padding-top: 10px;
- .writeTop {
- padding-top: 0;
- }
- }
- .header-info-preview {
- position: absolute;
- width: 100%;
- left: 0;
- top: 0;
- z-index: 1;
- padding: 0 16px;
- box-sizing: border-box;
- h5 {
- color: #000;
- font-size: 24px;
- font-weight: 400;
- line-height: 32px;
- padding: 0 12px;
- }
- label {
- position: absolute;
- right: 20px;
- top: -4px;
- border-radius: 0px 8px;
- background: #fff;
- padding: 0px 16px 0px 8px;
- color: #fff;
- font-size: 24px;
- font-weight: 500;
- line-height: 150%;
- }
- }
- .writeTable {
- background: #ffffff;
- box-sizing: border-box;
- .writeTop {
- height: 783px;
- .writeTop-row {
- display: flex;
- justify-content: center;
- .writeTop-item {
- border: 1px solid #de4444;
- &.writeTop-item-noLeft {
- border-left: none;
- }
- }
- }
- }
- .writeTop {
- height: auto;
- .left,
- .right {
- width: 600px;
- height: 450px;
- padding: 8px 12px 18px 12px;
- border-radius: 24px;
- background: #fff;
- box-sizing: border-box;
- position: relative;
- overflow: hidden;
- .header-info {
- display: flex;
- width: 100%;
- justify-content: space-between;
- margin-bottom: 12px;
- :deep .el-input__inner {
- color: rgba(0, 0, 0, 1);
- font-size: 24px;
- font-weight: 400;
- line-height: 100%;
- height: 24px;
- border: none;
- padding: 0;
- }
- .label {
- :deep .el-input__inner {
- text-align: right;
- }
- }
- }
- }
- .left-preview {
- padding-top: 40px;
- padding-bottom: 32px;
- }
- .left-big {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .del-btn {
- cursor: pointer;
- border-radius: 8px;
- background: #f56767;
- padding: 8px;
- position: absolute;
- right: 24px;
- bottom: 24px;
- color: #fff;
- }
- .overturn-btn {
- position: absolute;
- right: 24px;
- bottom: 24px;
- border-radius: 8px;
- background: #e0e0e0;
- padding: 8px;
- width: 24px;
- height: 24px;
- color: #fff;
- font-size: 24px;
- line-height: 1;
- cursor: pointer;
- }
- .right {
- display: flex;
- align-items: center;
- flex-flow: wrap;
- padding: 120px 86px;
- row-gap: 8px;
- label {
- width: 100%;
- color: #4e5969;
- font-size: 14px;
- font-weight: 400;
- line-height: 22px;
- height: 22px;
- }
- :deep .el-textarea {
- height: 140px;
- }
- }
- .right-preview {
- padding: 36px 72px;
- display: block;
- .hz-box {
- justify-content: center;
- width: 100%;
- .hz-item {
- text-align: center;
- :deep .strockplayInner {
- width: 98px;
- height: 98px;
- }
- p {
- color: #de4444;
- font-feature-settings: 'cv01' on;
- font-family: League;
- font-size: 20px;
- line-height: 120%;
- margin-bottom: 8px;
- }
- }
- }
- :deep .audio-wrapper {
- margin: 0 auto 8px auto;
- border-radius: 40px;
- background: #f3f3f3;
- padding: 16px;
- width: 56px;
- height: 56px;
- box-sizing: border-box;
- cursor: pointer;
- .voice-play {
- width: 24px;
- height: 24px;
- }
- }
- .definition-box {
- white-space: pre;
- > div {
- display: flex;
- margin-bottom: 16px;
- label,
- p {
- width: 40px;
- color: #000;
- font-size: 24px;
- font-weight: 400;
- line-height: 150%;
- }
- label {
- width: 68px;
- }
- }
- }
- }
- .right-preview-rota {
- transform: rotateY(-180deg);
- }
- .item-image {
- position: relative;
- // background: #f2f3f5;
- border-radius: 8px;
- overflow: hidden;
- .item-image-del {
- position: absolute;
- top: 8px;
- right: 8px;
- width: 16px;
- height: 16px;
- display: block;
- cursor: pointer;
- background-color: #ffffff;
- color: #ee3232;
- padding: 8px;
- border-radius: 50%;
- box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
- }
- }
- .item-con {
- width: 100%;
- display: flex;
- align-items: center;
- margin-top: 8px;
- label {
- color: #4e5969;
- font-size: 14px;
- font-weight: 400;
- line-height: 22px;
- width: 44px;
- }
- :deep .el-input__inner {
- border-radius: 2px;
- background: #f2f3f5;
- width: 235px;
- border: none;
- font-size: 14px;
- font-weight: 400;
- line-height: 22px;
- height: 32px;
- font-family: FZJCGFKTK;
- }
- .pinyin {
- :deep .el-input__inner {
- font-family: League;
- }
- }
- }
- .con-preview {
- margin-top: 16px;
- color: #000;
- text-align: center;
- font-family: 'FZJCGFKTK';
- font-size: 64px;
- font-weight: 400;
- line-height: 100%;
- &-big {
- font-size: 96px;
- margin-top: 0;
- }
- }
- .writeTop-row {
- display: flex;
- justify-content: center;
- }
- }
- .item-info {
- display: flex;
- width: 100%;
- padding: 0 46px 8px 46px;
- column-gap: 16px;
- box-sizing: border-box;
- &-left {
- .writeTop-item {
- width: 98px;
- height: 98px;
- :deep .strock-play-box {
- width: 18px !important;
- height: 18px !important;
- }
- :deep .playStorkes-btn {
- width: 18px !important;
- height: 18px !important;
- }
- &-small {
- width: 62px;
- height: 62px;
- :deep .strock-play-box {
- width: 11px !important;
- height: 11px !important;
- }
- :deep .playStorkes-btn {
- width: 11px !important;
- height: 11px !important;
- }
- }
- }
- &-long {
- width: 100%;
- }
- }
- &-right {
- flex: 1;
- }
- :deep .el-textarea__inner {
- resize: none;
- background-color: #f3f3f3;
- border: none;
- outline: none;
- }
- .voice-box {
- width: 100%;
- height: 32px;
- display: flex;
- align-items: center;
- justify-content: center;
- column-gap: 4px;
- img {
- width: 24px;
- height: 24px;
- }
- span {
- font-family: League;
- font-size: 16px;
- font-weight: 400;
- color: #de4444;
- }
- }
- .item-info-row {
- display: flex;
- column-gap: 11px;
- margin-bottom: 6px;
- :deep .el-input__inner {
- background-color: #f3f3f3;
- border: none;
- outline: none;
- height: 32px;
- }
- }
- .item-info-half,
- .item-info-all {
- width: 50%;
- display: flex;
- font-size: 14px;
- line-height: 22px;
- height: 22px;
- }
- .item-info-all {
- width: 100%;
- }
- }
- .hz-box {
- display: flex;
- width: max-content;
- }
- .writeTop-item {
- border: 1px solid #de4444;
- }
- .writeTop-item-noLeft {
- border-left: none;
- }
- .tian-div {
- width: 100%;
- height: 100%;
- position: relative;
- .tian {
- width: 100%;
- height: 100%;
- }
- img {
- width: 100%;
- height: 100%;
- position: absolute;
- left: 0;
- top: 0;
- }
- }
- .flipped {
- transform: rotateY(180deg);
- }
- .flipped-back {
- transform: rotateY(0deg);
- }
- }
- .item-info {
- display: flex;
- width: 100%;
- padding: 16px 46px;
- column-gap: 16px;
- box-sizing: border-box;
- &-left {
- .writeTop-item {
- width: 98px;
- height: 98px;
- :deep .strock-play-box {
- width: 18px !important;
- height: 18px !important;
- }
- :deep .playStorkes-btn {
- width: 18px !important;
- height: 18px !important;
- }
- &-small {
- width: 62px;
- height: 62px;
- :deep .strock-play-box {
- width: 11px !important;
- height: 11px !important;
- }
- :deep .playStorkes-btn {
- width: 11px !important;
- height: 11px !important;
- }
- }
- }
- &-long {
- width: 100%;
- }
- }
- &-right {
- flex: 1;
- }
- :deep .el-textarea__inner {
- resize: none;
- background-color: #f3f3f3;
- border: none;
- outline: none;
- }
- .voice-box {
- width: 100%;
- height: 32px;
- display: flex;
- align-items: center;
- justify-content: center;
- column-gap: 4px;
- img {
- width: 24px;
- height: 24px;
- }
- span {
- font-family: League;
- font-size: 16px;
- font-weight: 400;
- color: #de4444;
- }
- }
- .item-info-row {
- display: flex;
- column-gap: 11px;
- margin-bottom: 6px;
- :deep .el-input__inner {
- background-color: #f3f3f3;
- border: none;
- outline: none;
- height: 32px;
- }
- }
- .item-info-half,
- .item-info-all {
- width: 50%;
- display: flex;
- font-size: 14px;
- line-height: 22px;
- height: 22px;
- }
- .item-info-all {
- width: 100%;
- }
- }
- .hz-box {
- display: flex;
- width: max-content;
- }
- .writeTop-item {
- border: 1px solid #de4444;
- }
- .punctuation-box {
- position: relative;
- width: 100%;
- height: 100%;
- .character-target-div {
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- .svg-icon {
- width: 100%;
- height: 100%;
- }
- }
- h3 {
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- font-family: FZJCGFKTK;
- text-align: center;
- font-weight: normal;
- }
- }
- </style>
|