Commit 83ad68ff authored by xinzhedeai's avatar xinzhedeai

add: 降雨量日月年累计雨量导出功能

parent 25557f84
var ServiceURL = 'http://192.168.3.216:9002';
var ServiceURL = 'http://192.168.0.230:9002';
window.VUE_APP_API = {ServiceURL:ServiceURL}
......@@ -1256,6 +1256,72 @@ var reqApis = function () {
reqApi.common.toExports.call(this);
}
},
{
type: 'default', icon: 'el-icon-document', name: '日累计降雨量导出', 'callback': function () {
// reqApi.common.toExports.call(this);
this.$confirm('您确认要导出该页数据吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then((e) => {
var loading = this.$loading({
lock: true,
text: '请稍后.....',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
reqPublic('/data/rg/downloadDvalue', 'get', {}, { responseType: 'blob' }).then((res) => {
loading.close();
var name = '日累计降雨量数据' + Tools.Dates.format('yyyy-MM-dd HH:mm:ss');
Tools.downloadFile(res, name, 'xlsx')
})
})
}
},
{
type: 'default', icon: 'el-icon-document', name: '月累计降雨量导出', 'callback': function () {
// reqApi.common.toExports.call(this);
this.$confirm('您确认要导出该页数据吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then((e) => {
var loading = this.$loading({
lock: true,
text: '请稍后.....',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
reqPublic('/data/rg/downloadMvalue', 'get', {}, { responseType: 'blob' }).then((res) => {
loading.close();
var name = '月累计降雨量数据' + Tools.Dates.format('yyyy-MM-dd HH:mm:ss');
Tools.downloadFile(res, name, 'xlsx')
})
})
}
},
{
type: 'default', icon: 'el-icon-document', name: '年累计降雨量导出', 'callback': function () {
// reqApi.common.toExports.call(this);
this.$confirm('您确认要导出该页数据吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then((e) => {
var loading = this.$loading({
lock: true,
text: '请稍后.....',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
reqPublic('/data/rg/downloadYvalue', 'get', {}, { responseType: 'blob' }).then((res) => {
loading.close();
var name = '年累计降雨量数据' + Tools.Dates.format('yyyy-MM-dd HH:mm:ss');
Tools.downloadFile(res, name, 'xlsx')
})
})
}
},
{
type: 'default', icon: 'el-icon-printer', name: '打印', 'callback': function () {
Tools.cuPrint(this.$refs.cuTable);
......@@ -1310,6 +1376,7 @@ var reqApis = function () {
download: function (param) {
return reqPublic('data/rg/download', 'get', param, { responseType: 'blob' })
},
},
},
nbwy: { // 内部位移
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment