|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div class="cread" v-loading="loading">
|
|
|
- <Header />
|
|
|
+ <Header :projectShow="true" />
|
|
|
<div class="main" v-if="!isPreview">
|
|
|
<div class="from">
|
|
|
<div class="type">
|
|
@@ -81,6 +81,7 @@
|
|
|
style="width: 60px; text-align: center"
|
|
|
v-model="from.writeBoxNumber"
|
|
|
type="number"
|
|
|
+ class="numbre-input"
|
|
|
></el-input>
|
|
|
<span style="margin-left: 8px">{{
|
|
|
typeIndex == 0 ? "行" : "句"
|
|
@@ -92,6 +93,7 @@
|
|
|
style="width: 60px; text-align: center"
|
|
|
v-model="from.miaoRedBoxNumber"
|
|
|
type="number"
|
|
|
+ class="numbre-input"
|
|
|
></el-input>
|
|
|
<span style="margin-left: 8px">{{
|
|
|
typeIndex == 0 ? "格" : "句"
|
|
@@ -103,6 +105,7 @@
|
|
|
style="width: 60px; text-align: center"
|
|
|
v-model="from.lastNullrow"
|
|
|
type="number"
|
|
|
+ class="numbre-input"
|
|
|
></el-input>
|
|
|
<span style="margin-left: 8px">行</span>
|
|
|
</div>
|
|
@@ -193,7 +196,7 @@
|
|
|
<el-input placeholder="请输入" v-model="saveName"> </el-input>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
<el-button @click="handleClose">取 消</el-button>
|
|
|
- <el-button type="primary" @click="">确 定</el-button>
|
|
|
+ <el-button type="primary" @click="handleClose">确 定</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
</div>
|
|
@@ -239,6 +242,7 @@ export default {
|
|
|
previewIndex: 0,
|
|
|
htmlTitle: "1",
|
|
|
saveShow: false,
|
|
|
+ writetableShow: true,
|
|
|
};
|
|
|
},
|
|
|
//计算属性 类似于data概念
|
|
@@ -877,7 +881,7 @@ export default {
|
|
|
left: 0;
|
|
|
top: 64px;
|
|
|
width: 100%;
|
|
|
- height: 100%;
|
|
|
+ min-height: 100%;
|
|
|
background: #f2f2f2;
|
|
|
> img {
|
|
|
width: 40px;
|
|
@@ -888,8 +892,8 @@ export default {
|
|
|
right: 31px;
|
|
|
}
|
|
|
.preview_main {
|
|
|
- padding-top: 100px;
|
|
|
- width: 667px;
|
|
|
+ padding: 24px 0;
|
|
|
+ width: 740px;
|
|
|
margin: 0 auto;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
@@ -974,8 +978,11 @@ export default {
|
|
|
.el-switch__label.is-active {
|
|
|
color: #000000;
|
|
|
}
|
|
|
- .el-input__inner {
|
|
|
- text-align: right;
|
|
|
+ .numbre-input{
|
|
|
+ .el-input__inner {
|
|
|
+ padding: 0;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|