내용 추가
This commit is contained in:
parent
5d8fd1bc5e
commit
12465b6b57
30
personalJob/gptour/README.md
Normal file
30
personalJob/gptour/README.md
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
50
|
||||||
|
|
||||||
|
<https://www.gptour.go.kr/bbs/bbsAuth.jsp?menu=guide&submenu=app>
|
||||||
|
|
||||||
|
make board such as to upper url on wordpress
|
||||||
|
|
||||||
|
scenario
|
||||||
|
|
||||||
|
click write btn >> auth >> enter the writer page
|
||||||
|
|
||||||
|
<br><br>
|
||||||
|
<http://socc.or.kr/sub03/sub03_02.php>
|
||||||
|
|
||||||
|
this site made wordpress
|
||||||
|
|
||||||
|
must be adapt woocommerce because this site purpose is get lesson
|
||||||
|
and signup, member management, checkout
|
||||||
|
|
||||||
|
<br><br>
|
||||||
|
and then client want below this
|
||||||
|
|
||||||
|
deposit confirm call btn by user self
|
||||||
|
|
||||||
|
reference site below this
|
||||||
|
|
||||||
|
<https://academy.uxglobalpartners.com/>
|
||||||
|
|
||||||
|
<sowondsgn@gmail.com>
|
||||||
|
|
||||||
|
Sowon0001!
|
@ -349,3 +349,60 @@ export interface IStrategyTerms {
|
|||||||
<https://github.com/kumard3/react-grapesJS-example>
|
<https://github.com/kumard3/react-grapesJS-example>
|
||||||
|
|
||||||
gapsesjs로 만들어진 html을 사용하여 변경할것이다.
|
gapsesjs로 만들어진 html을 사용하여 변경할것이다.
|
||||||
|
|
||||||
|
기존의 git 소스는 React Typescript로 되어 있음.
|
||||||
|
이걸 NextJS Typescript로 전환시킬 것임.
|
||||||
|
|
||||||
|
이에 따라서 세팅할 부분이 추가 됨
|
||||||
|
|
||||||
|
1. Next.js 설치
|
||||||
|
`npm install next react react-dom`
|
||||||
|
|
||||||
|
2. 프로젝트 구조 변경
|
||||||
|
|
||||||
|
Next.js는 기본적으로 pages 폴더를 사용하여 페이지 라우팅을 처리. 현재의 src 폴더 구조를 다음과 같이 변경하는 것이 좋음:
|
||||||
|
|
||||||
|
src/pages: 각 페이지에 해당하는 컴포넌트를 이 폴더에 넣습니다.
|
||||||
|
|
||||||
|
src/components: 공통으로 사용할 컴포넌트를 이 폴더에 넣습니다.
|
||||||
|
|
||||||
|
src/public: 정적 파일(이미지, 폰트 등)을 이 폴더에 넣습니다.
|
||||||
|
|
||||||
|
src/styles: 글로벌 스타일 파일을 이 폴더에 넣습니다.
|
||||||
|
|
||||||
|
example
|
||||||
|
|
||||||
|
```console
|
||||||
|
/src
|
||||||
|
/components
|
||||||
|
/pages
|
||||||
|
/api
|
||||||
|
index.tsx
|
||||||
|
/public
|
||||||
|
/styles
|
||||||
|
...
|
||||||
|
```
|
||||||
|
|
||||||
|
3. next.config.js 추가
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
// next.config.js
|
||||||
|
module.exports = {
|
||||||
|
reactStrictMode: true,
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
4. 스크립트 수정
|
||||||
|
|
||||||
|
```json
|
||||||
|
// package.json
|
||||||
|
"scripts": {
|
||||||
|
"dev": "next dev",
|
||||||
|
"build": "next build",
|
||||||
|
"start": "next start",
|
||||||
|
"lint": "next lint"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
6. 기존 react-scripts 제거 `npm uninstall react-scripts`
|
@ -8,6 +8,7 @@
|
|||||||
<br />
|
<br />
|
||||||
|
|
||||||
`market/strategy/detail`의 response 구조
|
`market/strategy/detail`의 response 구조
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"strategyPlan": {
|
"strategyPlan": {
|
||||||
@ -177,13 +178,13 @@
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
`market/strategy/promotion` 의 response 구조
|
`market/strategy/promotion` 의 response 구조
|
||||||
```json
|
|
||||||
|
```json
|
||||||
{
|
{
|
||||||
"topInfo": {
|
"topInfo": {
|
||||||
"strategyId": "KP0011",
|
"strategyId": "KP0011",
|
||||||
@ -417,12 +418,21 @@
|
|||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
**24-08-12일까지 수정한 내용**
|
|
||||||
|
|
||||||
1. coachchart.tsx
|
|
||||||
2. coachResultComponent.tsx
|
|
||||||
3. reportlinechart.tsx
|
|
||||||
4. chart
|
|
||||||
|
|
||||||
|
|
||||||
|
## 피드백 상황 2024-08-21
|
||||||
|
|
||||||
|
- 홍광진이사
|
||||||
|
|
||||||
|
1. 최근 1개월과 6개월은 하단의 기간이 이상하고, 1개월, 6개월, 1년 수익률 그래프가 모두 동일합니다.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
2. 미흡 및 주요 지표 설명은 아래 화면처럼 주의/미흡인 종목들 아래에 확장된 형태로 붙어서 나오는거고 종목도 우수~주의 순서로 정렬되어야 하지 않나요?
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
3. 차트 위의 텍스트 위치 조정도 필요합니다.
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|
BIN
quantecReport/image-1.png
Normal file
BIN
quantecReport/image-1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 120 KiB |
BIN
quantecReport/image-2.png
Normal file
BIN
quantecReport/image-2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 82 KiB |
BIN
quantecReport/image-3.png
Normal file
BIN
quantecReport/image-3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 87 KiB |
BIN
quantecReport/image.png
Normal file
BIN
quantecReport/image.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 88 KiB |
Loading…
Reference in New Issue
Block a user