数据同步样式更改

This commit is contained in:
cwchen 2025-02-21 14:11:20 +08:00
parent 2f37a8cb2e
commit 4b18653bda
1 changed files with 69 additions and 11 deletions

View File

@ -315,17 +315,59 @@
></el-date-picker> ></el-date-picker>
</el-form-item> </el-form-item>
</el-row> </el-row>
<el-row style="margin-top: 10px;"> <el-row class="button-row">
<el-button type="primary" plain @click="operMethod(1)">1.模版数据必须</el-button> <el-col class="button-col">
<el-button type="primary" plain @click="operMethod(2)">2.数据拉取必须</el-button> <el-tooltip placement="right">
<template #content>
1.考勤人员列表<br>2.基模版数据生成
</template>
<el-button style="margin-left: 10px;" type="primary" plain @click="operMethod(1)">1.模版数据必须</el-button>
</el-tooltip>
<el-tooltip placement="right">
<template #content>
1.旷工判断
</template>
<el-button type="primary" plain @click="operMethod(3)">3.旷工更新非必</el-button> <el-button type="primary" plain @click="operMethod(3)">3.旷工更新非必</el-button>
<el-button type="primary" plain @click="operMethod(4)">4.法假更新非必</el-button> </el-tooltip>
</el-row> <el-tooltip placement="right">
<el-row style="margin-top: 10px;"> <template #content>
1.请假数据更新<br>2.更新到前15天<br>3.范围更新只更新最后一天
</template>
<el-button type="primary" plain @click="operMethod(5)">5.请假日更新非必</el-button> <el-button type="primary" plain @click="operMethod(5)">5.请假日更新非必</el-button>
<el-button type="primary" plain @click="operMethod(6)">6.日报表更新必须</el-button> </el-tooltip>
<el-tooltip placement="right">
<template #content>
1.月报表模版生成
</template>
<el-button type="primary" plain @click="operMethod(7)">7.月报表模版非必</el-button> <el-button type="primary" plain @click="operMethod(7)">7.月报表模版非必</el-button>
</el-tooltip>
</el-col>
<el-col class="button-col">
<el-tooltip placement="right">
<template #content>
1.考勤数据拉取<br>2.考勤数据更新
</template>
<el-button type="primary" style="margin-left: 10px;" plain @click="operMethod(2)">2.数据拉取必须</el-button>
</el-tooltip>
<el-tooltip placement="right">
<template #content>
1.法假节假日更新
</template>
<el-button type="primary" plain @click="operMethod(4)">4.法假更新非必</el-button>
</el-tooltip>
<el-tooltip placement="right">
<template #content>
1.日报表数据生成<br>2.每次更新数据都要执行
</template>
<el-button type="primary" plain @click="operMethod(6)">6.日报表更新必须</el-button>
</el-tooltip>
<el-tooltip placement="right">
<template #content>
1.月报表更新
</template>
<el-button type="primary" plain @click="operMethod(8)">8.月报表更新必须</el-button> <el-button type="primary" plain @click="operMethod(8)">8.月报表更新必须</el-button>
</el-tooltip>
</el-col>
</el-row> </el-row>
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
@ -884,4 +926,20 @@ export default {
margin-top: 20px; margin-top: 20px;
text-align: right; text-align: right;
} }
.button-row {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.button-col {
display: flex;
flex-direction: column;
align-items: flex-start;
width: 48%;
}
.button-col .el-button {
width: 100%;
margin-bottom: 5px;
}
</style> </style>