Compare commits
4 Commits
578cc153f4
...
281359eaf9
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
281359eaf9 | ||
|
|
e91f1071b3 | ||
|
|
2cd94da7ba | ||
|
|
2c09500134 |
@@ -128,7 +128,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// 选择另一个穿搭
|
// 选择另一个穿搭
|
||||||
const onChooseAnotherOutfit = () => {
|
const onChooseOutfit = () => {
|
||||||
router.push({ name: 'SelectStyle' })
|
router.push({ name: 'SelectStyle' })
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
@@ -167,7 +167,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="btns">
|
<div class="btns">
|
||||||
<button v-show="!isDemo" @click="onChooseAnotherOutfit">Choose another outfit</button>
|
<button v-show="!isDemo" @click="onChooseOutfit">Choose Outfit</button>
|
||||||
<span></span>
|
<span></span>
|
||||||
<button @click="onFinish">Finish</button>
|
<button @click="onFinish">Finish</button>
|
||||||
</div>
|
</div>
|
||||||
@@ -299,7 +299,7 @@
|
|||||||
}
|
}
|
||||||
> .btns {
|
> .btns {
|
||||||
margin-top: 5rem;
|
margin-top: 5rem;
|
||||||
width: 85%;
|
width: 70%;
|
||||||
display: flex;
|
display: flex;
|
||||||
// justify-content: center;
|
// justify-content: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
@@ -309,8 +309,9 @@
|
|||||||
// margin: 0 1.8rem;
|
// margin: 0 1.8rem;
|
||||||
border: none;
|
border: none;
|
||||||
// margin: 0 5.2rem 0 auto;
|
// margin: 0 5.2rem 0 auto;
|
||||||
min-width: 18rem;
|
// min-width: 18rem;
|
||||||
padding: 0 3.5rem;
|
width: 34rem;
|
||||||
|
// padding: 0 3.5rem;
|
||||||
height: 6.9rem;
|
height: 6.9rem;
|
||||||
border-radius: 1.3rem;
|
border-radius: 1.3rem;
|
||||||
background: #000;
|
background: #000;
|
||||||
|
|||||||
@@ -100,7 +100,7 @@
|
|||||||
</label>
|
</label>
|
||||||
<p class="error" v-show="form.email.msg">{{ form.email.msg }}</p>
|
<p class="error" v-show="form.email.msg">{{ form.email.msg }}</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-item">
|
<!-- <div class="form-item">
|
||||||
<div class="label">Password</div>
|
<div class="label">Password</div>
|
||||||
<label class="input">
|
<label class="input">
|
||||||
<div class="icon" @click="form.password.show = !form.password.show">
|
<div class="icon" @click="form.password.show = !form.password.show">
|
||||||
@@ -112,15 +112,15 @@
|
|||||||
v-model="form.password.value"
|
v-model="form.password.value"
|
||||||
:readonly="!form.password.edit"
|
:readonly="!form.password.edit"
|
||||||
/>
|
/>
|
||||||
<!-- <div class="icon" v-if="form.password.edit" @click.stop="onSaveItem('password')">
|
<div class="icon" v-if="form.password.edit" @click.stop="onSaveItem('password')">
|
||||||
<SvgIcon name="confirmation" size="37" />
|
<SvgIcon name="confirmation" size="37" />
|
||||||
</div>
|
</div>
|
||||||
<div class="icon" v-else @click="onEditItem('password')">
|
<div class="icon" v-else @click="onEditItem('password')">
|
||||||
<SvgIcon name="edit" size="37" />
|
<SvgIcon name="edit" size="37" />
|
||||||
</div> -->
|
</div>
|
||||||
</label>
|
</label>
|
||||||
<p class="error" v-show="form.password.msg">{{ form.password.msg }}</p>
|
<p class="error" v-show="form.password.msg">{{ form.password.msg }}</p>
|
||||||
</div>
|
</div> -->
|
||||||
<button class="logout" @click="logout">Log out</button>
|
<button class="logout" @click="logout">Log out</button>
|
||||||
</div>
|
</div>
|
||||||
<footer-navigation is-placeholder />
|
<footer-navigation is-placeholder />
|
||||||
|
|||||||
Reference in New Issue
Block a user