sada
This commit is contained in:
parent
ead0026d01
commit
c6b8b8fa06
|
@ -0,0 +1,13 @@
|
||||||
|
import { Staff } from "packages/common/dist";
|
||||||
|
import { api } from "packages/client/dist";
|
||||||
|
export const StaffCard = (staff: Staff) => {
|
||||||
|
const { data } = api.staff.findManyWithPagination.useQuery({
|
||||||
|
page
|
||||||
|
});
|
||||||
|
return(
|
||||||
|
<div className="staff-card">
|
||||||
|
<div className="staff-card__username">${username}</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
|
||||||
|
}
|
|
@ -100,11 +100,7 @@ server {
|
||||||
# 仅供内部使用
|
# 仅供内部使用
|
||||||
internal;
|
internal;
|
||||||
# 代理到认证服务
|
# 代理到认证服务
|
||||||
<<<<<<< HEAD
|
|
||||||
proxy_pass http://host.docker.internal:3000/auth/file;
|
proxy_pass http://host.docker.internal:3000/auth/file;
|
||||||
=======
|
|
||||||
proxy_pass http://host.docker.internal:3001/auth/file;
|
|
||||||
>>>>>>> fdb7b2357a6f025bc5d2ec0a8803142015fb2500
|
|
||||||
|
|
||||||
# 请求优化:不传递请求体
|
# 请求优化:不传递请求体
|
||||||
proxy_pass_request_body off;
|
proxy_pass_request_body off;
|
||||||
|
|
Loading…
Reference in New Issue