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

View File

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