This commit is contained in:
parent
7fa39a3ea6
commit
ba9949b727
|
|
@ -193,3 +193,12 @@ aside {
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
border-top: 1px solid #f0f0f0;
|
border-top: 1px solid #f0f0f0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.fixed-bottom {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 15px;
|
||||||
|
right: 15px;
|
||||||
|
width: 100%;
|
||||||
|
background-color: #fff;
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -150,6 +150,7 @@ onMounted(() => {
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.monthly-add-form {
|
.monthly-add-form {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
padding-bottom: 30px;
|
||||||
|
|
||||||
.form-section {
|
.form-section {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
|
|
|
||||||
|
|
@ -68,7 +68,7 @@
|
||||||
<!-- 人员选择弹窗 -->
|
<!-- 人员选择弹窗 -->
|
||||||
<ComDialog :dialog-config="managerDialogConfig" @closeDialogOuter="onCloseDialogOuter">
|
<ComDialog :dialog-config="managerDialogConfig" @closeDialogOuter="onCloseDialogOuter">
|
||||||
<template #outerContent>
|
<template #outerContent>
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20" style="padding-bottom: 30px">
|
||||||
<el-col :span="16">
|
<el-col :span="16">
|
||||||
<div class="person-search-bar">
|
<div class="person-search-bar">
|
||||||
<el-input
|
<el-input
|
||||||
|
|
@ -150,7 +150,7 @@
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row class="common-btn-row" justify="end" style="margin-top: 16px">
|
<el-row class="common-btn-row fixed-bottom">
|
||||||
<ComButton plain type="info" @click="managerDialogConfig.outerVisible = false">
|
<ComButton plain type="info" @click="managerDialogConfig.outerVisible = false">
|
||||||
取消
|
取消
|
||||||
</ComButton>
|
</ComButton>
|
||||||
|
|
|
||||||
|
|
@ -68,7 +68,7 @@
|
||||||
<ComDialog :dialog-config="dialogConfig" @closeDialogOuter="onCloseDialogOuter">
|
<ComDialog :dialog-config="dialogConfig" @closeDialogOuter="onCloseDialogOuter">
|
||||||
<template #outerContent>
|
<template #outerContent>
|
||||||
<AddForm ref="addFormRef" />
|
<AddForm ref="addFormRef" />
|
||||||
<el-row class="common-btn-row">
|
<el-row class="common-btn-row fixed-bottom">
|
||||||
<ComButton plain type="info" @click="onHandleCancel">取消</ComButton>
|
<ComButton plain type="info" @click="onHandleCancel">取消</ComButton>
|
||||||
<ComButton @click="onHandleSave">保存</ComButton>
|
<ComButton @click="onHandleSave">保存</ComButton>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
|
||||||
|
|
@ -79,10 +79,7 @@ import dayjs from 'dayjs'
|
||||||
const { proxy } = getCurrentInstance()
|
const { proxy } = getCurrentInstance()
|
||||||
const formRef = ref(null)
|
const formRef = ref(null)
|
||||||
const loading = ref(false)
|
const loading = ref(false)
|
||||||
const tableData = ref([
|
const tableData = ref([])
|
||||||
{ name: '项目1', workTask: '工作任务1' },
|
|
||||||
{ name: '项目2', workTask: '工作任务2' },
|
|
||||||
])
|
|
||||||
const selectedRows = ref([])
|
const selectedRows = ref([])
|
||||||
|
|
||||||
const formData = ref({
|
const formData = ref({
|
||||||
|
|
@ -143,6 +140,7 @@ onMounted(() => {
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.monthly-add-form {
|
.monthly-add-form {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
padding-bottom: 30px;
|
||||||
|
|
||||||
.form-section {
|
.form-section {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
|
|
|
||||||
|
|
@ -484,7 +484,7 @@
|
||||||
<!-- 人员选择弹窗(使用封装的 ComDialog) -->
|
<!-- 人员选择弹窗(使用封装的 ComDialog) -->
|
||||||
<ComDialog :dialog-config="managerDialogConfig" @closeDialogOuter="onCloseDialogOuter">
|
<ComDialog :dialog-config="managerDialogConfig" @closeDialogOuter="onCloseDialogOuter">
|
||||||
<template #outerContent>
|
<template #outerContent>
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20" style="padding-bottom: 30px">
|
||||||
<el-col :span="16">
|
<el-col :span="16">
|
||||||
<div class="person-search-bar">
|
<div class="person-search-bar">
|
||||||
<el-input
|
<el-input
|
||||||
|
|
@ -566,7 +566,7 @@
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row class="common-btn-row" justify="end" style="margin-top: 16px">
|
<el-row class="common-btn-row fixed-bottom">
|
||||||
<ComButton plain type="info" @click="managerDialog.visible = false">
|
<ComButton plain type="info" @click="managerDialog.visible = false">
|
||||||
取消
|
取消
|
||||||
</ComButton>
|
</ComButton>
|
||||||
|
|
|
||||||
|
|
@ -59,7 +59,7 @@
|
||||||
<ComDialog :dialog-config="dialogConfig" @closeDialogOuter="onCloseDialogOuter">
|
<ComDialog :dialog-config="dialogConfig" @closeDialogOuter="onCloseDialogOuter">
|
||||||
<template #outerContent>
|
<template #outerContent>
|
||||||
<AddForm ref="addFormRef" />
|
<AddForm ref="addFormRef" />
|
||||||
<el-row class="common-btn-row">
|
<el-row class="common-btn-row fixed-bottom">
|
||||||
<ComButton plain type="info" @click="onHandleCancel">取消</ComButton>
|
<ComButton plain type="info" @click="onHandleCancel">取消</ComButton>
|
||||||
<ComButton @click="onHandleSave">保存</ComButton>
|
<ComButton @click="onHandleSave">保存</ComButton>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue