姜玉琦 2024-09-13 00:16:43 +08:00
commit 8477670166
1 changed files with 18 additions and 4 deletions

View File

@ -28,12 +28,12 @@
</el-row>
</el-tab-pane>
</el-tabs>
<div class="dialog-footer" style="text-align: center;">
</el-form>
<div class="dialog-footer" style="text-align: center;">
<el-button type="primary" @click="submitForm"></el-button>
<el-button @click="doCancel"> </el-button>
</div>
</el-form>
</el-drawer>
</div>
</template>
@ -84,6 +84,7 @@ export default {
this.datas.forEach(it=>{
it.forEach(item=>{
item.money*=1;
item.applicationDate=this.$dt(item.committeeName)
postData.push(item);
})
});
@ -178,7 +179,8 @@ export default {
}
.el-drawer__body {
padding: 12px 24px;
padding: 12px 24px 60px;
position: relative;
.el-row{
.el-input.is-error{
.el-input__inner{
@ -188,6 +190,18 @@ export default {
}
}
.dialog-footer{
position: fixed;
bottom: 0px;
line-height: 60px;
background: #fff;
width: 100%;
text-align: left !important;
box-shadow: 0 8px 10px -5px rgba(0,0,0,.2), 0 16px 24px 2px rgba(0,0,0,.14), 0 6px 30px 5px rgba(0,0,0,.12);
margin-left: -24px;
padding-left: 20%;
}
.el-drawer {
min-width: 800px;
}