修改前端样式

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

22373
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -89,6 +89,20 @@ const airYearRankUrl = "/zhenQiWang/ambientAirZhenqiCityYearComprehensiveAqiRank
const airYearProvincialCapitalRankUrl = "/zhenQiWang/ambientAirZhenqiCityYearComprehensiveAqiRankData/listProvincialCapitalRank"; const airYearProvincialCapitalRankUrl = "/zhenQiWang/ambientAirZhenqiCityYearComprehensiveAqiRankData/listProvincialCapitalRank";
const airPm25YearRankUrl = "/zhenQiWang/ambientAirZhenqiCityYearPm25RankData/page"; const airPm25YearRankUrl = "/zhenQiWang/ambientAirZhenqiCityYearPm25RankData/page";
const airPm25YearProvincialCapitalRankUrl = "/zhenQiWang/ambientAirZhenqiCityYearPm25RankData/listProvincialCapitalRank"; const airPm25YearProvincialCapitalRankUrl = "/zhenQiWang/ambientAirZhenqiCityYearPm25RankData/listProvincialCapitalRank";
//PM2.5爬虫
const getPmNewData = function(data){
return axios.get("/zhenQiWang/ambientAirZhenqiCityYearPm25RankData/crawler",{params:{data}})
}
//月综合指数爬虫
const getMonthNewData = function(data){
return axios.get("/zhenQiWang/ambientAirZhenqiCityMonthComprehensiveAqiRankData/crawler",{params:{data}})
}
//年综合指数爬虫
const getYearNewData = function(data){
return axios.get("/zhenQiWang/ambientAirZhenqiCityYearComprehensiveAqiRankData/crawler",{params:{data}})
}
export { export {
pageBillUrl, pageBillUrl,
saveAirBill, saveAirBill,
@@ -119,5 +133,8 @@ export {
getYearOptions, getYearOptions,
getTrendChart, getTrendChart,
getCityPlace, getCityPlace,
getCountryPlace getCountryPlace,
getMonthNewData,
getYearNewData,
getPmNewData,
} }

View File

@@ -86,7 +86,7 @@ export default {
website: 'Website', website: 'Website',
document: 'Document', document: 'Document',
authorization: 'Authorization', authorization: 'Authorization',
copyright: 'Copyright © 2021 南宁生态环境监测' copyright: 'Copyright © 2021 广西壮族自治区南宁生态环境监测中心'
}, },
logout: { logout: {
title: 'Confirm', title: 'Confirm',

View File

@@ -86,7 +86,7 @@ export default {
website: '官网', website: '官网',
document: '文档', document: '文档',
authorization: '授权', authorization: '授权',
copyright: 'Copyright © 2021 南宁生态环境监测' copyright: 'Copyright © 2021 广西壮族自治区南宁生态环境监测中心'
}, },
logout: { logout: {
title: '提示', title: '提示',

View File

@@ -86,7 +86,7 @@ export default {
website: '官網', website: '官網',
document: '檔案', document: '檔案',
authorization: '授權', authorization: '授權',
copyright: 'Copyright © 2021 南宁生态环境监测' copyright: 'Copyright © 2021 广西壮族自治区南宁生态环境监测中心'
}, },
logout: { logout: {
title: '詢問', title: '詢問',

View File

@@ -238,3 +238,76 @@ export default {
} }
} }
</script> </script>
<style>
/*表头背景颜色和字体*/
.ant-table-thead > tr > th{
background: #40a9ff !important;
color: #FFFFFF !important;
border-left: 1px solid #FFFFFF !important;
border-collapse: collapse;
}
/*表头图标*/
:root .ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up, :root .ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down{
color: #FFFFFF;
}
/*表头白色边框*/
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters{
border-left: 1px solid #FFFFFF !important;
}
/*表格边框线*/
.ant-table-bordered .ant-table-thead > tr > th, .ant-table-bordered .ant-table-tbody > tr > td{
/*border-right: 1px solid #40a9ff !important;*/
}
.ant-table-tbody > tr > td{
border-bottom: 1px solid #40a9ff !important;
border-left: 1px solid #40a9ff !important;
border-collapse: collapse;
}
.ant-table-row-cell-break-word{
border-left: 1px solid #FFFFFF !important;
}
.ant-table-thead > tr > th.ant-table-selection-column, .ant-table-tbody > tr > td.ant-table-selection-column{
border-left: 1px solid #40a9ff !important;
}
/*表格第一列选择框*/
.ant-checkbox-inner{
border: 1px solid #40a9ff !important;
}
/*表格底部的条数*/
.ant-pagination.mini .ant-pagination-total-text, .ant-pagination.mini .ant-pagination-simple-pager{
color: #40a9ff !important;
}
/*下拉框*/
.ant-select:not(.ant-select-customize-input) .ant-select-selector{
border: 1px solid #1890ff !important;
}
/*下拉框后面图标颜色*/
.ant-select-arrow{
color: #1890ff !important;
}
/*输入框*/
.ant-input,
.ant-input-affix-wrapper {
border: 1px solid #1890ff !important
}
.ant-input-affix-wrapper .ant-input{
border: none !important;
}
/*输入框后面图标的颜色*/
.ant-calendar-picker-icon{
color: #1890ff !important;
}
/*输入年份数字狂的颜色*/
.ant-input-number{
border: 1px solid #1890ff !important;
}
.ant-form-inline .ant-form-item{
/*margin-top: 10px !important;*/
}
.ant-form{
margin-bottom: 10px !important;
}
.ant-form-inline{
align-content: center !important;
}
</style>

View File

@@ -85,9 +85,9 @@ function checkStateValue(key, value) {
function getState(setting) { function getState(setting) {
const state = { const state = {
// 侧边栏风格: light(亮色), dark(暗色) // 侧边栏风格: light(亮色), dark(暗色)
sideStyle: 'dark', sideStyle: 'light',
// 顶栏风格: light(亮色), dark(暗色), primary(主色) // 顶栏风格: light(亮色), dark(暗色), primary(主色)
headStyle: 'light', headStyle: 'primary',
// 标签页风格: default(默认), dot(圆点), card(卡片) // 标签页风格: default(默认), dot(圆点), card(卡片)
tabStyle: 'default', tabStyle: 'default',
// 布局风格: side(默认), top(顶栏菜单), mix(混合菜单) // 布局风格: side(默认), top(顶栏菜单), mix(混合菜单)
@@ -105,9 +105,9 @@ function getState(setting) {
// 是否开启多标签 // 是否开启多标签
showTabs: true, showTabs: true,
// logo是否自适应宽度 // logo是否自适应宽度
logoAutoSize: false, logoAutoSize: true,
// 侧栏是否多彩图标 // 侧栏是否多彩图标
colorfulIcon: false, colorfulIcon: true,
// 侧边栏是否只保持一个子菜单展开 // 侧边栏是否只保持一个子菜单展开
sideUniqueOpen: true, sideUniqueOpen: true,
// 是否开启页脚 // 是否开启页脚

View File

@@ -18,7 +18,7 @@
> >
<a-button>数据导入</a-button> <a-button>数据导入</a-button>
</a-upload> </a-upload>
<a-button @click="download">模板下载</a-button> <a-button @click="download" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">模板下载</a-button>
</a-space> </a-space>
</template> </template>
<a-tabs v-model:activeKey="activeKey"> <a-tabs v-model:activeKey="activeKey">

View File

@@ -34,7 +34,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{span: 24}"> <a-form-item class="ele-text-right" :wrapper-col="{span: 24}">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-form> </a-form>

View File

@@ -34,7 +34,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -21,7 +21,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-col> </a-col>
</a-row> </a-row>
@@ -129,7 +129,7 @@
>删除 >删除
</a-button> </a-button>
</a-popconfirm> </a-popconfirm>
<a-button @click="exportData" type="primary">导出</a-button> <a-button @click="exportData" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出</a-button>
</a-space> </a-space>
</template> </template>
<template #action="{ record }"> <template #action="{ record }">

View File

@@ -36,8 +36,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-form> </a-form>

View File

@@ -11,8 +11,8 @@
</a-form-item> </a-form-item>
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form> </a-form>
<!-- 表格 --> <!-- 表格 -->

View File

@@ -11,8 +11,8 @@
</a-form-item> </a-form-item>
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form> </a-form>
<!-- 表格 --> <!-- 表格 -->

View File

@@ -11,8 +11,8 @@
</a-form-item> </a-form-item>
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form> </a-form>
<!-- 表格 --> <!-- 表格 -->

View File

@@ -32,7 +32,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{span: 24}"> <a-form-item class="ele-text-right" :wrapper-col="{span: 24}">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-form> </a-form>

View File

@@ -34,7 +34,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -20,7 +20,7 @@
> >
<a-button type="primary">数据导入</a-button> <a-button type="primary">数据导入</a-button>
</a-upload> </a-upload>
<a-button @click="download">模板下载</a-button> <a-button @click="download" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">模板下载</a-button>
</a-space> </a-space>
</template> </template>

View File

@@ -20,7 +20,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-col> </a-col>
</a-row> </a-row>
@@ -132,7 +132,7 @@
>删除 >删除
</a-button> </a-button>
</a-popconfirm> </a-popconfirm>
<a-button @click="exportData" type="primary">导出</a-button> <a-button @click="exportData" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出</a-button>
</a-space> </a-space>
</template> </template>
<template #action="{ record }"> <template #action="{ record }">

View File

@@ -20,7 +20,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-col> </a-col>
</a-row> </a-row>
@@ -136,7 +136,7 @@
>删除 >删除
</a-button> </a-button>
</a-popconfirm> </a-popconfirm>
<a-button @click="exportData" type="primary">导出</a-button> <a-button @click="exportData" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出</a-button>
</a-space> </a-space>
</template> </template>
<template #action="{ record }"> <template #action="{ record }">

View File

@@ -20,7 +20,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-col> </a-col>
</a-row> </a-row>
@@ -115,7 +115,7 @@
>删除 >删除
</a-button> </a-button>
</a-popconfirm> </a-popconfirm>
<a-button @click="exportData" type="primary">导出</a-button> <a-button @click="exportData" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出</a-button>
</a-space> </a-space>
</template> </template>
<template #action="{ record }"> <template #action="{ record }">

View File

@@ -20,7 +20,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-col> </a-col>
</a-row> </a-row>
@@ -131,7 +131,7 @@
>删除 >删除
</a-button> </a-button>
</a-popconfirm> </a-popconfirm>
<a-button @click="exportData" type="primary">导出</a-button> <a-button @click="exportData" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出</a-button>
</a-space> </a-space>
</template> </template>
<template #action="{ record }"> <template #action="{ record }">

View File

@@ -19,8 +19,8 @@
<a-col :lg="24" :md="24" :sm="24" :xs="24"> <a-col :lg="24" :md="24" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-col> </a-col>
</a-row> </a-row>

View File

@@ -20,8 +20,10 @@
<!-- <a-radio-button :value="2">PM2.5</a-radio-button>--> <!-- <a-radio-button :value="2">PM2.5</a-radio-button>-->
<!-- </a-radio-group>--> <!-- </a-radio-group>-->
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="newData" style="background: #8F54FFFF; border-color: #8F54FFFF;color: #FFFFFF">同步最新</a-button>
<a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form> </a-form>
<!-- 表格 --> <!-- 表格 -->
@@ -44,6 +46,7 @@ import XLSX from "xlsx";
import { import {
airMonthRankUrl, airMonthRankUrl,
airMonthProvincialCapitalRankUrl, airMonthProvincialCapitalRankUrl,
getMonthNewData,
} from "@/api/ecology/atmosphere/air"; } from "@/api/ecology/atmosphere/air";
import locale from "ant-design-vue/es/date-picker/locale/zh_CN"; import locale from "ant-design-vue/es/date-picker/locale/zh_CN";
import moment from "moment"; import moment from "moment";
@@ -153,8 +156,17 @@ export default {
} }
this.reload(); this.reload();
}, },
//同步最新数据
newData(){
getMonthNewData().then( res =>{
this.$notification.open({
message: '温馨提示',
description: res.data.msg,
duration: 2,
});
})
},
exportFile() { exportFile() {
const columns = this.columns; const columns = this.columns;
const arr = []; const arr = [];
const th = columns.map((item) => item.title); const th = columns.map((item) => item.title);

View File

@@ -21,8 +21,9 @@
<a-radio-button :value="2">PM2.5</a-radio-button> <a-radio-button :value="2">PM2.5</a-radio-button>
</a-radio-group> </a-radio-group>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="newData" style="background: #8F54FFFF; border-color: #8F54FFFF;color: #FFFFFF">同步最新</a-button>
<a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-row> </a-row>
</a-form> </a-form>
@@ -48,7 +49,9 @@ import {
airYearRankUrl, airYearRankUrl,
airPm25YearRankUrl, airPm25YearRankUrl,
airYearProvincialCapitalRankUrl, airYearProvincialCapitalRankUrl,
airPm25YearProvincialCapitalRankUrl airPm25YearProvincialCapitalRankUrl,
getYearNewData,
getPmNewData,
} from "@/api/ecology/atmosphere/air"; } from "@/api/ecology/atmosphere/air";
import locale from "ant-design-vue/es/date-picker/locale/zh_CN"; import locale from "ant-design-vue/es/date-picker/locale/zh_CN";
import moment from "moment"; import moment from "moment";
@@ -171,6 +174,26 @@ export default {
} }
this.reload(); this.reload();
}, },
//同步最新数据
newData(){
if (this.rankType == 1) {
getYearNewData().then( res =>{
this.$notification.open({
message: '温馨提示',
description: res.data.msg,
duration: 2,
});
})
} else {
getPmNewData().then( res =>{
this.$notification.open({
message: '温馨提示',
description: res.data.msg,
duration: 2,
});
})
}
},
exportFile() { exportFile() {
const columns = this.columns; const columns = this.columns;
@@ -190,4 +213,5 @@ export default {
</script> </script>
<style scoped lang="less"> <style scoped lang="less">
</style> </style>

View File

@@ -22,8 +22,8 @@
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form> </a-form>

View File

@@ -31,8 +31,8 @@
<a-col :lg="24" :md="24" :sm="24" :xs="24"> <a-col :lg="24" :md="24" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-col> </a-col>
</a-row> </a-row>

View File

@@ -25,8 +25,8 @@
<a-col :lg="24" :md="24" :sm="24" :xs="24"> <a-col :lg="24" :md="24" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-col> </a-col>
</a-row> </a-row>

View File

@@ -34,8 +34,8 @@
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form> </a-form>
<!-- 表格 --> <!-- 表格 -->

View File

@@ -24,8 +24,8 @@
</a-form-item> </a-form-item>
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form> </a-form>
<!-- 表格 --> <!-- 表格 -->

View File

@@ -18,7 +18,7 @@
> >
<a-button type="primary">数据导入</a-button> <a-button type="primary">数据导入</a-button>
</a-upload> </a-upload>
<a-button @click="download">模板下载</a-button> <a-button @click="download" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">模板下载</a-button>
</a-space> </a-space>
</template> </template>
<a-tabs v-model:activeKey="activeKey"> <a-tabs v-model:activeKey="activeKey">

View File

@@ -35,7 +35,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{span: 24}"> <a-form-item class="ele-text-right" :wrapper-col="{span: 24}">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-form> </a-form>

View File

@@ -39,7 +39,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -20,7 +20,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-col> </a-col>
</a-row> </a-row>
@@ -139,7 +139,7 @@
>删除 >删除
</a-button> </a-button>
</a-popconfirm> </a-popconfirm>
<a-button @click="exportData" type="primary">导出</a-button> <a-button @click="exportData" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出</a-button>
</a-space> </a-space>
</template> </template>
<template #action="{ record }"> <template #action="{ record }">

View File

@@ -20,7 +20,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-col> </a-col>
</a-row> </a-row>
@@ -145,7 +145,7 @@
> >
<a-button>导入</a-button> <a-button>导入</a-button>
</a-upload> </a-upload>
<a-button @click="exportData" type="primary">导出</a-button> <a-button @click="exportData" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出</a-button>
</a-space> </a-space>
</template> </template>
<template #action="{ record }"> <template #action="{ record }">

View File

@@ -31,8 +31,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -73,8 +73,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -30,8 +30,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -30,8 +30,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -18,7 +18,7 @@
> >
<a-button type="primary">数据导入</a-button> <a-button type="primary">数据导入</a-button>
</a-upload> </a-upload>
<a-button @click="download">模板下载</a-button> <a-button @click="download" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">模板下载</a-button>
</a-space> </a-space>
</template> </template>
<a-tabs v-model:activeKey="activeKey"> <a-tabs v-model:activeKey="activeKey">

View File

@@ -34,7 +34,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{span: 24}"> <a-form-item class="ele-text-right" :wrapper-col="{span: 24}">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-form> </a-form>

View File

@@ -45,7 +45,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -20,7 +20,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-col> </a-col>
</a-row> </a-row>
@@ -140,7 +140,7 @@
>删除 >删除
</a-button> </a-button>
</a-popconfirm> </a-popconfirm>
<a-button @click="exportData" type="primary">导出</a-button> <a-button @click="exportData" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出</a-button>
</a-space> </a-space>
</template> </template>
<template #action="{ record }"> <template #action="{ record }">

View File

@@ -21,7 +21,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-col> </a-col>
</a-row> </a-row>
@@ -167,7 +167,7 @@
> >
<a-button>导入</a-button> <a-button>导入</a-button>
</a-upload> </a-upload>
<a-button @click="exportData" type="primary">导出</a-button> <a-button @click="exportData" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出</a-button>
</a-space> </a-space>
</template> </template>
<template #action="{ record }"> <template #action="{ record }">

View File

@@ -32,8 +32,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-form> </a-form>

View File

@@ -84,8 +84,8 @@
<a-form-item class="ele-text-left" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-left" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -23,8 +23,8 @@
<a-form-item class="ele-text-left" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-left" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-form> </a-form>

View File

@@ -14,7 +14,7 @@
<!-- 搜索表单 --> <!-- 搜索表单 -->
<a-form :model="where" layout="inline" :labelCol="{ offset: 1 }"> <a-form :model="where" layout="inline" :labelCol="{ offset: 1 }">
<a-row> <a-row>
<a-button @click="exportFile">导出excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出excel</a-button>
<!-- <a-col :lg="6" :md="12" :sm="24" :xs="24">--> <!-- <a-col :lg="6" :md="12" :sm="24" :xs="24">-->
<!-- <a-form-item label="昼夜:">--> <!-- <a-form-item label="昼夜:">-->
<!-- <a-select--> <!-- <a-select-->

View File

@@ -18,7 +18,7 @@
> >
<a-button type="primary">数据导入</a-button> <a-button type="primary">数据导入</a-button>
</a-upload> </a-upload>
<a-button @click="download">模板下载</a-button> <a-button @click="download" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">模板下载</a-button>
</a-space> </a-space>
</template> </template>
<a-tabs v-model:activeKey="activeKey"> <a-tabs v-model:activeKey="activeKey">

View File

@@ -34,7 +34,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{span: 24}"> <a-form-item class="ele-text-right" :wrapper-col="{span: 24}">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-form> </a-form>

View File

@@ -36,7 +36,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -20,7 +20,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-col> </a-col>
</a-row> </a-row>

View File

@@ -20,7 +20,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-col> </a-col>
</a-row> </a-row>

View File

@@ -20,7 +20,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-col> </a-col>
</a-row> </a-row>
@@ -126,7 +126,7 @@
>删除 >删除
</a-button> </a-button>
</a-popconfirm> </a-popconfirm>
<a-button @click="exportData" type="primary">导出</a-button> <a-button @click="exportData" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出</a-button>
</a-space> </a-space>
</template> </template>
<template #action="{ record }"> <template #action="{ record }">

View File

@@ -11,7 +11,7 @@
<a-space> <a-space>
<!-- <a-button type="primary" @click="reload">查询</a-button>--> <!-- <a-button type="primary" @click="reload">查询</a-button>-->
<!-- <a-button @click="reset">重置</a-button> --> <!-- <a-button @click="reset">重置</a-button> -->
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
<!-- <a-col :lg="6" :md="12" :sm="24" :xs="24">--> <!-- <a-col :lg="6" :md="12" :sm="24" :xs="24">-->
<!-- <a-form-item label="年份">--> <!-- <a-form-item label="年份">-->

View File

@@ -60,8 +60,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -49,7 +49,7 @@
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<!-- <a-button @click="reset">重置</a-button> --> <!-- <a-button @click="reset">重置</a-button> -->
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -37,7 +37,7 @@
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<!-- <a-button @click="reset">重置</a-button> --> <!-- <a-button @click="reset">重置</a-button> -->
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -39,7 +39,7 @@
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<!-- <a-button @click="reset">重置</a-button> --> <!-- <a-button @click="reset">重置</a-button> -->
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -39,7 +39,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{span: 24}"> <a-form-item class="ele-text-right" :wrapper-col="{span: 24}">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -35,7 +35,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{span: 24}"> <a-form-item class="ele-text-right" :wrapper-col="{span: 24}">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -40,7 +40,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{span: 24}"> <a-form-item class="ele-text-right" :wrapper-col="{span: 24}">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -35,7 +35,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{span: 24}"> <a-form-item class="ele-text-right" :wrapper-col="{span: 24}">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -38,7 +38,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{span: 24}"> <a-form-item class="ele-text-right" :wrapper-col="{span: 24}">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -23,7 +23,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -25,7 +25,7 @@
<a-menu-item @click="download('农村村庄地下水饮用水','xlsx')"> 农村村庄地下水饮用水</a-menu-item> <a-menu-item @click="download('农村村庄地下水饮用水','xlsx')"> 农村村庄地下水饮用水</a-menu-item>
</a-menu> </a-menu>
</template> </template>
<a-button type="primary" style="left: 10px"> <a-button type="primary" style="left: 10px;background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">
模板下载 模板下载
<DownOutlined /> <DownOutlined />
</a-button> </a-button>

View File

@@ -57,7 +57,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{span: 24}"> <a-form-item class="ele-text-right" :wrapper-col="{span: 24}">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -23,7 +23,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -35,8 +35,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -36,8 +36,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -68,8 +68,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -79,7 +79,7 @@
<a-menu-item @click="download('各取水点取水量情况表','xlsx')" > 各取水点取水量取水量表 </a-menu-item> <a-menu-item @click="download('各取水点取水量情况表','xlsx')" > 各取水点取水量取水量表 </a-menu-item>
</a-menu> </a-menu>
</template> </template>
<a-button type="primary" style="left: 60px"> <a-button type="primary" style="left: 60px;background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">
模板下载 模板下载
<DownOutlined /> <DownOutlined />
</a-button> </a-button>

View File

@@ -77,7 +77,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -23,7 +23,7 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -20,7 +20,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportData" type="primary">按年份导出</a-button> <a-button @click="exportData" type="primary">按年份导出</a-button>
</a-space> </a-space>
</a-col> </a-col>

View File

@@ -20,7 +20,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<!-- <a-button @click="exportData" type="primary">按年份导出</a-button> --> <!-- <a-button @click="exportData" type="primary">按年份导出</a-button> -->
</a-space> </a-space>
</a-col> </a-col>

View File

@@ -20,7 +20,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportData" type="primary">按年份导出</a-button> <a-button @click="exportData" type="primary">按年份导出</a-button>
</a-space> </a-space>
</a-col> </a-col>

View File

@@ -20,7 +20,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportData" type="primary">按年份导出</a-button> <a-button @click="exportData" type="primary">按年份导出</a-button>
</a-space> </a-space>
</a-col> </a-col>

View File

@@ -20,7 +20,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportData" type="primary">按年份导出</a-button> <a-button @click="exportData" type="primary">按年份导出</a-button>
</a-space> </a-space>
</a-col> </a-col>

View File

@@ -22,8 +22,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -25,8 +25,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -13,8 +13,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -66,8 +66,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -30,8 +30,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -39,8 +39,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -70,8 +70,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="searchData">查询</a-button> <a-button type="primary" @click="searchData">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -70,8 +70,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="searchData">查询</a-button> <a-button type="primary" @click="searchData">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -70,8 +70,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="searchData">查询</a-button> <a-button type="primary" @click="searchData">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -22,8 +22,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -25,8 +25,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -56,8 +56,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -65,8 +65,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -28,8 +28,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -39,8 +39,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -22,8 +22,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -25,8 +25,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询</a-button> <a-button type="primary" @click="reload">查询</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -74,8 +74,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询3</a-button> <a-button type="primary" @click="reload">查询3</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -69,8 +69,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询3</a-button> <a-button type="primary" @click="reload">查询3</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -28,8 +28,8 @@
<a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }"> <a-form-item class="ele-text-right" :wrapper-col="{ span: 24 }">
<a-space> <a-space>
<a-button type="primary" @click="reload">查询3</a-button> <a-button type="primary" @click="reload">查询3</a-button>
<a-button @click="reset">重置</a-button> <a-button @click="reset" style="background: #FFA200FF; border-color: #FFA200FF;color: #FFFFFF">重置</a-button>
<a-button @click="exportFile">导出Excel</a-button> <a-button @click="exportFile" style="background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">导出Excel</a-button>
</a-space> </a-space>
</a-form-item> </a-form-item>
</a-col> </a-col>

View File

@@ -54,7 +54,7 @@
<a-menu-item @click="download('其它内湖水质监测报告表','/template/其它内湖水质监测报告表.xls')" > 其它内湖水质监测报告表 </a-menu-item> <a-menu-item @click="download('其它内湖水质监测报告表','/template/其它内湖水质监测报告表.xls')" > 其它内湖水质监测报告表 </a-menu-item>
</a-menu> </a-menu>
</template> </template>
<a-button type="primary" style="left: 60px"> <a-button type="primary" style="left: 60px;background: #2FA524FF; border-color: #2FA524FF;color: #FFFFFF">
模板下载 模板下载
<DownOutlined /> <DownOutlined />
</a-button> </a-button>

Some files were not shown because too many files have changed in this diff Show More