Commit 666d1e8a authored by zhengke's avatar zhengke

修改

parent 50056dcd
...@@ -99,13 +99,13 @@ ...@@ -99,13 +99,13 @@
<q-card-section class="q-pt-none scroll" style="max-height: 70vh"> <q-card-section class="q-pt-none scroll" style="max-height: 70vh">
<!-- <div class="text-caption q-mb-lg q-px-md text-grey-6">问题信息</div> --> <!-- <div class="text-caption q-mb-lg q-px-md text-grey-6">问题信息</div> -->
<div class="row wrap"> <div class="row wrap">
<div class="col-12" v-if="objOption.QuestionId==0"> <div class="col-12" v-if="objOption.QuestionId==0" style="margin-bottom:20px">
题型 题型
<template v-for="(fItem,fIndex) in firstTypeList"> <template v-for="(fItem,fIndex) in firstTypeList">
<q-btn :key="fIndex" color="primary" :label="fItem.Name" style="margin-left:5px;" <q-btn :key="fIndex" color="accent" :label="fItem.Name" style="margin-left:5px;"
@click="onItemClick(fItem)" /> @click="onItemClick(fItem)" />
</template> </template>
<q-btn-dropdown color="primary" label="更多" style="margin-left:5px;"> <q-btn-dropdown color="accent" label="更多" style="margin-left:5px;">
<q-list> <q-list>
<q-item v-for="(fItem,fIndex) in secondTypeList" @click="onItemClick(fItem)" clickable v-close-popup <q-item v-for="(fItem,fIndex) in secondTypeList" @click="onItemClick(fItem)" clickable v-close-popup
:key="fIndex"> :key="fIndex">
...@@ -160,7 +160,7 @@ ...@@ -160,7 +160,7 @@
</sharing-choose> </sharing-choose>
<br /> <br />
<div class="col-12"> <div class="col-12">
<div style="margin-bottom:20px;">答案解析</div> <div style="margin:20px 0;">答案解析</div>
<UeEditor v-model="objOption.AnswerParse" :config="config" ref="AnswerParse"></UeEditor> <UeEditor v-model="objOption.AnswerParse" :config="config" ref="AnswerParse"></UeEditor>
</div> </div>
<br /> <br />
......
...@@ -2,7 +2,9 @@ ...@@ -2,7 +2,9 @@
.page-content p { .page-content p {
margin: 16px 0 0 0 !important; margin: 16px 0 0 0 !important;
} }
.quetion_Title span{
background: transparent!important;
}
</style> </style>
<template> <template>
<div class="page-body"> <div class="page-body">
...@@ -53,7 +55,7 @@ ...@@ -53,7 +55,7 @@
</div> </div>
</template> </template>
<template v-slot:body-cell-Title="props"> <template v-slot:body-cell-Title="props">
<span v-html="props.row.Title"> <span v-html="props.row.Title" class="quetion_Title">
</span> </span>
</template> </template>
<template v-slot:bottom> <template v-slot:bottom>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment