Browse Source

修改了请求参数

feature/feature-compatible
wangkesi 7 years ago
parent
commit
008cc90898
3 changed files with 6 additions and 2 deletions
  1. 3
      src/components/order-item.vue
  2. 4
      src/view/order-check.vue
  3. 1
      src/view/order-detail.vue

3
src/components/order-item.vue

@ -122,7 +122,7 @@ export default {
img { img {
width: 0.34rem; width: 0.34rem;
height: 0.28rem; height: 0.28rem;
margin-right: 0.2rem;
margin-right: 0.2rem;
} }
} }
.item-top-address { .item-top-address {
@ -173,6 +173,7 @@ export default {
white-space: normal; white-space: normal;
word-break: break-all; word-break: break-all;
margin-bottom: 0.1rem; margin-bottom: 0.1rem;
padding-top: 0.01rem;
} }
.tips { .tips {
font-size: 0.24rem; font-size: 0.24rem;

4
src/view/order-check.vue

@ -220,7 +220,9 @@ export default {
}, },
addOrder() { addOrder() {
let goodsNo = this.getParam("goodsNo"); let goodsNo = this.getParam("goodsNo");
let couponNo = this.getParam("couponNo") || "";
let couponNo = this.info.primeCoupon
? this.info.primeCoupon.couponNo
: "";
let goodsVersion = let goodsVersion =
this.getParam("goodsVersion") || this.getParam("goodsVersion") ||
sessionStorage.getItem("goodsVersion"); sessionStorage.getItem("goodsVersion");

1
src/view/order-detail.vue

@ -423,6 +423,7 @@ export default {
.name { .name {
font-size: 0.3rem; font-size: 0.3rem;
overflow: hidden; overflow: hidden;
padding-top: 0.01rem;
line-height: 1.1; line-height: 1.1;
display: -webkit-box; display: -webkit-box;
-webkit-box-orient: vertical; -webkit-box-orient: vertical;

Loading…
Cancel
Save