弹框样式调整

This commit is contained in:
Your Name
2023-09-21 16:06:45 +08:00
parent ac1614dcd1
commit 5262a8f01d
8 changed files with 220 additions and 37 deletions
@@ -6,6 +6,7 @@
width="800px"
@close="cancel"
:destroy-on-close="true"
center
>
<el-form ref="form" :model="form" label-width="150px" :disabled="true">
<el-form-item label="案件编号:" prop="caseNum">
@@ -36,10 +37,10 @@
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm" v-if="flag == 0"
>提 交</el-button
<el-button type="primary" @click="submitForm" v-if="flag == 0" class="endbutton"
>确认已缴费</el-button
>
<el-button @click="cancel">取 消</el-button>
<el-button @click="cancel" class="endbutton1">取 消</el-button>
</div>
</el-dialog>
</div>
@@ -76,4 +77,39 @@ export default {
</script>
<style lang="scss" scoped>
::v-deep .el-dialog {
width: 800px;
background: #ffffff;
border-radius: 20px;
}
.endbutton {
width: 124px;
height: 37px;
background: #0072ff;
border-radius: 19px;
span {
width: 32px;
height: 15px;
font-size: 16px;
font-family: Microsoft YaHei;
font-weight: 400;
color: #ffffff;
// line-height: 48px;
}
}
.endbutton1 {
width: 124px;
height: 37px;
background: #ffffff;
border: 1px solid #d0d0d0;
border-radius: 19px;
span {
width: 31px;
height: 13px;
font-size: 16px;
font-family: Microsoft YaHei;
font-weight: 400;
color: #959595;
}
}
</style>