|
|
@@ -219,14 +219,13 @@
|
|
|
</el-card>
|
|
|
</el-timeline-item>
|
|
|
</el-timeline>
|
|
|
-
|
|
|
- <el-form-item>
|
|
|
- <el-button @click="onSave(true)" :loading="saving" type="primary">提交</el-button>
|
|
|
- <el-button @click="onSave(false)" :loading="saving" type="success">保存</el-button>
|
|
|
- <el-button @click="onDelete" :loading="saving" type="danger" v-if="formData.id">删除 </el-button>
|
|
|
- <el-button @click="$router.go(-1)">取消</el-button>
|
|
|
- </el-form-item>
|
|
|
</el-form>
|
|
|
+ <div class="btn">
|
|
|
+ <el-button @click="onSave(true)" :loading="saving" type="primary">提交</el-button>
|
|
|
+ <el-button @click="onSave(false)" :loading="saving" type="success">保存</el-button>
|
|
|
+ <el-button @click="onDelete" :loading="saving" type="danger" v-if="formData.id">删除 </el-button>
|
|
|
+ <el-button @click="$router.go(-1)">取消</el-button>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
@@ -532,6 +531,27 @@ export default {
|
|
|
padding: 0 0;
|
|
|
background-color: transparent;
|
|
|
}
|
|
|
+/deep/ .el-form-item__label {
|
|
|
+ font-weight: bold;
|
|
|
+}
|
|
|
+/deep/ .el-input__inner {
|
|
|
+ border: 1px solid #00000069 !important;
|
|
|
+}
|
|
|
+/deep/ .el-timeline-item {
|
|
|
+ padding-bottom: 35px;
|
|
|
+}
|
|
|
+
|
|
|
+.btn {
|
|
|
+ position: fixed;
|
|
|
+ bottom: 0;
|
|
|
+ width: 100%;
|
|
|
+ background: #ffffff;
|
|
|
+ height: 50px;
|
|
|
+ line-height: 50px;
|
|
|
+ z-index: 999;
|
|
|
+ margin-left: -20px;
|
|
|
+ padding-left: 20px;
|
|
|
+}
|
|
|
.label {
|
|
|
text-align: center;
|
|
|
height: 40px;
|
|
|
@@ -561,6 +581,7 @@ export default {
|
|
|
margin-top: 7px;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
+
|
|
|
.name {
|
|
|
width: 70px;
|
|
|
padding-right: 10px;
|