|
|
@ -1,93 +1,19 @@ |
|
|
|
'use strict'; |
|
|
|
const fs = require('fs'); |
|
|
|
const xlsxDownload = require('../../../../utils/xlsxDownload.js'); |
|
|
|
const moment = require('moment'); |
|
|
|
const request = require('superagent'); |
|
|
|
|
|
|
|
// const { simpleExcelDown } = require('../../../../utils/xlsxDownload');
|
|
|
|
|
|
|
|
async function dataExport(ctx) { |
|
|
|
async function dataExport (ctx) { |
|
|
|
try { |
|
|
|
// const models = ctx.fs.dc.models;
|
|
|
|
// const { userId } = ctx.fs.api
|
|
|
|
// const { ids } = ctx.query;
|
|
|
|
const models = ctx.fs.dc.models; |
|
|
|
const { userId } = ctx.fs.api |
|
|
|
const { exp, ids, roadLevel, municipalType } = ctx.query; |
|
|
|
|
|
|
|
// const fileList = [
|
|
|
|
// {
|
|
|
|
// n: '道路',
|
|
|
|
// tableName: 'road',
|
|
|
|
// defaultKey: ['level'],
|
|
|
|
// defaultValue: ['村'],
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// n: '道路',
|
|
|
|
// tableName: 'road',
|
|
|
|
// defaultKey: ['level'],
|
|
|
|
// defaultValue: ['县'],
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// n: '道路',
|
|
|
|
// tableName: 'road',
|
|
|
|
// defaultKey: ['level'],
|
|
|
|
// defaultValue: ['乡'],
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// n: '桥梁',
|
|
|
|
// tableName: 'bridge'
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// n: '运政车辆',
|
|
|
|
// tableName: 'municipal_vehicle',
|
|
|
|
// defaultKey: ['type'],
|
|
|
|
// defaultValue: ['出租车'],
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// n: '运政车辆',
|
|
|
|
// tableName: 'municipal_vehicle',
|
|
|
|
// defaultKey: ['type'],
|
|
|
|
// defaultValue: ['危货'],
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// n: '运政业户',
|
|
|
|
// tableName: 'municipal_business',
|
|
|
|
// defaultKey: ['type'],
|
|
|
|
// defaultValue: ['出租车'],
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// n: '运政业户',
|
|
|
|
// tableName: 'municipal_business',
|
|
|
|
// defaultKey: ['type'],
|
|
|
|
// defaultValue: ['危货'],
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// n: '工程一览',
|
|
|
|
// tableName: 'project',
|
|
|
|
// defaultKey: ['done', 'type'],
|
|
|
|
// defaultValue: [false, 'road'],
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// n: '工程一览',
|
|
|
|
// tableName: 'project',
|
|
|
|
// defaultKey: ['done', 'type'],
|
|
|
|
// defaultValue: [false, 'bridge'],
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// n: '治超',
|
|
|
|
// tableName: 'overspeed',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// n: '公交线路',
|
|
|
|
// tableName: 'bus_line',
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// n: '公交车辆',
|
|
|
|
// tableName: 'bus_car',
|
|
|
|
// },
|
|
|
|
// ]
|
|
|
|
if (!exp) { |
|
|
|
throw '参数错误'; |
|
|
|
} |
|
|
|
|
|
|
|
<<<<<<< HEAD |
|
|
|
// const exportData = await models.BusCar.destroy({
|
|
|
|
// where: {
|
|
|
|
// id: { $in: ids.split(',') }
|
|
|
|
// }
|
|
|
|
// })
|
|
|
|
======= |
|
|
|
const modalList = [ |
|
|
|
{ |
|
|
|
n: '道路', |
|
|
@ -140,25 +66,12 @@ async function dataExport(ctx) { |
|
|
|
tableName: 'Report', |
|
|
|
}, |
|
|
|
] |
|
|
|
>>>>>>> d8f96cea72338cf7a61dea293bd6d0cd5da48bb0 |
|
|
|
|
|
|
|
// const fileName = `摄像头信息列表_${moment().format('YYYYMMDDHHmmss')}` + '.csv'
|
|
|
|
// const filePath = await simpleExcelDown({ data: exportData, header, fileName: fileName })
|
|
|
|
// const fileData = fs.readFileSync(filePath);
|
|
|
|
const modalOption = modalList.find(item => item.k == exp); |
|
|
|
if (!modalOption) { |
|
|
|
throw '参数错误'; |
|
|
|
} |
|
|
|
|
|
|
|
<<<<<<< HEAD |
|
|
|
// ctx.status = 200;
|
|
|
|
// ctx.set('Content-Type', 'application/x-xls');
|
|
|
|
// ctx.set('Content-disposition', 'attachment; filename=' + encodeURI(fileName));
|
|
|
|
// ctx.body = fileData;
|
|
|
|
} catch (error) { |
|
|
|
// ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`);
|
|
|
|
// ctx.status = 400;
|
|
|
|
// ctx.body = {
|
|
|
|
// message: typeof error == 'string' ? error : undefined
|
|
|
|
// }
|
|
|
|
} |
|
|
|
======= |
|
|
|
let findOption = { |
|
|
|
where: {} |
|
|
|
} |
|
|
@ -205,10 +118,9 @@ async function dataExport(ctx) { |
|
|
|
message: typeof error == 'string' ? error : undefined |
|
|
|
} |
|
|
|
} |
|
|
|
>>>>>>> d8f96cea72338cf7a61dea293bd6d0cd5da48bb0 |
|
|
|
} |
|
|
|
|
|
|
|
async function godTrans(ctx) { |
|
|
|
async function godTrans (ctx) { |
|
|
|
try { |
|
|
|
const models = ctx.fs.dc.models; |
|
|
|
const { userId } = ctx.fs.api |
|
|
@ -229,5 +141,6 @@ async function godTrans(ctx) { |
|
|
|
} |
|
|
|
|
|
|
|
module.exports = { |
|
|
|
dataExport |
|
|
|
dataExport, |
|
|
|
godTrans |
|
|
|
}; |