Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohoblk-wap
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
沈志敏
9 years ago
Commit
c0f910ecfd5c8e4b8637fdc6c923a2c7e21caa6d
1 parent
ac1b400f
fix bug
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
33 additions
and
17 deletions
public/vue/me/exchange.vue
public/vue/me/exchange/item.vue
public/vue/me/refund.vue
public/vue/me/return/list.vue
public/vue/me/return/reason.vue
public/vue/me/exchange.vue
View file @
c0f910e
...
...
@@ -17,7 +17,7 @@
<div class="list-item exchange-mode">
<span>换货方式</span>
<i class="icon icon-right right"></i>
<select class="right" v-model="deliveryTpye">
<select class="right
select-mode
" v-model="deliveryTpye">
<option v-for="mode in delivery" :value="mode.id">{{mode.name}}</option>
</select>
</div>
...
...
@@ -302,7 +302,7 @@
}
.exchange-info {
margin:
3
0px 0;
margin:
2
0px 0;
background-color: #fff;
}
...
...
@@ -327,6 +327,10 @@
.icon:before {
vertical-align: -5px;
}
.select-mode {
margin-right: 25px;
}
}
</style>
...
...
public/vue/me/exchange/item.vue
View file @
c0f910e
...
...
@@ -4,7 +4,7 @@
<div class="field" @click="openFeatureSelector(product.productId)">
换货的颜色尺码
<div class="right">
<span v-if="product.change">颜色:{{product.change.color}} 尺码:{{product.change.size}}</span>
<span
class="change"
v-if="product.change">颜色:{{product.change.color}} 尺码:{{product.change.size}}</span>
<i class="icon icon-right"></i>
</div>
</div>
...
...
@@ -64,6 +64,7 @@
padding: 0 30px;
background-color: #fff;
font-size: 32px;
&:after {
position: absolute;
z-index: 1;
...
...
@@ -78,6 +79,11 @@
.field .right {
color: #b0b0b0;
}
.change {
display: inline-block;
margin-right: 14px;
}
}
</style>
...
...
public/vue/me/refund.vue
View file @
c0f910e
...
...
@@ -191,8 +191,6 @@
font-size: 32px;
line-height: 90px;
background: #fff;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}
.return-amount-info {
...
...
@@ -205,7 +203,7 @@
.return-amount-item {
position: relative;
width: 100%;
height:
90
px;
height:
88
px;
&:after {
content: "";
...
...
@@ -238,6 +236,7 @@
select {
direction: rtl;
margin-right: 24px;
}
}
}
...
...
public/vue/me/return/list.vue
View file @
c0f910e
...
...
@@ -54,8 +54,6 @@
.product-list {
margin-top: -4px;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}
</style>
...
...
public/vue/me/return/reason.vue
View file @
c0f910e
...
...
@@ -8,13 +8,13 @@
<slot name="type">退货原因</slot>
<span class="icon icon-right"></span>
<select v-model="product.reason.id" name="reason">
<select
class="reason"
v-model="product.reason.id" name="reason">
<option v-for="reason in reasons" v-bind:value="reason.id" selected="{{reason.id === product.reason.id}}">{{reason.name}}</option>
</select>
</div>
<template v-if="specialReasons.indexOf(product.reason.id) !== -1">
<div class="remark">
<textarea v-model="product.remark" rows="
3
" max-length="100" placeholder="原因说明"></textarea>
<textarea v-model="product.remark" rows="
4
" max-length="100" placeholder="原因说明"></textarea>
</div>
<div class="image-list clearfix">
<div class="image-item" v-for="image in imageListForShow">
...
...
@@ -83,14 +83,14 @@
font-size: 32px;
line-height: 90px;
background: #f6f6f6;
&:after {
content: "";
display: block;
width: 100%;
height: 30px;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}
.tip {
position: relative;
padding: 0 30px;
...
...
@@ -132,14 +132,19 @@
line-height: 90px;
color: #b0b0b0;
}
.reason {
margin-right: 25px;
}
}
.remark {
margin-top: 20px;
padding: 0 30px;
background: #fff;
border-top: 1px solid #eee;
height: 190px;
textarea {
margin-top:
30
px;
margin-top:
25
px;
width: 100%;
font-size: 24px;
line-height: 40px;
...
...
@@ -149,16 +154,20 @@
}
.image-list {
padding: 30px;
padding-top: 5px;
background: #fff;
.image-item {
position: relative;
float: left;
margin-right: 20px;
width: 150px;
height: 150px;
margin-right: 25px;
width: 154px;
height: 154px;
&:last-child {
margin-right: 0;
}
.icon-close {
position: absolute;
right: -20px;
...
...
Please
register
or
login
to post a comment