Authored by ccbikai

样式修改

... ... @@ -10,7 +10,7 @@ const notLoginTip = '抱歉,您暂未登录!';
const order = {
orders: (req, res) => {
const type = req.query.type;
const type = req.query.type || 1;
res.render('order', {
module: 'me',
... ...
... ... @@ -37,7 +37,7 @@ const yoho = {
if (this.isApp) {
document.addEventListener('deviceready', callback);
} else {
callback();
return callback();
}
},
... ... @@ -318,7 +318,8 @@ const yoho = {
arguments: args
});
} else {
tip(tipInfo);
// tip(tipInfo);
}
},
... ...
... ... @@ -51,6 +51,5 @@
p {
text-align: center;
font-size: 24px;
font-family: BrownStd Regular;
}
}
... ...
... ... @@ -3,12 +3,15 @@
padding-top: 20px;
.coin-total {
padding: 35px 0;
padding: 40px 0;
background: white;
text-align: center;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
p:first-child {
font-size: 34px;
line-height: 40px;
}
p:nth-child(2) {
... ... @@ -20,6 +23,7 @@
p:last-child {
color: #b0b0b0;
font-size: 28px;
line-height: 40px;
}
}
... ...
.help {
overflow: hidden;
width: 100%;
height: auto;
margin-top: 20px;
ul {
display: block;
overflow: hidden;
margin: 0;
padding-left: 0;
width: 100%;
height: auto;
li {
float: right;
overflow: hidden;
width: 100%;
height: 80px;
border-bottom: 1px solid #e0e0e0;
color: #444;
list-style: none;
font-size: 28px;
line-height: 84px;
a:visited {
color: #444;
}
.name {
float: left;
overflow: hidden;
padding-left: 5%;
width: 90%;
height: 100%;
}
.icon {
color: #e0e0e0;
}
}
}
.iconfont {
color: #fff;
}
}
.help-detail-page {
margin-right: 30px;
margin-left: 30px;
/* 全部重写 */
}
... ...
<template>
<div class="coin-detail">
<div class="coin-detail" v-if="coinList && coinList.length">
<p>明细列表</p>
<ul class="coin-detail-list" v-infinite-scroll="getCoinData()" infinite-scroll-disabled="busy" infinite-scroll-distance="10">
<li v-for="coin in coinList">
... ...
... ... @@ -32,7 +32,7 @@
<div class="goods-price">
<p>&yen;{{product.goodsPrice}}</p>
<p>×{{product.buyNumber}}</p>
<p><span class="goods-status">{{product.goodsStatus}}</span></p>
<p v-if="product.goodsStatus"><span class="goods-status">{{product.goodsStatus}}</span></p>
</div>
</a>
</li>
... ... @@ -125,20 +125,20 @@
this.show = true;
this.$set('order', result.data);
this.genderSel = genderSelect([{
key: this.order.isSupportRefund,
val: this.order.isSupportRefund === 'Y' ? '申请退货' : '申请退货(已过期限)',
url: '/me/return/refund?orderCode=' + this.order.orderCode,
disabled: this.order.isSupportRefund !== 'Y'
}, {
key: this.order.isSupportExchange,
val: this.order.isSupportExchange === 'Y' ? '申请换货' : '申请换货(已过期限)',
url: '/me/return/exchange?orderCode=' + this.order.orderCode,
disabled: this.order.isSupportExchange !== 'Y'
}, {
key: 'onlineService',
val: '在线客服',
url: '/me/service'
}
key: this.order.isSupportRefund,
val: this.order.isSupportRefund === 'Y' ? '申请退货' : '申请退货(已过期限)',
url: '/me/return/refund?orderCode=' + this.order.orderCode,
disabled: this.order.isSupportRefund !== 'Y'
}, {
key: this.order.isSupportExchange,
val: this.order.isSupportExchange === 'Y' ? '申请换货' : '申请换货(已过期限)',
url: '/me/return/exchange?orderCode=' + this.order.orderCode,
disabled: this.order.isSupportExchange !== 'Y'
}, {
key: 'onlineService',
val: '在线客服',
url: '/me/service'
}
]);
if (Number(this.order.status) === 0) {
this.getCancelReason();
... ... @@ -153,7 +153,7 @@
});
},
reasonChange() {
if (this.cancelbusy) {
if (this.cancelbusy) {
return false;
}
... ...