File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const environment = process.env.NODE_ENV || 'development'
5
5
6
6
export default {
7
7
telemetry : false ,
8
- ssr : false ,
8
+ ssr : true ,
9
9
srcDir : 'src' ,
10
10
/*
11
11
** Headers of the page
Original file line number Diff line number Diff line change 58
58
"agree" : " 我同意使用條款"
59
59
},
60
60
"buttons" : {
61
- "agree" : " 前往註冊 " ,
61
+ "agree" : " 繼續註冊 " ,
62
62
"disagree" : " 不同意"
63
63
}
64
64
},
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ export default Vue.extend({
142
142
},
143
143
computed: {
144
144
prependIconColor(): string {
145
- const classIdPattern = / ^ [あ-ん ] {6} $ /
145
+ const classIdPattern = / ^ [あ-んa-zㄅ-ㄩ ] {6} $ /
146
146
if (this .type === ' classId' ) {
147
147
if (! this .value || ! classIdPattern .test (this .value )) return ' #C01B61'
148
148
}
@@ -162,7 +162,7 @@ export default Vue.extend({
162
162
return ' #BDBDBD'
163
163
},
164
164
textFieldColor(): string {
165
- const classIdPattern = / ^ [あ-ん ] {6} $ /
165
+ const classIdPattern = / ^ [あ-んa-zㄅ-ㄩ ] {6} $ /
166
166
if (this .type === ' classId' ) {
167
167
if (! this .value || ! classIdPattern .test (this .value )) return ' #C01B61'
168
168
}
@@ -179,7 +179,7 @@ export default Vue.extend({
179
179
return ' #0071C2'
180
180
},
181
181
prependIcon(): string {
182
- const classIdPattern = / ^ [あ-ん ] {6} $ /
182
+ const classIdPattern = / ^ [あ-んa-zㄅ-ㄩ ] {6} $ /
183
183
if (this .type === ' classId' ) {
184
184
if (! this .value || ! classIdPattern .test (this .value ))
185
185
return ' mdi-alert-circle'
Original file line number Diff line number Diff line change 21
21
color =" #FFDB6C"
22
22
width =" 56px"
23
23
height =" 56px"
24
- :disabled =" !/^[あ-ん ]{6}$/.test(classId)"
24
+ :disabled =" !/^[あ-んa-zㄅ-ㄩ ]{6}$/.test(classId)"
25
25
:loading =" loading"
26
26
@click =" loginToClass"
27
27
>
Original file line number Diff line number Diff line change 287
287
<p style =" text-align : right " >以上</p >
288
288
</div >
289
289
<label class =" Checkbox-label" >
290
- 利用規約に同意します
290
+ {{ $t('common.agree_terms.checkbox.agree') }}
291
291
<input
292
292
v-model =" toggle"
293
293
type =" checkbox"
301
301
:is-disabled =" !isCheck"
302
302
class =" Button"
303
303
theme =" primary"
304
- text =" 登録へ進む "
304
+ : text =" $t('common.agree_terms.buttons.agree') "
305
305
@click =" $router.push(localePath('/user/signup'))"
306
306
/>
307
307
<base-action-button
308
308
class =" Button"
309
309
theme =" border"
310
- text =" 同意しない "
310
+ : text =" $t('common.agree_terms.buttons.disagree') "
311
311
@click =" $router.push(localePath('/'))"
312
312
/>
313
313
</div >
You can’t perform that action at this time.
0 commit comments