fix(通讯录,分组,成员)

This commit is contained in:
wang_yp 2025-04-10 11:14:27 +08:00
parent fcf7e37404
commit 7ad043e9ab
2 changed files with 6 additions and 2 deletions

View File

@ -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]) {

View File

@ -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;