123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940 |
- <template>
- <div :class="['writeTable', editCardflag ? '' : 'writeTable-preview writeTable-preview-' + totalNumber]" v-if="data">
- <div class="writeTop" v-bind:class="{ flipped: isFlipped && !editCardflag }">
- <template v-if="editCardflag">
- <div class="left">
- <div class="header-info">
- <el-input v-model="data.headerCon" placeholder="输入页眉"></el-input>
- <el-input class="label" v-model="data.label" placeholder="输入标签"></el-input>
- </div>
- <UploadDrag
- :fileList="data.left.fileList"
- @changeFillId="changeFillId"
- v-if="data.left.fileList.length === 0"
- :disabled="is_preview"
- ></UploadDrag>
- <div class="item-image" v-else>
- <el-image
- style="width: 568px; height: 294px"
- :src="data.left.fileList[0].fileUrl"
- :preview-src-list="[data.left.fileList[0].fileUrl]"
- fit="contain"
- />
- <span class="item-image-del" @click="handleDeleteImg"><i class="el-icon-delete"></i></span>
- </div>
- <div style="display: flex; flex-wrap: wrap">
- <div class="item-con">
- <label>字词</label>
- <el-input v-model="data.left.con" placeholder="输入" @blur="handleBlurCon"></el-input>
- </div>
- <div class="item-con">
- <label>拼音</label>
- <el-input
- class="pinyin"
- v-model="data.right.pinyin"
- placeholder="输入"
- @change="handleChangePinyin"
- ></el-input>
- </div>
- <div class="item-con">
- <label>词性</label>
- <el-input v-model="data.right.cixing" placeholder="输入"></el-input>
- </div>
- <div class="item-con">
- <label>字词</label>
- <el-radio v-model="data.right.hideHanzi" :label="true">隐藏</el-radio>
- <el-radio v-model="data.right.hideHanzi" :label="false">显示</el-radio>
- </div>
- </div>
- <a class="del-btn" @click="handleDelItem"><i class="el-icon-delete"></i></a>
- </div>
- <div class="right">
- <div class="config-box">
- <span class="title">主题颜色</span>
- <el-color-picker v-model="data.borderColor" style="margin-right: 16px"></el-color-picker>
- <span class="title">页眉颜色</span>
- <el-color-picker v-model="data.fontColor" style="margin-right: 16px"></el-color-picker>
- <span class="title">页眉对齐</span>
- <el-radio-group v-model="data.fontAlign">
- <el-radio label="left">左对齐</el-radio>
- <el-radio label="center">居中对齐</el-radio>
- </el-radio-group>
- </div>
- <label>释义</label>
- <el-input type="textarea" :rows="3" v-model="data.right.definition" placeholder="请输入"></el-input>
- <label>搭配</label>
- <el-input type="textarea" :rows="3" v-model="data.right.collocation" placeholder="请输入"></el-input>
- <label>例句</label>
- <el-input type="textarea" :rows="3" v-model="data.right.exampleSent" placeholder="请输入"></el-input>
- </div>
- </template>
- <template v-else>
- <div
- class="left left-preview"
- :class="[data.left.fileList.length === 0 ? 'left-big' : '']"
- v-if="(isPreview && showLeft) || !isPreview"
- :style="{
- borderColor: data.borderColor,
- padding:
- data.left.con && (data.headerCon || data.label)
- ? ''
- : !data.left.con && (data.headerCon || data.label)
- ? '40px 12px 0 12px'
- : '12px',
- }"
- >
- <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: totalNumber < 3 ? '368px' : '318px',
- height:
- totalNumber < 3
- ? data.left.con && (data.headerCon || data.label)
- ? '240px'
- : !data.left.con && (data.headerCon || data.label)
- ? '280px'
- : '280px'
- : data.left.con && !data.right.hideHanzi && (data.headerCon || data.label)
- ? '210px'
- : !data.left.con && (data.headerCon || data.label)
- ? '232px'
- : '232px',
- }"
- :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' : '']"
- v-if="data.left.con && !data.right.hideHanzi"
- >
- {{ data.left.con }}
- </h2>
- <a class="overturn-btn" v-if="isPreview" @click="changeShowLeft"><i class="el-icon-refresh"></i></a>
- </div>
- <div
- class="right right-preview left-preview"
- :class="[isPreview ? 'right-preview-rota' : '']"
- v-if="(isPreview && !showLeft) || !isPreview"
- :style="{
- borderColor: data.borderColor,
- paddingTop:
- totalNumber < 3
- ? data.right.collocation || data.right.exampleSent || data.right.definition
- ? ''
- : '60px'
- : data.right.collocation || data.right.exampleSent || data.right.definition
- ? ''
- : '40px',
- }"
- >
- <div class="header-info-preview">
- <h5 :style="{ textAlign: data.fontAlign }">{{ data.headerCon }}</h5>
- <label :style="{ background: data.borderColor }">{{ data.label }}</label>
- </div>
- <div
- :style="{
- display: 'flex',
- justifyContent:
- !(data.right.collocation && data.right.exampleSent) && data.left.con.length < 4 ? 'center' : 'auto',
- columnGap: '16px',
- }"
- >
- <div style="width: max-content" v-if="data.right.hz_info.length > 0">
- <AudioPlay
- :style="{ background: data.borderColor }"
- :file-id="data.right.audio_file"
- v-if="data.right.audio_file"
- />
- <p
- :style="{ color: data.borderColor }"
- v-if="data.right.pinyin && data.right.pinyin.split(' ').length === 1"
- class="pinyin-box"
- >
- {{ data.right.pinyin }}
- </p>
- <div class="hz-box">
- <div class="hz-item" v-for="(itemh, indexh) in data.right.hz_info" :key="indexh">
- <p
- :style="{ color: data.borderColor }"
- v-if="data.right.pinyin && data.right.pinyin.split(' ').length > 1"
- >
- {{ 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-' + pageNumber + '-' + 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) && data.left.con.length < 4"
- :style="{
- flex: '1',
- marginTop:
- totalNumber < 3 ? (data.right.audio_file ? '85px' : '27px') : data.right.audio_file ? '73px' : '27px',
- }"
- >
- <div v-if="data.right.cixing">
- <p>词性:{{ data.right.cixing }}</p>
- </div>
- <div v-if="data.right.definition">
- <p>释义:{{ data.right.definition }}</p>
- </div>
- </div>
- </div>
- <div
- class="definition-box"
- :style="{
- width:
- !(data.right.collocation || data.right.exampleSent) && data.left.con.length < 4
- ? totalNumber < 3
- ? data.right.hz_info.length * 86 + 'px'
- : data.right.hz_info.length * 78 + 'px'
- : '',
- margin:
- !(data.right.collocation || data.right.exampleSent) && data.left.con.length < 4
- ? '16px auto 0 auto'
- : '',
- }"
- v-if="data.right.collocation || data.right.exampleSent || data.right.definition || data.right.cixing"
- >
- <template v-if="!(data.right.collocation || data.right.exampleSent) || data.left.con.length >= 4">
- <div v-if="data.right.cixing">
- <label class="card-label">词性:</label>
- <p>{{ data.right.cixing }}</p>
- </div>
- <div v-if="data.right.definition">
- <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">
- <p>例句:{{ data.right.exampleSent }}</p>
- </div>
- </div>
- <a class="overturn-btn" v-if="isPreview" @click="changeShowLeft"><i class="el-icon-refresh"></i></a>
- </div>
- </template>
- </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, getHZChineseInfo } from '@/api/api';
- export default {
- //import引入的组件需要注入到对象中才能使用
- components: {
- StrockplayredlineTable,
- Strockplay,
- Strockred,
- FreewriteLettle,
- UploadDrag,
- AudioPlay,
- },
- props: ['isPreview', 'data', 'pageNumber', 'totalNumber', 'editCardflag', 'none', 'is_preview'],
- data() {
- //这里存放数据
- return {
- ifFreeShow: false,
- activeIndex: null,
- activeColIndex: null,
- fileList: [],
- info: {
- definition: '',
- collocation: '',
- exampleSent: '',
- },
- writer: null,
- audio_file: '',
- loading: false,
- isFlipped: false,
- showLeft: true,
- };
- },
- //计算属性 类似于data概念
- computed: {},
- //监控data中数据变化
- watch: {
- editCardflag: {
- handler: function (val, oldVal) {
- if (val != oldVal) {
- this.showLeft = true;
- this.isFlipped = false;
- }
- },
- deep: true,
- },
- pageNumber: {
- handler: function (val, oldVal) {
- if (val != oldVal) {
- this.initHanziwrite();
- }
- },
- deep: true,
- },
- },
- //方法集合
- methods: {
- ExerciseChangeCurQue(answer, rowIndex, colIndex) {
- if (answer) {
- this.data.list[rowIndex][colIndex].strokes_image_url = answer.strokes_image_url;
- this.data.list[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.left.fileList.push(obj);
- },
- handleDeleteImg() {
- this.data.left.fileList = [];
- },
- initHanziwrite() {
- if (this.data.left.con.trim() && this.data.right.audio_file === '') {
- this.loading = true;
- let MethodName = 'tool-TextToVoiceFile';
- let datas = {
- text: this.data.left.con.trim(),
- };
- getLogin(MethodName, datas)
- .then((res) => {
- this.loading = false;
- if (res.status === 1) {
- this.data.right.audio_file = res.file_id;
- }
- })
- .catch(() => {
- this.loading = false;
- });
- }
- },
- handleDelItem() {
- this.$emit('handleDelItem', this.pageNumber - 1);
- },
- // 获取数据
- handleBlurCon() {
- this.loading = true;
- let con = this.data.left.con.trim();
- let MethodName = 'hz_resource_manager-GetMultHZStrokesContent';
- let data = {
- hz_str: con,
- };
- getLogin(MethodName, data)
- .then((res) => {
- this.loading = false;
- for (let key in res) {
- if (key != 'status' && key != ',' && res[key]) {
- res[key] = JSON.parse(res[key]);
- }
- }
- let hzDetailList = res;
- let hz_list = [];
- con.split('').forEach((items) => {
- let res = JSON.parse(JSON.stringify(hzDetailList[items]));
- let obj = {
- con: items,
- hzDetail: {
- hz_json: res,
- },
- };
- hz_list.push(obj);
- });
- this.data.right.hz_info = hz_list;
- this.data.right.pinyin = cnchar.spell(con, 'array', 'low', 'tone').join(' ');
- let MethodName = 'tool-TextToVoiceFile';
- if (con) {
- let datas = {
- text: con,
- };
- getLogin(MethodName, datas).then((res) => {
- if (res.status === 1) {
- this.data.right.audio_file = res.file_id;
- }
- });
- }
- })
- .catch(() => {
- this.loading = false;
- });
- },
- // 更改拼音
- handleChangePinyin() {
- let pinyin = this.data.right.pinyin.trim().split(' ').join(',');
- let MethodName = 'tool-PinyinToVoiceFile';
- if (this.data.right.pinyin.trim()) {
- let datas = {
- pinyin: pinyin,
- };
- getLogin(MethodName, datas).then((res) => {
- if (res.status === 1) {
- this.data.right.audio_file = res.file_id;
- }
- });
- }
- },
- // 翻面
- changeShowLeft() {
- this.showLeft = !this.showLeft;
- this.isFlipped = !this.isFlipped;
- },
- changeRota() {
- this.isFlipped = false;
- },
- },
- //生命周期 - 创建完成(可以访问当前this实例)
- created() {
- this.initHanziwrite();
- },
- //生命周期 - 挂载完成(可以访问DOM元素)
- mounted() {
- // let _this = this;
- // _this.$nextTick(() => {
- // if (_this.data.hz_info && _this.data.hz_info.length === 1) {
- // _this.initHanziwrite();
- // }
- // });
- },
- //生命周期-创建之前
- beforeCreated() {},
- //生命周期-挂载之前
- beforeMount() {},
- //生命周期-更新之前
- beforUpdate() {},
- //生命周期-更新之后
- updated() {},
- //生命周期-销毁之前
- beforeDestory() {},
- //生命周期-销毁完成
- destoryed() {},
- //如果页面有keep-alive缓存功能,这个函数会触发
- activated() {},
- };
- </script>
- <style lang="scss" scoped>
- .writeTable {
- width: 1208px;
- margin: 0 auto 19px auto;
- // height: 842px;
- box-sizing: border-box;
- perspective: 1000px;
- &-preview {
- width: 100%;
- }
- .writeTop {
- min-height: 350px;
- display: flex;
- column-gap: 8px;
- perspective: 1000px;
- transition: 0.6s;
- transform-style: preserve-3d;
- position: relative;
- .left,
- .right {
- width: 100%;
- min-height: 310px;
- padding: 8px 12px 18px 12px;
- border-radius: 24px;
- background: #fff;
- box-sizing: border-box;
- position: relative;
- border: 4px solid #fff;
- 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;
- // position: absolute;
- backface-visibility: hidden;
- }
- .header-info-preview {
- position: absolute;
- width: 100%;
- left: 0;
- top: 0;
- z-index: 1;
- h5 {
- color: #000;
- font-size: 20px;
- font-weight: 400;
- line-height: 32px;
- padding: 0 12px;
- }
- label {
- position: absolute;
- right: -4px;
- top: -4px;
- border-radius: 0px 8px;
- background: #fff;
- padding: 0px 16px 0px 8px;
- color: #fff;
- font-size: 20px;
- font-weight: 500;
- line-height: 150%;
- }
- }
- .left-big {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .del-btn {
- cursor: pointer;
- border-radius: 40px;
- background: #f56767;
- padding: 5px 8px;
- position: absolute;
- right: 8px;
- bottom: 8px;
- color: #fff;
- font-size: 24px;
- }
- .overturn-btn {
- position: absolute;
- right: 8px;
- bottom: 8px;
- 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: 16px 24px 26px 24px;
- row-gap: 8px;
- .card-label {
- width: 100%;
- color: #4e5969;
- font-size: 14px;
- font-weight: 400;
- line-height: 22px;
- height: 22px;
- }
- :deep .el-textarea {
- height: 64px;
- }
- .config-box {
- display: flex;
- align-items: center;
- width: 100%;
- span {
- color: #000;
- font-size: 14px;
- line-height: 20px;
- margin-right: 8px;
- }
- .el-color-picker {
- height: 32px;
- }
- :deep .el-color-picker__trigger {
- height: 32px;
- }
- .el-radio {
- margin-right: 8px;
- }
- .el-radio-group {
- display: flex;
- }
- :deep .el-radio__input.is-checked .el-radio__inner {
- border-color: #000;
- background: #000;
- }
- :deep .el-radio__input.is-checked + .el-radio__label {
- color: #000;
- }
- }
- }
- .right-preview {
- padding: 36px;
- display: block;
- .pinyin-box {
- color: #de4444;
- font-feature-settings: 'cv01' on;
- font-family: League;
- font-size: 24px;
- line-height: 120%;
- margin-bottom: 8px;
- text-align: center;
- }
- .hz-box {
- width: 100%;
- .hz-item {
- text-align: center;
- :deep .strockplayInner {
- width: 86px;
- height: 86px;
- }
- p {
- color: #de4444;
- font-feature-settings: 'cv01' on;
- font-family: League;
- font-size: 18px;
- line-height: 120%;
- margin-bottom: 8px;
- }
- }
- }
- :deep .audio-wrapper {
- margin: 0 auto 8px auto;
- border-radius: 40px;
- background: #f3f3f3;
- padding: 13px;
- width: 50px;
- height: 50px;
- box-sizing: border-box;
- cursor: pointer;
- .voice-play {
- width: 24px;
- height: 24px;
- }
- }
- .definition-box {
- white-space: pre;
- margin-top: 16px;
- > div {
- display: flex;
- margin-bottom: 8px;
- label,
- p {
- width: 40px;
- color: #000;
- font-size: 16px;
- font-weight: 400;
- line-height: 150%;
- }
- label {
- width: 47px;
- }
- p {
- flex: 1;
- word-break: break-word;
- white-space: pre-wrap;
- }
- }
- }
- }
- .right-preview-rota {
- transform: rotateY(180deg);
- }
- .item-image {
- position: relative;
- // background: #f2f3f5;
- border-radius: 8px;
- overflow: hidden;
- font-size: 0;
- .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);
- font-size: 16px;
- }
- }
- .item-con {
- width: 50%;
- display: flex;
- align-items: center;
- margin-top: 16px;
- 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: 8px;
- color: #000;
- text-align: center;
- font-family: 'FZJCGFKTK';
- font-size: 38px;
- font-weight: 400;
- line-height: 100%;
- &-big {
- font-size: 96px;
- margin-top: 0;
- }
- }
- .writeTop-row {
- display: flex;
- justify-content: center;
- }
- }
- &-preview-3,
- &-preview-4 {
- .writeTop {
- min-height: 310px;
- .left,
- .right {
- padding-top: 30px;
- padding-bottom: 8px;
- }
- .strockplayInner {
- width: 76px !important;
- height: 76px !important;
- }
- .audio-wrapper {
- width: 40px !important;
- height: 40px !important;
- padding: 8px !important;
- }
- }
- }
- .writeTop-nopadding {
- padding-top: 0;
- height: 842px;
- }
- .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(180deg);
- }
- }
- </style>
- <style lang="scss">
- .writeTable {
- input::placeholder {
- font-family: initial;
- }
- input::-webkit-input-placeholder {
- font-family: initial;
- }
- input::-moz-placeholder {
- font-family: initial;
- }
- input:-moz-placeholder {
- font-family: initial;
- }
- input:-ms-input-placeholder {
- font-family: initial;
- }
- .header-info {
- input::placeholder {
- font-size: 16px;
- }
- input::-webkit-input-placeholder {
- font-size: 16px;
- }
- input::-moz-placeholder {
- font-size: 16px;
- }
- input:-moz-placeholder {
- font-size: 16px;
- }
- input:-ms-input-placeholder {
- font-size: 16px;
- }
- }
- }
- </style>
|