|
@@ -1,22 +1,27 @@
|
|
|
<template>
|
|
|
<div class="borderless">
|
|
|
- <div class="main-head">
|
|
|
- <div class="main-back">
|
|
|
+ <div class="customer-head">
|
|
|
+ <div class="customer-back">
|
|
|
<el-button type="danger" style="border: none;background: none;color: red" icon="el-icon-arrow-left"
|
|
|
@click="backToList">返回列表
|
|
|
</el-button>
|
|
|
- <el-button type="success"
|
|
|
- class="el-button--small-yh add-customer-btn-two"
|
|
|
- :disabled="true"
|
|
|
- @click.stop="addMainProject">复制新单
|
|
|
- </el-button>
|
|
|
- <el-button class="el-button--small-yh add-customer-btn" type="primary"
|
|
|
- @click.stop="editMainProject"
|
|
|
- >{{this.id?"确认修改" :"确认新增"}}
|
|
|
- </el-button>
|
|
|
+ <div class="upper_right_button">
|
|
|
+ <el-button type="success"
|
|
|
+ size="small"
|
|
|
+ class="el-button--small-yh "
|
|
|
+ :disabled="true"
|
|
|
+ @click.stop="addMainProject">复制新单
|
|
|
+ </el-button>
|
|
|
+ <el-button class="el-button--small-yh "
|
|
|
+ type="primary"
|
|
|
+ @click.stop="editMainProject"
|
|
|
+ size="small"
|
|
|
+ >{{this.id?"确认修改" :"确认新增"}}
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div style="margin-top: 60px">
|
|
|
+ <div class="customer-main">
|
|
|
<containerTitle title="基础信息"></containerTitle>
|
|
|
<basic-container>
|
|
|
<el-form :model="form" ref="form" label-width="100px" class="demo-ruleForm">
|
|
@@ -1063,6 +1068,12 @@
|
|
|
box-shadow: 0 4px 12px 0px rgba(232, 232, 235, 1);
|
|
|
z-index: 999;
|
|
|
}
|
|
|
+ .upper_right_button{
|
|
|
+ display: flex;
|
|
|
+ position: fixed;
|
|
|
+ right: 12px;
|
|
|
+ top: 47px;
|
|
|
+ }
|
|
|
.main-back {
|
|
|
cursor: pointer;
|
|
|
line-height: 62px;
|
|
@@ -1074,17 +1085,10 @@
|
|
|
overflow: hidden;
|
|
|
max-height: 660px;
|
|
|
}
|
|
|
- .add-customer-btn-two {
|
|
|
- position: fixed;
|
|
|
- right: 150px;
|
|
|
- top: 115px;
|
|
|
- }
|
|
|
- .add-customer-btn {
|
|
|
- position: fixed;
|
|
|
- right: 36px;
|
|
|
- top: 115px;
|
|
|
- }
|
|
|
::v-deep .el-form-item {
|
|
|
margin-bottom: 0;
|
|
|
}
|
|
|
+ ::v-deep .el-form-item__content{
|
|
|
+ line-height: 32px;
|
|
|
+ }
|
|
|
</style>
|