数据同步样式更改
This commit is contained in:
parent
2f37a8cb2e
commit
4b18653bda
|
|
@ -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">
|
||||||
<el-button type="primary" plain @click="operMethod(3)">3.旷工更新(非必)</el-button>
|
<template #content>
|
||||||
<el-button type="primary" plain @click="operMethod(4)">4.法假更新(非必)</el-button>
|
1.考勤人员列表<br>2.基模版数据生成
|
||||||
</el-row>
|
</template>
|
||||||
<el-row style="margin-top: 10px;">
|
<el-button style="margin-left: 10px;" type="primary" plain @click="operMethod(1)">1.模版数据(必须)</el-button>
|
||||||
<el-button type="primary" plain @click="operMethod(5)">5.请假日更新(非必)</el-button>
|
</el-tooltip>
|
||||||
<el-button type="primary" plain @click="operMethod(6)">6.日报表更新(必须)</el-button>
|
<el-tooltip placement="right">
|
||||||
<el-button type="primary" plain @click="operMethod(7)">7.月报表模版(非必)</el-button>
|
<template #content>
|
||||||
<el-button type="primary" plain @click="operMethod(8)">8.月报表更新(必须)</el-button>
|
1.旷工判断
|
||||||
|
</template>
|
||||||
|
<el-button type="primary" plain @click="operMethod(3)">3.旷工更新(非必)</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
<el-tooltip placement="right">
|
||||||
|
<template #content>
|
||||||
|
1.请假数据更新<br>2.更新到前15天<br>3.范围更新只更新最后一天
|
||||||
|
</template>
|
||||||
|
<el-button type="primary" plain @click="operMethod(5)">5.请假日更新(非必)</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
<el-tooltip placement="right">
|
||||||
|
<template #content>
|
||||||
|
1.月报表模版生成
|
||||||
|
</template>
|
||||||
|
<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-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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue