|
@@ -2,7 +2,9 @@
|
|
<template>
|
|
<template>
|
|
<div :class="['Big-Book-PictureBox']" v-if="isShowTemp">
|
|
<div :class="['Big-Book-PictureBox']" v-if="isShowTemp">
|
|
<!-- <ul class="Big-Book-PictureBox-item" v-for="(item,index) in curQue.queList" :key="index"> -->
|
|
<!-- <ul class="Big-Book-PictureBox-item" v-for="(item,index) in curQue.queList" :key="index"> -->
|
|
|
|
+ <h2>{{curQue.title}}</h2>
|
|
<li v-for="(items, indexs) in curQue.option" :key="indexs">
|
|
<li v-for="(items, indexs) in curQue.option" :key="indexs">
|
|
|
|
+ <span class="xuhao" v-if="items.xuhao">{{items.xuhao}}</span>
|
|
<template v-if="ChildType != 'image_gdcy' && items.hanziSite == 'top'">
|
|
<template v-if="ChildType != 'image_gdcy' && items.hanziSite == 'top'">
|
|
<div class="hanzi-box hanzi-box-top" v-if="items.pinyin || items.hanzi">
|
|
<div class="hanzi-box hanzi-box-top" v-if="items.pinyin || items.hanzi">
|
|
<span
|
|
<span
|
|
@@ -32,7 +34,6 @@
|
|
</div>
|
|
</div>
|
|
</el-image>
|
|
</el-image>
|
|
</div>
|
|
</div>
|
|
-
|
|
|
|
<template
|
|
<template
|
|
v-if="
|
|
v-if="
|
|
ChildType != 'image_gdcy' &&
|
|
ChildType != 'image_gdcy' &&
|
|
@@ -824,12 +825,38 @@ export default {
|
|
// margin: 0;
|
|
// margin: 0;
|
|
// display: flex;
|
|
// display: flex;
|
|
// flex-flow: wrap;
|
|
// flex-flow: wrap;
|
|
|
|
+ h2{
|
|
|
|
+ word-break: break-word;
|
|
|
|
+ font-family: 'robot';
|
|
|
|
+ font-weight: 700;
|
|
|
|
+ font-size: 20px;
|
|
|
|
+ line-height: 150%;
|
|
|
|
+ margin: 0 0 16px;
|
|
|
|
+ color: #000000;
|
|
|
|
+ }
|
|
li {
|
|
li {
|
|
list-style: none;
|
|
list-style: none;
|
|
padding: 8px;
|
|
padding: 8px;
|
|
border-radius: 8px;
|
|
border-radius: 8px;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
background: #fff;
|
|
background: #fff;
|
|
|
|
+ position: relative;
|
|
|
|
+ .xuhao{
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: -4px;
|
|
|
|
+ left: -4px;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ font-size: 12px;
|
|
|
|
+ line-height: 14px;
|
|
|
|
+ font-family: 'robot';
|
|
|
|
+ color: #FFFFFF;
|
|
|
|
+ padding: 1px 4px;
|
|
|
|
+ background: #7663EC;
|
|
|
|
+ border-radius: 8px;
|
|
|
|
+ display: block;
|
|
|
|
+ min-width: 16px;
|
|
|
|
+ text-align: center;
|
|
|
|
+ }
|
|
.option_main {
|
|
.option_main {
|
|
display: flex;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-wrap: wrap;
|