修改前端样式

This commit is contained in:
Szn
2022-01-26 15:15:31 +08:00
parent 022a8f6a2c
commit 09c0fa2c30
144 changed files with 22918 additions and 551 deletions

View File

@@ -30,8 +30,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space>
<a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button>
<a-button @click="exportFile">导出excel</a-button>
<a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出excel</a-button>
</a-space>
</a-form-item>
</a-col>
@@ -50,7 +50,7 @@
>
<template #toolbar>
<!-- <a-space>
</a-space> -->
</template>
</ele-pro-table>
@@ -198,15 +198,15 @@ export default {
let sheet = XLSX.utils.aoa_to_sheet(array);
// 合并单元格
sheet['!merges'] = [
{s: {r: 0, c: 0}, e: {r: 2, c: 0}},
{s: {r: 0, c: 1}, e: {r: 0, c: 2}},
{s: {r: 0, c: 3}, e: {r: 0, c: 4}},
{s: {r: 0, c: 5}, e: {r: 0, c: 6}},
{s: {r: 0, c: 0}, e: {r: 2, c: 0}},
{s: {r: 0, c: 1}, e: {r: 0, c: 2}},
{s: {r: 0, c: 3}, e: {r: 0, c: 4}},
{s: {r: 0, c: 5}, e: {r: 0, c: 6}},
{s: {r: 0, c: 7}, e: {r: 0, c: 8}},
{s: {r: 1, c: 1}, e: {r: 1, c: 2}},
{s: {r: 1, c: 3}, e: {r: 1, c: 4}},
{s: {r: 1, c: 5}, e: {r: 1, c: 6}},
{s: {r: 1, c: 7}, e: {r: 1, c: 8}}
{s: {r: 1, c: 1}, e: {r: 1, c: 2}},
{s: {r: 1, c: 3}, e: {r: 1, c: 4}},
{s: {r: 1, c: 5}, e: {r: 1, c: 6}},
{s: {r: 1, c: 7}, e: {r: 1, c: 8}}
];
this.$util.exportSheet(XLSX, sheet, new Date().getTime().toString());
},
@@ -215,4 +215,4 @@ export default {
</script>
<style scoped>
</style>
</style>