fix(通讯录,分组,成员)
This commit is contained in:
parent
fcf7e37404
commit
7ad043e9ab
|
@ -4,6 +4,7 @@ import {
|
||||||
Checkbox,
|
Checkbox,
|
||||||
Form,
|
Form,
|
||||||
Input,
|
Input,
|
||||||
|
message,
|
||||||
PaginationProps,
|
PaginationProps,
|
||||||
Popconfirm,
|
Popconfirm,
|
||||||
Space,
|
Space,
|
||||||
|
@ -90,12 +91,15 @@ const Source = (props: Store) => {
|
||||||
};
|
};
|
||||||
const getHead = () => {
|
const getHead = () => {
|
||||||
let head = coloums.filter((value) => selectKey.includes(value.identity));
|
let head = coloums.filter((value) => selectKey.includes(value.identity));
|
||||||
console.log(head);
|
|
||||||
return head;
|
return head;
|
||||||
};
|
};
|
||||||
|
|
||||||
const saveClo = () => {
|
const saveClo = () => {
|
||||||
let list: any = [];
|
let list: any = [];
|
||||||
|
if(rowKeys.length===0) {
|
||||||
|
message.info("请选择需要导出的列");
|
||||||
|
return;
|
||||||
|
}
|
||||||
for (let i = 0; i < rowKeys.length; i++) {
|
for (let i = 0; i < rowKeys.length; i++) {
|
||||||
let obj = {};
|
let obj = {};
|
||||||
for (const key in rowKeys[i]) {
|
for (const key in rowKeys[i]) {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
class Config {
|
class Config {
|
||||||
static baseUrl = "http://127.0.0.1:12214/v1";
|
static baseUrl = "https://hj.quwanya.cn/v1";
|
||||||
}
|
}
|
||||||
export default Config;
|
export default Config;
|
||||||
|
|
Loading…
Reference in New Issue