diff --git a/common.scss b/common.scss index b19136d..eaa42ff 100644 --- a/common.scss +++ b/common.scss @@ -68,4 +68,8 @@ /deep/ .uv-modal__content { padding: 0 !important; +} + +/deep/ .uv-rate__content__item__icon-wrap--half { + width: 50% !important; } \ No newline at end of file diff --git a/pages_order/applyService/index.vue b/pages_order/applyService/index.vue index f78277a..c0bbed4 100644 --- a/pages_order/applyService/index.vue +++ b/pages_order/applyService/index.vue @@ -212,6 +212,7 @@ let params = { orderId: this.id, productId: this.applyServiceProduct.map(item => item.productId).join(','), + type, } if (type == 2) { // 其他 @@ -221,7 +222,6 @@ params.num = num params.price = price params.image = images.join(',') - // todo: check key params.phone = phone } diff --git a/pages_order/comment/commentCard.vue b/pages_order/comment/commentCard.vue index 7b24976..acc9ec3 100644 --- a/pages_order/comment/commentCard.vue +++ b/pages_order/comment/commentCard.vue @@ -60,7 +60,7 @@ images() { const { image } = this.data || {} - return image?.split?.(',') + return image?.split?.(',').filter(val => val) } }, methods: { diff --git a/pages_order/comment/commentRecords.vue b/pages_order/comment/commentRecords.vue index 3cf8301..2289bc5 100644 --- a/pages_order/comment/commentRecords.vue +++ b/pages_order/comment/commentRecords.vue @@ -1,7 +1,7 @@