123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- <!-- 申请售后 -->
- <template>
- <view class="after-sale-apply-container">
- <JHeader title="选择商品" width="50" height="50" style="padding: 24upx 0 0;"></JHeader>
- <view class="content">
- <view class="order-list-box">
- <view class="item">
- <view class="order-info-box">
- <view class="order-info">
- <checkbox-group @change="checkboxChange">
- <checkbox
- v-for="(item, index) in orderMsg.skus" :key="index"
- :disabled="item.afterState || (item.classifyId == 1439)" :checked="item.checked" :value="String(index)"
- active-background-color="#C5AA7B"
- >
- <view class="order-info-item">
- <image :src="common.seamingImgUrl(item.image)" class="product-img"></image>
- <view class="info-box">
- <text class="product-name">{{ item.productName }}</text>
- <view class="product-sku">{{ item.value }}</view>
- <view class="price-sku-box">
- <text class="product-price">
- <text class="fuhao">¥</text>
- {{ item.price }}
- </text>
- <text class="product-num">x {{ item.number }}</text>
- </view>
- </view>
- </view>
- </checkbox>
- </checkbox-group>
- </view>
- </view>
- </view>
- </view>
- <view class="afterSale-select-box">
- <view class="selectBtn flex-items flex-sp-between">
- <view class="selectBox">
- <checkbox-group @change="changeAll">
- <view>
- <checkbox
- :disabled="orderMsg.skus.some(i => i.afterState || (i.classifyId == 1439))"
- :checked="allCheck.checked" :value="allCheck.value" color="#C5AA7B"
- ></checkbox>
- <text>{{ allCheck.name }}</text>
- </view>
- </checkbox-group>
- </view>
- <view class="selectRight flex-items">
- <view class="selectNum mar-right-25">{{ number || 0 }}件商品</view>
- <view class="totalPrice">
- 合计:
- <text>¥{{ total.toFixed(2) }}</text>
- </view>
- </view>
- </view>
- <view class="afterBtnBox flex-items flex-sp-between">
- <view class="afterBtn1" @click="ReturnMoney(orderMsg)">
- 仅退款
- </view>
- <view v-if="[3, 4, 5, 7, 9, 10].includes(orderMsg.state)" class="afterBtn2" @click="ReturnGoods(orderMsg)">
- 退款退货
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import { getReturnPriceRefundMoneyApi, getOrderDetailApi } from '../../../api/anotherTFInterface'
- import { T_AFTER_SALE_APPLY_REFUND } from '../../../constant'
- export default {
- name: 'AfterSaleApply',
- data() {
- return {
- orderMsg: { skus: [] },
- checkboxChangelist: [],
- xuanzlist: [],
- allCheck: {
- name: '全选',
- value: 'all',
- checked: false
- },
- number: null,
- total: 0
- }
- },
- onLoad(options) {
- uni.showLoading()
- getOrderDetailApi({ orderId: options.orderId, noticeId: 0 })
- .then((res) => {
- uni.hideLoading()
- this.orderMsg = res.data
- this.orderMsg.skus.map((item) => ({ ...item, checked: false }))
- })
- .catch((e) => {
- uni.hideLoading()
- })
- },
- methods: {
- // 算钱
- HandleGetRefundMoney() {
- return new Promise((resolve, reject) => {
- if (this.xuanzlist.length <= 0) {
- resolve(0)
- return
- }
- uni.showLoading()
- getReturnPriceRefundMoneyApi({
- orderId: this.orderMsg.orderId,
- isAllSelect: this.xuanzlist.length === this.orderMsg.skus.length ? 1 : 0,
- skus: this.xuanzlist
- })
- .then((res) => {
- uni.hideLoading()
- resolve(parseFloat(res.json))
- })
- .catch((e) => {
- uni.hideLoading()
- })
- })
- },
- // 申请退款
- ReturnMoney(item) {
- if (this.xuanzlist.length <= 0) {
- uni.showToast({
- title: '请选择退款的商品',
- duration: 2000,
- icon: 'none'
- })
- } else {
- uni.setStorageSync(T_AFTER_SALE_APPLY_REFUND, this.xuanzlist)
- uni.navigateTo({
- url: '/another-tf/another-serve/afterSaleApplyRefund/index?orderId=' + this.orderMsg.orderId + '&isAllSelect=' + (this.xuanzlist.length === this.orderMsg.skus.length ? 1 : 0)
- })
- }
- },
- // 全选
- async changeAll(e) {
- if (e.detail.value.length == 0) {
- this.orderMsg.skus.forEach((item) => this.$set(item, 'checked', false))
- this.$set(this.allCheck, 'checked', false)
- this.xuanzlist = []
- } else {
- this.orderMsg.skus.forEach((item) => this.$set(item, 'checked', true))
- this.$set(this.allCheck, 'checked', true)
- this.xuanzlist = this.orderMsg.skus.filter((item) => item.checked == true)
- this.number = 0
- this.orderMsg.skus.forEach((item) => {
- this.number = this.number + item.number
- })
- }
- this.total = await this.HandleGetRefundMoney()
- },
- // 申请退货
- ReturnGoods(item) {
- if (this.xuanzlist.length <= 0) {
- uni.showToast({
- title: '请选择退货的商品',
- duration: 2000,
- icon: 'none'
- })
- } else {
- uni.navigateTo({
- url: '/another-tf/another-serve/afterSaleApplyRetund/index?list=' + encodeURIComponent(JSON.stringify(this.xuanzlist)) + '&orderId=' + this.orderMsg.orderId + '&isAllSelect=' + (this.xuanzlist.length === this.orderMsg.skus.length ? 1 : 0)
- })
- }
- },
- async checkboxChange(e) {
- // 动态设置商品件数和总计
- this.orderMsg.skus[Number(e.detail.value)].checked = !this.orderMsg.skus[Number(e.detail.value)].checked
- if (this.orderMsg.skus[Number(e.detail.value)].checked) {
- this.number = this.number + this.orderMsg.skus[Number(e.detail.value)].number
- } else {
- this.number = this.number - this.orderMsg.skus[Number(e.detail.value)].number
- }
- // 筛选勾选的
- this.xuanzlist = this.orderMsg.skus.filter((item) => item.checked == true)
- // 是否为全选
- if (this.orderMsg.skus.length == this.xuanzlist.length) {
- this.$set(this.allCheck, 'checked', true)
- } else {
- this.$set(this.allCheck, 'checked', false)
- }
- this.total = await this.HandleGetRefundMoney()
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .after-sale-apply-container {
- background-color: #F8F8F8;
- min-height: 100vh;
- box-sizing: border-box;
- }
- .order-list-box {
- padding: 20upx 30upx;
- box-sizing: border-box;
- }
- .order-list-box .item {
- background: #fff;
- border-radius: 10upx;
- }
- .order-info-box {
- padding: 0 30upx;
- box-sizing: border-box;
- }
- .order-info-item {
- display: flex;
- flex-direction: row;
- padding: 10upx 20upx;
- border-bottom: solid 1px #eee;
- }
- .order-info-item:last-child {
- border-bottom: none;
- }
- .product-img {
- width: 180upx;
- height: 180upx;
- border-radius: 10upx;
- margin-right: 30upx;
- }
- .info-box {
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .product-name {
- font-size: 26upx;
- color: #333;
- height: 68upx;
- line-height: 34upx;
- display: -webkit-box;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
- .price-sku-box {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- margin-top: 10upx;
- }
- .product-sku {
- font-size: 24upx;
- color: #999;
- margin-top: 30upx;
- }
- .product-price {
- font-size: 28upx;
- color: #333;
- font-weight: 400;
- }
- .product-price .fuhao {
- font-size: 28upx;
- }
- .product-num {
- font-size: 28upx;
- color: #999;
- }
- .afterSale-select-box {
- position: fixed;
- bottom: 0;
- width: 100%;
- background: #fff;
- padding: 30rpx;
- box-sizing: border-box;
- height: 240rpx;
- }
- .afterBtnBox {
- margin-top: 30rpx;
- .afterBtn1 {
- width: 342rpx;
- line-height: 100rpx;
- border: 2rpx solid #333333;
- text-align: center;
- color: #333333;
- margin-right: 30rpx;
- }
- .afterBtn2 {
- width: 342rpx;
- height: 100rpx;
- line-height: 100rpx;
- background: #333333;
- border: 2rpx solid #333333;
- text-align: center;
- color: #FFEBC4;
- }
- }
- </style>
|