1) 营销系统增加导出

This commit is contained in:
zhangds 2022-08-11 15:06:16 +08:00
parent 343a5a9763
commit fd178f3b64
5 changed files with 723 additions and 624 deletions

View File

@ -894,7 +894,7 @@ export const batchSend = (data) => {
// 批量导出
export const exportKey = (data) => {
return req("get", baseurl + "/key/export", data);
return derive("get", baseurl + "/key/export", data);
};
export { req };

View File

@ -1,154 +1,154 @@
import React, { useState } from 'react'
import { Button, Icon, BlockLoading, Notify, Grid } from 'zent'
import { bachUploadAll, handelResponse } from '../../assets/api.js'
import './style.less'
import React, { useState } from "react";
import { Button, Icon, BlockLoading, Notify, Grid } from "zent";
import { bachUploadAll, handelResponse } from "../../assets/api.js";
import "./style.less";
const columns = [
{
title: '行号',
name: 'id'
title: "行号",
name: "id",
},
{
title: 'key',
name: 'key'
title: "key",
name: "key",
},
{
title: '错误原因',
name: 'msg'
}
]
title: "错误原因",
name: "msg",
},
];
const UseUploadExcel = (props) => {
const { title = '提示', onClose, onImport, visible = false, url } = props
const { title = "提示", onClose, onImport, visible = false, url } = props;
const [fileState, setFilesState] = useState(null) //
const [filesName, setFilesName] = useState('') //
const [filesTip, setFilesTip] = useState(2) // tip 0 1 200
const [loading, setLoading] = useState(false) // loading
const [hash, setHash] = useState('') //
const [disabledSureBtn, setDisabledSureBtn] = useState(true) //
const [partSuccessTag, setPartSuccessTag] = useState(false) //
const [showUpType, setShowUpType] = useState(false) // false true
const [totalData, setTotalData] = useState(0)
const [errCoun, setErrCoun] = useState(0)
const [tableData, setTableData] = useState([])
const [fileState, setFilesState] = useState(null); //
const [filesName, setFilesName] = useState(""); //
const [filesTip, setFilesTip] = useState(2); // tip 0 1 200
const [loading, setLoading] = useState(false); // loading
const [hash, setHash] = useState(""); //
const [disabledSureBtn, setDisabledSureBtn] = useState(true); //
const [partSuccessTag, setPartSuccessTag] = useState(false); //
const [showUpType, setShowUpType] = useState(false); // false true
const [totalData, setTotalData] = useState(0);
const [errCoun, setErrCoun] = useState(0);
const [tableData, setTableData] = useState([]);
const bachUploadState_200 = (res) => {
setFilesTip(200)
setHash(res.data.hash)
setDisabledSureBtn(false)
console.log('res => 成功', res)
}
setFilesTip(200);
setHash(res.data.hash);
setDisabledSureBtn(false);
console.log("res => 成功", res);
};
const bachUploadState_0 = (res) => {
setFilesTip(0)
}
setFilesTip(0);
};
const erObj = (data) => {
let msgObj = ''
let msgObj = "";
for (let key in data) {
msgObj += data[key] + ' '
msgObj += data[key] + " ";
}
return msgObj
}
return msgObj;
};
const bachUploadState_1 = (res) => {
setPartSuccessTag(true)
let rowError = res.data.rowError
setTotalData(rowError.total)
setErrCoun(rowError.error_count)
setHash(rowError.hash)
let errArr = []
setPartSuccessTag(true);
let rowError = res.data.rowError;
setTotalData(rowError.total);
setErrCoun(rowError.error_count);
setHash(rowError.hash);
let errArr = [];
for (let key in rowError.error) {
errArr.push(rowError.error[key])
errArr.push(rowError.error[key]);
}
errArr = errArr.map((item, index) => {
return {
key: item.key,
id: index + 1,
msg: erObj(item.msg)
}
})
setTableData(errArr)
}
msg: erObj(item.msg),
};
});
setTableData(errArr);
};
/**
* 文件后端解析
*/
const excelParseFun = async (file) => {
setLoading(true)
let formdata = new FormData()
formdata.append('file', file)
setLoading(true);
let formdata = new FormData();
formdata.append("file", file);
bachUploadAll(url, formdata).then((res) => {
setLoading(false)
setLoading(false);
if (res.code === 200 || res.code === 0 || res.code === 1) {
switch (res.code) {
case 200:
bachUploadState_200(res)
return
bachUploadState_200(res);
return;
case 0:
bachUploadState_0(res)
return
bachUploadState_0(res);
return;
case 1:
bachUploadState_1(res)
return
bachUploadState_1(res);
return;
default:
return
return;
}
} else {
console.log('res =>', res)
Notify.error(res.message)
setFilesTip(0)
console.log("res =>", res);
Notify.error(res.message);
setFilesTip(0);
}
})
}
});
};
/**
* input 文件改变
* @param {file} e
*/
const fileChange = (e) => {
let my_file = e.target.files[0]
setFilesState(my_file)
setFilesName(my_file.name)
setShowUpType(true)
excelParseFun(my_file) //
console.log('file =>', my_file)
}
let my_file = e.target.files[0];
setFilesState(my_file);
setFilesName(my_file.name);
setShowUpType(true);
excelParseFun(my_file); //
console.log("file =>", my_file);
};
/**
* 表格文件模版下载
*/
const downloadMBExcel = () => {
window.location.href =
'http://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/key%E6%A8%A1%E7%89%88.xlsx'
}
"http://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/key%E6%A8%A1%E7%89%88.xlsx";
};
/**
* 确定导入
*/
const importBtn = () => {
if (hash !== '') {
bachOnClose()
onImport(hash)
if (hash !== "") {
bachOnClose();
onImport(hash);
}
}
};
/**
* 重新上传
*/
const resetUpload = () => {
setPartSuccessTag(false)
setFilesTip(0)
}
setPartSuccessTag(false);
setFilesTip(0);
};
const bachOnClose = () => {
setFilesTip(2)
setPartSuccessTag(false)
setShowUpType(false)
onClose()
}
setFilesTip(2);
setPartSuccessTag(false);
setShowUpType(false);
onClose();
};
/**
* 弹窗 顶部信息
@ -157,23 +157,23 @@ const UseUploadExcel = (props) => {
const uploadTop = () => {
return (
<div>
<div className='step-bar'>
<div className='step-group'>
<div className='step-code active'>1</div>
<span className='step-label active'>上传文件</span>
<div className="step-bar">
<div className="step-group">
<div className="step-code active">1</div>
<span className="step-label active">上传文件</span>
</div>
<div className='step-center'>
<div className='step-line'></div>
<div className="step-center">
<div className="step-line"></div>
</div>
<div className='step-group'>
<div className='step-code'>2</div>
<span className='step-label'>导入完成</span>
<div className="step-group">
<div className="step-code">2</div>
<span className="step-label">导入完成</span>
</div>
</div>
<div className='upload-panel1'>
<div className='upload-label'>直接上传</div>
<div className='upload-info'>
<div className="upload-panel1">
<div className="upload-label">直接上传</div>
<div className="upload-info">
<div> - 支持文件类型xlsxlsxcsv</div>
<div>
- 支持所有基础字段的导入一次至多导入 10000
@ -182,8 +182,8 @@ const UseUploadExcel = (props) => {
</div>
</div>
</div>
)
}
);
};
/**
* 文件上传
@ -191,24 +191,25 @@ const UseUploadExcel = (props) => {
*/
const uploadExcel = () => {
return (
<div className='upload-excel-01'>
<div className="upload-excel-01">
<input
type='file'
accept='.xls,.xlsx,.csv'
className='upload-input'
type="file"
accept=".xls,.xlsx,.csv"
className="upload-input"
onChange={(e) => fileChange(e)}
/>
<Button
style={{
background: '#1890ff',
color: '#FFFFFF',
border: 'none'
}}>
background: "#1890ff",
color: "#FFFFFF",
border: "none",
}}
>
上传文件
</Button>
</div>
)
}
);
};
/**
* 解析 tip
@ -216,20 +217,20 @@ const UseUploadExcel = (props) => {
*/
const tipSuccess = () => {
return (
<div className='upload-success'>
<Icon type='check-circle' className='success-icon' />
<div className="upload-success">
<Icon type="check-circle" className="success-icon" />
<span>文件解析成功 点击 "确定导入" 即可导入</span>
</div>
)
}
);
};
const tipErr = () => {
return (
<div className='upload-error'>
<Icon type='error-circle' className='error-icon' />
<div className="upload-error">
<Icon type="error-circle" className="error-icon" />
<span>文件解析失败, 请查看导入规则并更新文件</span>
</div>
)
}
);
};
/**
* 文件上传
@ -237,20 +238,20 @@ const UseUploadExcel = (props) => {
*/
const upFilesExcel = () => {
return (
<div className='up-files-excel'>
<div className='user-file-box'>
<p className='user-file-name'>
<Icon type='text-guide-o' />
<div className="up-files-excel">
<div className="user-file-box">
<p className="user-file-name">
<Icon type="text-guide-o" />
{filesName}
</p>
<div className='file-update-box'>
<div className="file-update-box">
<input
type='file'
accept='.xls,.xlsx,.csv'
className='upload-input1'
type="file"
accept=".xls,.xlsx,.csv"
className="upload-input1"
onChange={(e) => fileChange(e)}
/>
<Icon type='up-circle-o' />
<Icon type="up-circle-o" />
<span>更新文件</span>
</div>
</div>
@ -258,16 +259,16 @@ const UseUploadExcel = (props) => {
{(() => {
switch (filesTip) {
case 0:
return tipErr()
return tipErr();
case 200:
return tipSuccess()
return tipSuccess();
default:
return
return;
}
})()}
</div>
)
}
);
};
/**
* 底部
@ -275,41 +276,43 @@ const UseUploadExcel = (props) => {
*/
const uploadFooter = () => {
return (
<div className='upload-panel1'>
<div className='upload-label'>下载模板并填写后上传</div>
<div className='upload-info'>
<div className="upload-panel1">
<div className="upload-label">下载模板并填写后上传</div>
<div className="upload-info">
<div>
请先下载数字世界营销管理系统_keys_模板并按照模板填写后再上传
</div>
</div>
<Button
type='default'
className='btn-upload1'
onClick={() => downloadMBExcel()}>
type="default"
className="btn-upload1"
onClick={() => downloadMBExcel()}
>
下载模板
</Button>
<div className='btn-group'>
<Button type='default' onClick={() => bachOnClose()}>
<div className="btn-group">
<Button type="default" onClick={() => bachOnClose()}>
取消
</Button>
<Button
type='primary'
type="primary"
disabled={disabledSureBtn}
onClick={(e) => {
importBtn(e)
importBtn(e);
}}
style={{
background: '#1890ff',
color: '#FFFFFF',
border: 'none'
}}>
background: "#1890ff",
color: "#FFFFFF",
border: "none",
}}
>
确定导入
</Button>
</div>
</div>
)
}
);
};
/**
* 全部错误和全部正确
@ -321,8 +324,8 @@ const UseUploadExcel = (props) => {
{showUpType ? upFilesExcel() : uploadExcel()}
{uploadFooter()}
</div>
)
}
);
};
/**
* 部分正确
@ -330,62 +333,64 @@ const UseUploadExcel = (props) => {
const partSuccess = () => {
return (
<div>
<div className='file-upload-tip'>
<div className="file-upload-tip">
文件上传成功. {totalData} 条手机号,其中 {totalData - errCoun}
条可成功导入
</div>
<div className='file-errmsg1'>
<div className="file-errmsg1">
发现以下 {errCoun} 条不符合要求,将不会被导入
</div>
<div className='gridpanel1'>
<div className="gridpanel1">
<Grid
columns={columns}
datasets={tableData}
scroll={{ y: 250 }}
size='large'
size="large"
/>
</div>
<div className='foot-bar'>
<div className='btn-group'>
<div className="foot-bar">
<div className="btn-group">
<Button
type='default'
type="default"
onClick={(e) => {
resetUpload()
}}>
resetUpload();
}}
>
重新上传
</Button>
<Button
type='primary'
type="primary"
onClick={(e) => {
importBtn(e)
importBtn(e);
}}
style={{
background: '#1890ff',
color: '#FFFFFF',
border: 'none'
}}>
background: "#1890ff",
color: "#FFFFFF",
border: "none",
}}
>
确定导入
</Button>
</div>
</div>
</div>
)
}
);
};
return (
<div>
{visible ? (
<div>
<div className='modal'></div>
<div className='import-excel' style={{ height: 'auto' }}>
<BlockLoading loading={loading} iconText='解析中...' icon='circle'>
<div className='import-header'>
<div className='import-title'>{title}</div>
<div className="modal"></div>
<div className="import-excel" style={{ height: "auto" }}>
<BlockLoading loading={loading} iconText="解析中..." icon="circle">
<div className="import-header">
<div className="import-title">{title}</div>
<Icon
type='close'
className='import-close'
type="close"
className="import-close"
onClick={() => bachOnClose()}
/>
</div>
@ -395,7 +400,7 @@ const UseUploadExcel = (props) => {
</div>
) : null}
</div>
)
}
);
};
export default UseUploadExcel
export default UseUploadExcel;

View File

@ -6,41 +6,46 @@
* @Description:key列表查询组件
* @FilePath: \frontend\src\components\keysFind\index.jsx
*/
import './index.less'
import { useState, useEffect } from 'react'
import { Button, Select, DateRangePicker, Notify } from 'zent'
import Ipt from '@/components/input/main'
import Form from '@/components/form/main'
import FormItem from '@/components/form-item/main'
import _ from 'lodash'
import "./index.less";
import { useState, useEffect } from "react";
import { Button, Select, DateRangePicker, Notify } from "zent";
import Ipt from "@/components/input/main";
import Form from "@/components/form/main";
import FormItem from "@/components/form-item/main";
import _ from "lodash";
import {
getReSellerOption,
handelResponse,
getPlanChoseOption
} from '../../assets/api'
import { FixedSizeList } from 'react-window'
getPlanChoseOption,
} from "../../assets/api";
import { FixedSizeList } from "react-window";
const stateList = [
{ key: 0, text: '全部' },
{ key: 1, text: '可使用' },
{ key: 2, text: '已使用' },
{ key: 3, text: '已完结' },
{ key: 4, text: '已作废' }
]
{ key: 0, text: "全部" },
{ key: 1, text: "可使用" },
{ key: 2, text: "已使用" },
{ key: 3, text: "已完结" },
{ key: 4, text: "已作废" },
];
function init() {
return {
date: [],
reseller: '',
plan: '',
state: { key: 0, text: '全部' },
key: ''
}
reseller: "",
plan: "",
state: { key: 0, text: "全部" },
key: "",
};
}
export default ({ onQuery }) => {
const [models, setModels] = useState(init())
const [resellerOption, setResellerOption] = useState([]) /* 分销商 */
const [planChoseOption, setPlanChoseOption] = useState([]) /* 营销计划 */
export default ({ onQuery, query }) => {
const [models, setModels] = useState(init());
const [resellerOption, setResellerOption] = useState([]); /* 分销商 */
const [planChoseOption, setPlanChoseOption] = useState([]); /* 营销计划 */
useEffect(() => {
let param = onChange(models);
query(param);
}, [models]);
useEffect(() => {
/* 获取分销商 */
@ -50,13 +55,13 @@ export default ({ onQuery }) => {
(req, msg) => {
const data = req.map((item) => ({
key: item.id,
text: item.name
}))
setResellerOption(data)
text: item.name,
}));
setResellerOption(data);
},
(err) => {}
)
)
);
/* 获取营销计划 */
getPlanChoseOption().then((res) =>
handelResponse(
@ -64,14 +69,14 @@ export default ({ onQuery }) => {
(req, msg) => {
const data = req.map((item) => ({
key: item.id,
text: item.title
}))
setPlanChoseOption(data)
text: item.title,
}));
setPlanChoseOption(data);
},
(err) => {}
)
)
}, [])
);
}, []);
function renderOptionList(options, renderOption) {
return (
@ -79,12 +84,13 @@ export default ({ onQuery }) => {
height={256}
itemCount={options.length}
itemSize={32}
width={200}>
width={200}
>
{({ index, style }) => (
<div style={style}>{renderOption(options[index], index)}</div>
)}
</FixedSizeList>
)
);
}
function onChange(data) {
@ -94,38 +100,38 @@ export default ({ onQuery }) => {
reseller_id: data.reseller?.key || null,
plan_id: data.plan?.key || null,
status: data.state?.key || null,
key: data.key || null
}
key: data.key || null,
};
}
return (
<div className='keysFind'>
<div className="keysFind">
<Form>
<FormItem labelname='请选择日期:' required='' labelwidth='95px'>
<FormItem labelname="请选择日期:" required="" labelwidth="95px">
<DateRangePicker
dateFormat='YYYY-MM-DD'
dateFormat="YYYY-MM-DD"
value={models.date}
className='zent-datepicker-plan'
className="zent-datepicker-plan"
width={204}
onChange={(va) => setModels({ ...models, date: va })}
/>
</FormItem>
<FormItem labelname='状态:' required='' labelwidth='50px'>
<FormItem labelname="状态:" required="" labelwidth="50px">
<Select
name='state'
name="state"
value={models.state}
options={stateList}
placeholder='请选择'
placeholder="请选择"
width={204}
clearable
onChange={(va) => setModels({ ...models, state: va })}
/>
</FormItem>
<FormItem labelname='分销商:' required='' labelwidth='70px'>
<FormItem labelname="分销商:" required="" labelwidth="70px">
<Select
value={models.reseller}
options={resellerOption}
placeholder='请选择'
placeholder="请选择"
renderOptionList={renderOptionList}
width={204}
clearable
@ -133,54 +139,56 @@ export default ({ onQuery }) => {
/>
</FormItem>
<FormItem labelname='计划名称:' required='' labelwidth='90px'>
<FormItem labelname="计划名称:" required="" labelwidth="90px">
<Select
value={models.plan}
options={planChoseOption}
placeholder='请选择'
placeholder="请选择"
renderOptionList={renderOptionList}
width={204}
clearable
onChange={(va) => setModels({ ...models, plan: va })}
/>
</FormItem>
<FormItem labelname='KEY' required='' labelwidth='50px'>
<FormItem labelname="KEY" required="" labelwidth="50px">
<Ipt
value={models.key}
countShow={false}
labelWidth='0px'
placeholder='请输入'
labelWidth="0px"
placeholder="请输入"
width={204}
onChange={(va) => setModels({ ...models, key: va })}
onClearItem={() => setModels({ ...models, key: '' })}
onClearItem={() => setModels({ ...models, key: "" })}
/>
</FormItem>
<div className='button_box'>
<div className="button_box">
<Button
type='primary'
type="primary"
onClick={() => {
if (
onChange(models).plan_id ||
onChange(models).reseller_id ||
onChange(models).key
) {
onQuery(onChange(models))
onQuery(onChange(models));
} else {
Notify.warn('请输入【分销商】或【计划名称】或【key】进行查询')
Notify.warn("请输入【分销商】或【计划名称】或【key】进行查询");
}
}}>
}}
>
查询
</Button>
<Button
onClick={() => {
setModels(init())
onQuery(onChange(init()))
}}>
setModels(init());
onQuery(onChange(init()));
}}
>
重置
</Button>
</div>
</Form>
</div>
)
}
);
};

