Commit ca54c343 authored by Gyeongho Park's avatar Gyeongho Park

[ADD] PHPSESSID 파라미터 추가

parent 81eda10f
...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment