|
|
@@ -0,0 +1,476 @@
|
|
|
+<template>
|
|
|
+ <div class="check-article">
|
|
|
+ <div class="main">
|
|
|
+ <div class="main-top">
|
|
|
+ <div style="display: flex">
|
|
|
+ <b>校对拼音</b>
|
|
|
+ </div>
|
|
|
+ <!-- <div class="btn-box">
|
|
|
+ <el-button type="primary" @click="savePinyin">保存</el-button>
|
|
|
+ </div> -->
|
|
|
+ </div>
|
|
|
+ <div class="article">
|
|
|
+ <div v-for="(items, indexs) in data" :key="indexs + 'words'" class="sentence-box">
|
|
|
+ <div
|
|
|
+ class="sentence"
|
|
|
+ :style="{
|
|
|
+ marginRight: items.marginRight ? '8px' : '',
|
|
|
+ color: activeIndex === indexs ? '#F2555A' : '',
|
|
|
+ }"
|
|
|
+ @click="selectItem(items, indexs)"
|
|
|
+ >
|
|
|
+ <span class="pinyin">{{ items.pinyin }}</span>
|
|
|
+ <span
|
|
|
+ class="words"
|
|
|
+ :style="{
|
|
|
+ fontFamily: items.fontFamily,
|
|
|
+ }"
|
|
|
+ >
|
|
|
+ {{ items.wordsName ? items.wordsName : items.onebest }}
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <el-dialog
|
|
|
+ v-if="dialogFlag"
|
|
|
+ :visible.sync="dialogFlag"
|
|
|
+ :show-close="false"
|
|
|
+ :close-on-click-modal="false"
|
|
|
+ :modal-append-to-body="false"
|
|
|
+ :modal="false"
|
|
|
+ width="250px"
|
|
|
+ class="login-dialog"
|
|
|
+ >
|
|
|
+ <div class="check-box">
|
|
|
+ <div class="content">
|
|
|
+ <div class="words-box">
|
|
|
+ <span class="pinyin">
|
|
|
+ {{ itemActive.pinyin }}
|
|
|
+ </span>
|
|
|
+ <span class="words">
|
|
|
+ {{ itemActive.wordsName ? itemActive.wordsName : itemActive.onebest }}
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <el-input v-model="checkPinyinInput" type="text" class="checkPinyinInput" />
|
|
|
+ <p class="tips">
|
|
|
+ 一到四声分别用数字1-4表示。拼音间用空格隔开,儿化音用_代替空格,如“骨朵儿”输入“gu1 duo3_er”。
|
|
|
+ </p>
|
|
|
+ <div class="btn-box">
|
|
|
+ <el-button type="info" size="small" @click="cancleDialog">取消</el-button>
|
|
|
+ <el-button type="primary" size="small" @click="surePinyin">保存</el-button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+// import { publicMethods, reparse } from '@/api/api';
|
|
|
+import th from 'element-ui/lib/locale/lang/th';
|
|
|
+
|
|
|
+export default {
|
|
|
+ components: {},
|
|
|
+ props: ['data'],
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ loading: false,
|
|
|
+ id: '',
|
|
|
+ ArticelData: null,
|
|
|
+ indexArr: [], // 索引数组
|
|
|
+ activeIndex: null,
|
|
|
+ itemActive: null,
|
|
|
+ dialogFlag: false,
|
|
|
+ checkPinyinInput: '',
|
|
|
+ oldInput: '',
|
|
|
+ tableData: [
|
|
|
+ ['ā', 'á', 'ǎ', 'à', 'a'],
|
|
|
+ ['ō', 'ó', 'ǒ', 'ò', 'o'],
|
|
|
+ ['ē', 'é', 'ě', 'è', 'e'],
|
|
|
+ ['ī', 'í', 'ǐ', 'ì', 'i'],
|
|
|
+ ['ū', 'ú', 'ǔ', 'ù', 'u'],
|
|
|
+ ['ǖ', 'ǘ', 'ǚ', 'ǜ', 'ü'],
|
|
|
+ ['Ā', 'Á', 'Â', 'À', 'A'],
|
|
|
+ ['Ō', 'Ó', 'Ô', 'Ò', 'O'],
|
|
|
+ ['Ē', 'É', 'Ê', 'È', 'E'],
|
|
|
+ ['Ī', 'Í', 'Î', 'Ì', 'I'],
|
|
|
+ ['Ū', 'Ú', 'Û', 'Ù', 'U'],
|
|
|
+ ['n', 'ń', 'ň', 'ǹ', 'n'],
|
|
|
+ ['m̄', 'ḿ', 'm', 'm̀', 'm'],
|
|
|
+ ],
|
|
|
+ toneList: [' ', 'ˉ', 'ˊ', 'ˇ', 'ˋ'],
|
|
|
+ };
|
|
|
+ },
|
|
|
+ // 生命周期 - 创建完成(可以访问当前this实例)
|
|
|
+ created() {
|
|
|
+ // this.getArticleData();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ // 获取分析结果
|
|
|
+ getArticleData() {
|
|
|
+ this.loading = true;
|
|
|
+ let newdata = [];
|
|
|
+ this.data.detail.forEach((item) => {
|
|
|
+ if (item.wordsList && item.wordsList.length !== 0) {
|
|
|
+ newdata.push(item);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ // this.ArticelData = JSON.parse(JSON.stringify(newdata));
|
|
|
+ let saveArr = [];
|
|
|
+ let arr = [];
|
|
|
+ let saveIndex = 0;
|
|
|
+ // 添加索引
|
|
|
+ newdata.forEach((item, index) => {
|
|
|
+ arr.push([]);
|
|
|
+ item.wordsList.forEach((items, indexs) => {
|
|
|
+ items.forEach((itemss, indexss) => {
|
|
|
+ let pinyin =
|
|
|
+ this.data.pinyin_type === 'pinyin'
|
|
|
+ ? this.data.property.is_first_sentence_first_hz_pinyin_first_char_upper_case === 'true' && indexss === 0
|
|
|
+ ? itemss.pinyin_up
|
|
|
+ : itemss.pinyin
|
|
|
+ : itemss.pinyin_tone;
|
|
|
+ let obj = {
|
|
|
+ text: itemss.chs,
|
|
|
+ pinyin,
|
|
|
+ paraIndex: item.paraIndex,
|
|
|
+ sentenceIndex: indexs,
|
|
|
+ wordIndex: indexss,
|
|
|
+ marginRight: true,
|
|
|
+ saveIndex,
|
|
|
+ };
|
|
|
+ arr[index].push(obj);
|
|
|
+ let saveObj = {
|
|
|
+ word: itemss.chs,
|
|
|
+ pinyin,
|
|
|
+ // pinyin_lt: itemss.pinyin_lt?itemss.pinyin_lt:''
|
|
|
+ };
|
|
|
+ saveArr.push(saveObj);
|
|
|
+ saveIndex++;
|
|
|
+ });
|
|
|
+ });
|
|
|
+ });
|
|
|
+ this.indexArr = arr;
|
|
|
+ this.ArticelData = saveArr;
|
|
|
+ this.loading = false;
|
|
|
+ },
|
|
|
+ selectItem(item, index) {
|
|
|
+ this.activeIndex = index;
|
|
|
+ this.itemActive = item;
|
|
|
+ this.dialogFlag = true;
|
|
|
+ this.checkPinyinInput = '';
|
|
|
+ },
|
|
|
+ cancleDialog() {
|
|
|
+ this.activeIndex = null;
|
|
|
+ this.itemActive = null;
|
|
|
+ this.checkPinyinInput = '';
|
|
|
+ this.oldInput = '';
|
|
|
+ this.dialogFlag = false;
|
|
|
+ },
|
|
|
+ surePinyin() {
|
|
|
+ this.oldInput = JSON.parse(JSON.stringify(this.checkPinyinInput.trim()));
|
|
|
+ this.handleReplaceTone(this.checkPinyinInput.trim());
|
|
|
+ },
|
|
|
+ handleReplaceTone(e) {
|
|
|
+ let _this = this;
|
|
|
+ _this.$nextTick(() => {
|
|
|
+ let value = e;
|
|
|
+ _this.resArr = [];
|
|
|
+ if (value) {
|
|
|
+ let valueArr = [];
|
|
|
+ value.replace(/\s+/g, ' ');
|
|
|
+ valueArr = value.split(' ');
|
|
|
+ // let reg = /\s+/g;
|
|
|
+ // valueArr = value.split(reg);
|
|
|
+
|
|
|
+ valueArr.forEach((item, index) => {
|
|
|
+ if (this.data.pinyin_type === 'tone') {
|
|
|
+ this.resArr.push([
|
|
|
+ {
|
|
|
+ con: this.toneList[Number(item)],
|
|
|
+ },
|
|
|
+ ]);
|
|
|
+ } else {
|
|
|
+ this.handleValue(item);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ let str = '';
|
|
|
+ setTimeout(() => {
|
|
|
+ _this.resArr.forEach((item) => {
|
|
|
+ str += ' ';
|
|
|
+ item.forEach((sItem) => {
|
|
|
+ if (sItem.number && sItem.con) {
|
|
|
+ let number = Number(sItem.number);
|
|
|
+ let con = sItem.con;
|
|
|
+ let word = _this.addTone(number, con);
|
|
|
+ str += word;
|
|
|
+ } else if (sItem.number) {
|
|
|
+ str += sItem.number;
|
|
|
+ } else if (sItem.con) {
|
|
|
+ str += ` ${sItem.con} `;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ this.checkPinyinInput = str.trim();
|
|
|
+ // this.ArticelData[this.activeIndex].pinyin = this.checkPinyinInput
|
|
|
+ // .replace(/\s+/g, ' ')
|
|
|
+ // .split(/\s+/)
|
|
|
+ // .join(',');
|
|
|
+ this.itemActive.pinyin = this.checkPinyinInput.replace(/\s+/g, '');
|
|
|
+ this.savePinyin();
|
|
|
+ }, 10);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ handleValue(valItem) {
|
|
|
+ let reg = /\d/;
|
|
|
+ let reg2 = /[A-Za-z]+\d/g;
|
|
|
+ let numList = [];
|
|
|
+ let valArr = valItem.split('');
|
|
|
+ if (reg2.test(valItem)) {
|
|
|
+ for (let i = 0; i < valArr.length; i++) {
|
|
|
+ let item = valItem[i];
|
|
|
+ if (reg.test(item)) {
|
|
|
+ let numIndex = numList.length == 0 ? 0 : numList[numList.length - 1].index;
|
|
|
+ let con = valItem.substring(numIndex, i);
|
|
|
+ con = con.replace(/\d/g, '');
|
|
|
+ let obj = {
|
|
|
+ index: i,
|
|
|
+ number: item,
|
|
|
+ con,
|
|
|
+ isTran: true,
|
|
|
+ };
|
|
|
+ numList.push(obj);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ numList = [];
|
|
|
+ }
|
|
|
+ if (numList.length == 0) {
|
|
|
+ this.resArr.push([{ con: valItem }]);
|
|
|
+ } else {
|
|
|
+ this.resArr.push(numList);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ addTone(number, con) {
|
|
|
+ let _this = this;
|
|
|
+ let zmList = ['a', 'o', 'e', 'i', 'u', 'v', 'A', 'O', 'E', 'I', 'U', 'n', 'm'];
|
|
|
+ if (number) {
|
|
|
+ for (let i = 0; i < zmList.length; i++) {
|
|
|
+ let zm = zmList[i];
|
|
|
+ if (con.indexOf(zm) > -1) {
|
|
|
+ let zm2 = _this.tableData[i][number - 1];
|
|
|
+ if (con.indexOf('iu') > -1) {
|
|
|
+ zm2 = _this.tableData[4][number - 1];
|
|
|
+ con = con.replace('u', zm2);
|
|
|
+ } else if (con.indexOf('ui') > -1) {
|
|
|
+ zm2 = _this.tableData[3][number - 1];
|
|
|
+ con = con.replace('i', zm2);
|
|
|
+ } else if (
|
|
|
+ con.indexOf('yv') > -1 ||
|
|
|
+ con.indexOf('jv') > -1 ||
|
|
|
+ con.indexOf('qv') > -1 ||
|
|
|
+ con.indexOf('xv') > -1
|
|
|
+ ) {
|
|
|
+ zm2 = _this.tableData[4][number - 1];
|
|
|
+ con = con.replace('v', zm2);
|
|
|
+ } else {
|
|
|
+ con = con.replace(zm, zm2);
|
|
|
+ }
|
|
|
+
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return con;
|
|
|
+ },
|
|
|
+ savePinyin() {
|
|
|
+ this.$emit('savePinyin', this.activeIndex, this.itemActive.pinyin);
|
|
|
+ this.$message.success('保存成功');
|
|
|
+ this.activeIndex = null;
|
|
|
+ // this.itemActive = null;
|
|
|
+ this.checkPinyinInput = '';
|
|
|
+ this.oldInput = '';
|
|
|
+ this.dialogFlag = false;
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.check-article {
|
|
|
+ min-height: 100%;
|
|
|
+ background: #f6f6f6;
|
|
|
+
|
|
|
+ .wheader {
|
|
|
+ background: #fff;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-button {
|
|
|
+ padding: 5px 16px;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 400;
|
|
|
+ line-height: 22px;
|
|
|
+ color: #4e5969;
|
|
|
+ background: #f2f3f5;
|
|
|
+ border: 1px solid #f2f3f5;
|
|
|
+ border-radius: 2px;
|
|
|
+
|
|
|
+ &.el-button--primary {
|
|
|
+ color: #fff;
|
|
|
+ background: #165dff;
|
|
|
+ border: 1px solid #165dff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .main {
|
|
|
+ background: #fff;
|
|
|
+
|
|
|
+ &-top {
|
|
|
+ position: relative;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin-bottom: 24px;
|
|
|
+
|
|
|
+ b {
|
|
|
+ margin-left: 16px;
|
|
|
+ font-size: 24px;
|
|
|
+ font-weight: 500;
|
|
|
+ line-height: 34px;
|
|
|
+ color: #000;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .go-back {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ width: 60px;
|
|
|
+ padding: 5px 8px;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 400;
|
|
|
+ line-height: 22px;
|
|
|
+ color: #333;
|
|
|
+ cursor: pointer;
|
|
|
+ background: #fff;
|
|
|
+ border: 1px solid #d9d9d9;
|
|
|
+ border-radius: 4px;
|
|
|
+ box-shadow: 0 2px 0 0 rgba(0, 0, 0, 2%);
|
|
|
+
|
|
|
+ .el-icon-arrow-left {
|
|
|
+ margin-right: 8px;
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .article {
|
|
|
+ display: flex;
|
|
|
+ flex-flow: wrap;
|
|
|
+ padding: 8px;
|
|
|
+ background: #fcfcfc;
|
|
|
+ border: 1px solid rgba(0, 0, 0, 8%);
|
|
|
+ border-radius: 2px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .sentence-box {
|
|
|
+ .sentence {
|
|
|
+ margin-top: 8px;
|
|
|
+ color: #000;
|
|
|
+ text-align: center;
|
|
|
+ cursor: pointer;
|
|
|
+
|
|
|
+ .words {
|
|
|
+ display: block;
|
|
|
+ font-size: 20px;
|
|
|
+ font-weight: 400;
|
|
|
+ line-height: 28px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .pinyin {
|
|
|
+ display: block;
|
|
|
+ height: 14px;
|
|
|
+ font-family: 'League';
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 400;
|
|
|
+ line-height: 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.check-box {
|
|
|
+ padding: 24px;
|
|
|
+ background: #fff;
|
|
|
+ border-radius: 4px;
|
|
|
+ box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 25%);
|
|
|
+
|
|
|
+ .content {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+
|
|
|
+ .words-box {
|
|
|
+ color: #000;
|
|
|
+ text-align: center;
|
|
|
+
|
|
|
+ .words {
|
|
|
+ display: block;
|
|
|
+ font-size: 28px;
|
|
|
+ font-weight: 400;
|
|
|
+ line-height: 40px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .pinyin {
|
|
|
+ display: block;
|
|
|
+ height: 20px;
|
|
|
+ font-family: 'League';
|
|
|
+ font-size: 20px;
|
|
|
+ font-weight: 400;
|
|
|
+ line-height: 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .checkPinyinInput {
|
|
|
+ margin: 16px 0 8px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .tips {
|
|
|
+ margin: 0 0 24px;
|
|
|
+ font-size: 12px;
|
|
|
+ font-weight: 400;
|
|
|
+ line-height: 18px;
|
|
|
+ color: #a0a0a0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn-box {
|
|
|
+ text-align: right;
|
|
|
+
|
|
|
+ .el-button {
|
|
|
+ padding: 2px 12px;
|
|
|
+ font-size: 12px;
|
|
|
+ line-height: 20px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|
|
|
+<style lang="scss">
|
|
|
+.check-article {
|
|
|
+ .login-dialog {
|
|
|
+ .el-dialog__header {
|
|
|
+ padding: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-dialog__body {
|
|
|
+ padding: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-input__inner {
|
|
|
+ text-align: center;
|
|
|
+ background: #f3f3f3;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|