|
@@ -16,13 +16,13 @@
|
|
|
<el-form>
|
|
|
<el-form-item label="文章长度">
|
|
|
<div style="text-align: right; width: 100%">
|
|
|
- <el-button plain :class="{ act: form.type === '日报' }">
|
|
|
+ <el-button @click="form.type = '日报'" plain :class="{ act: form.type === '日报' }">
|
|
|
日报
|
|
|
</el-button>
|
|
|
- <el-button plain :class="{ act: form.type === '周报' }">
|
|
|
+ <el-button @click="form.type = '周报'" plain :class="{ act: form.type === '周报' }">
|
|
|
周报
|
|
|
</el-button>
|
|
|
- <el-button plain :class="{ act: form.type === '月报' }">
|
|
|
+ <el-button @click="form.type = '月报'" plain :class="{ act: form.type === '月报' }">
|
|
|
月报
|
|
|
</el-button>
|
|
|
</div>
|
|
@@ -86,7 +86,7 @@
|
|
|
<el-tooltip effect="dark" content="左侧导入" placement="top">
|
|
|
<el-icon
|
|
|
@click="() => inputText(item.text)"
|
|
|
- style="
|
|
|
+ style="
|
|
|
left: 50;
|
|
|
top: 50%;
|
|
|
transform: translate(-50%, -50%);
|
|
@@ -246,7 +246,6 @@ const get = p => {
|
|
|
}
|
|
|
.item {
|
|
|
width: 100%;
|
|
|
- min-height: 45px;
|
|
|
-webkit-box-sizing: border-box;
|
|
|
box-sizing: border-box;
|
|
|
margin-bottom: 20px;
|