Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
vazil-eduline-skipper
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Gyeongho Park
vazil-eduline-skipper
Commits
ca54c343
Commit
ca54c343
authored
May 31, 2024
by
Gyeongho Park
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ADD] PHPSESSID 파라미터 추가
parent
81eda10f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
SkipperForm.vue
ves-ui/src/components/SkipperForm.vue
+12
-0
No files found.
ves-ui/src/components/SkipperForm.vue
View file @
ca54c343
...
@@ -22,6 +22,13 @@
...
@@ -22,6 +22,13 @@
v-model=
"valid"
v-model=
"valid"
lazy-validation
lazy-validation
>
>
<v-text-field
v-model=
"PHPSESSID"
:rules=
"PHPSESSIDRules"
label=
"PHPSESSID"
required
></v-text-field>
<v-text-field
<v-text-field
v-model=
"p_id"
v-model=
"p_id"
:counter=
"32"
:counter=
"32"
...
@@ -117,6 +124,10 @@ import axios from 'axios'
...
@@ -117,6 +124,10 @@ import axios from 'axios'
data
:
()
=>
({
data
:
()
=>
({
valid
:
true
,
valid
:
true
,
PHPSESSID
:
''
,
PHPSESSIDRules
:
[
v
=>
!!
v
||
'PHPSESSID 값을 입력해주세요.'
,
],
p_id
:
''
,
p_id
:
''
,
p_idRules
:
[
p_idRules
:
[
v
=>
!!
v
||
'p_id 값을 입력해주세요.'
,
v
=>
!!
v
||
'p_id 값을 입력해주세요.'
,
...
@@ -149,6 +160,7 @@ import axios from 'axios'
...
@@ -149,6 +160,7 @@ import axios from 'axios'
this
.
response
=
null
this
.
response
=
null
await
axios
.
post
(
'https://api-eduline.vazil.me/skip'
,
{
await
axios
.
post
(
'https://api-eduline.vazil.me/skip'
,
{
PHPSESSID
:
this
.
PHPSESSID
,
p_id
:
this
.
p_id
,
p_id
:
this
.
p_id
,
s_id
:
this
.
s_id
,
s_id
:
this
.
s_id
,
wr_id
:
this
.
wr_id
wr_id
:
this
.
wr_id
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment