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