File diff suppressed because it is too large Load Diff

View File

@ -1,69 +1,82 @@
/* 去重 */
export function deWeightThree(data, key) {
let map = new Map()
let map = new Map();
for (let item of data) {
if (!map.has(item[key])) {
map.set(item[key], item)
map.set(item[key], item);
}
}
return [...map.values()]
return [...map.values()];
}
/* uuid生成器 */
export function uuid(len, radix) {
var chars =
'0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'.split('')
"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".split("");
var uuid = [],
i
radix = radix || chars.length
i;
radix = radix || chars.length;
if (len) {
// Compact form
for (i = 0; i < len; i++) uuid[i] = chars[0 | (Math.random() * radix)]
for (i = 0; i < len; i++) uuid[i] = chars[0 | (Math.random() * radix)];
} else {
// rfc4122, version 4 form
var r
var r;
// rfc4122 requires these characters
uuid[8] = uuid[13] = uuid[18] = uuid[23] = '-'
uuid[14] = '4'
uuid[8] = uuid[13] = uuid[18] = uuid[23] = "-";
uuid[14] = "4";
// Fill in random data. At i==19 set the high bits of clock sequence as
// per rfc4122, sec. 4.1.5
for (i = 0; i < 36; i++) {
if (!uuid[i]) {
r = 0 | (Math.random() * 16)
uuid[i] = chars[i == 19 ? (r & 0x3) | 0x8 : r]
r = 0 | (Math.random() * 16);
uuid[i] = chars[i == 19 ? (r & 0x3) | 0x8 : r];
}
}
}
return uuid.join('')
return uuid.join("");
}
//计算两个时间差 返回天
export function timeDiff(begin_time, end_time) {
//年月日时分秒转换为时间戳
let beginTime = new Date(begin_time).getTime() / 1000
let endTime = new Date(end_time).getTime() / 1000
var starttime = ''
var endtime = ''
let beginTime = new Date(begin_time).getTime() / 1000;
let endTime = new Date(end_time).getTime() / 1000;
var starttime = "";
var endtime = "";
if (beginTime < endTime) {
starttime = beginTime
endtime = endTime
starttime = beginTime;
endtime = endTime;
} else {
starttime = endTime
endtime = beginTime
starttime = endTime;
endtime = beginTime;
}
//计算天数
var timediff = endtime - starttime
var days = parseInt(timediff / 86400)
var timediff = endtime - starttime;
var days = parseInt(timediff / 86400);
//计算小时数
var remain = timediff % 86400
var hours = parseInt(remain / 3600)
var remain = timediff % 86400;
var hours = parseInt(remain / 3600);
//计算分钟数
var remain = remain % 3600
var mins = parseInt(remain / 60)
var res = Number(days + 1)
return res
var remain = remain % 3600;
var mins = parseInt(remain / 60);
var res = Number(days + 1);
return res;
}
export function getNowTime() {
var now = new Date();
var year = now.getFullYear();
var month =
now.getMonth() + 1 <= 9 ? "0" + (now.getMonth() + 1) : now.getMonth() + 1;
var day = now.getDate() <= 9 ? "0" + now.getDate() : now.getDate();
var tt = now.getHours() <= 9 ? "0" + now.getHours() : now.getHours();
var mm = now.getMinutes() <= 9 ? "0" + now.getMinutes() : now.getMinutes();
var ss = now.getSeconds() <= 9 ? "0" + now.getSeconds() : now.getSeconds();
let datelist = [year, month, day, tt, mm, ss];
return datelist.join("");
}