2025-03-23 09:29:40 +08:00
|
|
|
|
<!--
|
2025-05-28 11:46:27 +08:00
|
|
|
|
* @Descripttion:
|
|
|
|
|
* @version:
|
2025-03-23 09:29:40 +08:00
|
|
|
|
* @Author: kBank
|
|
|
|
|
* @Date: 2022-11-21 15:11:22
|
|
|
|
|
-->
|
|
|
|
|
<template>
|
|
|
|
|
<view class="content">
|
|
|
|
|
<view class="context">
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<u-form :model="form" labelWidth="75" :rules="rules" ref="uForm">
|
2025-03-23 09:29:40 +08:00
|
|
|
|
<view class="subTxt">
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<view>{{ '收货人信息' }}</view>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</view>
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<u-form-item :label="'收货人'" borderBottom prop="recName">
|
|
|
|
|
<u-input
|
|
|
|
|
v-model="form.recName"
|
|
|
|
|
border="none"
|
|
|
|
|
:placeholder="'请输入收货人'"
|
|
|
|
|
/>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</u-form-item>
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<u-form-item :label="'收货电话'" borderBottom prop="recPhone">
|
|
|
|
|
<u-input
|
|
|
|
|
v-model="form.recPhone"
|
|
|
|
|
maxlength="20"
|
|
|
|
|
border="none"
|
|
|
|
|
type="number"
|
|
|
|
|
:placeholder="'请输入收货电话'"
|
|
|
|
|
/>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</u-form-item>
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<u-form-item
|
|
|
|
|
:label="'收货地址'"
|
|
|
|
|
borderBottom
|
|
|
|
|
prop="diqu"
|
|
|
|
|
@click="getDiqu"
|
|
|
|
|
>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
<view class="disFlex justBwn">
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<u-input
|
|
|
|
|
v-model="form.diqu"
|
|
|
|
|
:placeholder="'请选收货地址'"
|
|
|
|
|
border="none"
|
|
|
|
|
></u-input>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
<u-icon name="arrow-right"></u-icon>
|
|
|
|
|
</view>
|
|
|
|
|
</u-form-item>
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<u-form-item :label="'详细地址'" borderBottom prop="recAddress">
|
|
|
|
|
<u-input
|
|
|
|
|
v-model="form.recAddress"
|
|
|
|
|
border="none"
|
|
|
|
|
maxlength="200"
|
|
|
|
|
:placeholder="'请输入详细地址'"
|
|
|
|
|
/>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</u-form-item>
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<u-form-item :label="'邮费'" borderBottom>
|
|
|
|
|
<u-input disabled border="none" v-model="form.postage" />
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</u-form-item>
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<u-form-item :label="'备注'" borderBottom>
|
|
|
|
|
<u-input
|
|
|
|
|
v-model="form.remark"
|
|
|
|
|
border="none"
|
|
|
|
|
:placeholder="'请输入备注'"
|
|
|
|
|
/>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</u-form-item>
|
|
|
|
|
</u-form>
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<view class="heng"> </view>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
<view class="subTxt">
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<view>{{ '历史地址' }}</view>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</view>
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<u-radio-group
|
|
|
|
|
v-model="moren"
|
|
|
|
|
shape="circle"
|
|
|
|
|
placement="column"
|
|
|
|
|
@change="checkRadio"
|
|
|
|
|
>
|
|
|
|
|
<view
|
|
|
|
|
v-for="item in addressList"
|
|
|
|
|
:key="item.pkId"
|
|
|
|
|
class="disFlex address_a"
|
|
|
|
|
>
|
|
|
|
|
<u-radio activeColor="red" :name="item.pkId"></u-radio>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
<view class="address_r">
|
|
|
|
|
<view class="disFlex justBwn">
|
|
|
|
|
<view class="disFlex">
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<view>{{ item.recName }}</view>
|
|
|
|
|
<view class="mr" v-show="item.isDefault == 1">{{
|
|
|
|
|
'默认'
|
|
|
|
|
}}</view>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="disFlex">
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<u-icon
|
|
|
|
|
name="edit-pen"
|
|
|
|
|
@click="editAddress(item)"
|
|
|
|
|
style="margin-right: 20rpx"
|
|
|
|
|
color="#999999"
|
|
|
|
|
size="20"
|
|
|
|
|
></u-icon>
|
|
|
|
|
<u-icon
|
|
|
|
|
name="trash"
|
|
|
|
|
@click="delAds(item.pkId)"
|
|
|
|
|
color="#999999"
|
|
|
|
|
size="20"
|
|
|
|
|
></u-icon>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<view class="address_rc">{{ item.recPhone }}</view>
|
|
|
|
|
<view class="tit3">{{ item.recArea }}{{ item.recAddress }}</view>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</u-radio-group>
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<view v-for="(item, index) in goodList" :key="index" class="goodList">
|
2025-03-23 09:29:40 +08:00
|
|
|
|
<view class="goodList_i">
|
|
|
|
|
<view class="goodList_it">
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<img :src="item.cover" class="cover" alt="" />
|
2025-03-23 09:29:40 +08:00
|
|
|
|
<view class="goodList_ir">
|
|
|
|
|
<view class="goodList_ib">
|
|
|
|
|
<view class="tit1">
|
|
|
|
|
{{ item.productName }}
|
|
|
|
|
</view>
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<view class="tit5"> x{{ item.quantity }} </view>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="goodList_ib">
|
|
|
|
|
<view class="tit2">
|
2025-05-28 11:46:27 +08:00
|
|
|
|
{{ item.waresPrice | numberToCurrency | isLocal }}
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</view>
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<view class="tit3"
|
|
|
|
|
>业绩: {{ item.pv | numberToCurrency | isLocal }}</view
|
|
|
|
|
>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<view
|
|
|
|
|
v-for="(stem, sndex) in item.waresSkuList"
|
|
|
|
|
:key="sndex"
|
|
|
|
|
class="product_i"
|
|
|
|
|
>
|
|
|
|
|
<img :src="stem.image" alt="" />
|
2025-03-23 09:29:40 +08:00
|
|
|
|
<view class="product_il">
|
|
|
|
|
<view class="tit4">{{ stem.specValueNames }} </view>
|
|
|
|
|
<!-- <view class="tit5">x{{ stem.quantity }}</view> -->
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="fen">
|
|
|
|
|
<view class="disFlex justBwn">
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<view class="tit3">{{ '商品业绩' }}</view>
|
|
|
|
|
<view class="tit1">{{ item.pvAmount | numberToCurrency }}</view>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="disFlex justBwn">
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<view class="tit3">{{ '金额小计' }}</view>
|
|
|
|
|
<view class="tit1">{{
|
|
|
|
|
item.priceAmount | numberToCurrency
|
|
|
|
|
}}</view>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="pad">
|
|
|
|
|
<!-- <view class="disFlex justBwn">
|
2025-04-01 21:35:18 +08:00
|
|
|
|
<view class="tit3">{{'商品金额总计'}}(¥):</view>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
<view class="tit1">{{ priceAmount | numberToCurrency | isLocal}}</view>
|
|
|
|
|
</view> -->
|
|
|
|
|
<view class="disFlex justBwn">
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<view class="tit3">{{ '邮费' }}:</view>
|
|
|
|
|
<view class="tit1">{{
|
|
|
|
|
form.postage | numberToCurrency | isLocal
|
|
|
|
|
}}</view>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="disFlex justBwn">
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<view class="tit3">{{ '总价' }}:</view>
|
|
|
|
|
<view class="tit1">{{
|
|
|
|
|
totalAmont | numberToCurrency | isLocal
|
|
|
|
|
}}</view>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</view>
|
|
|
|
|
<!-- <view class="disFlex justBwn">
|
2025-04-01 21:35:18 +08:00
|
|
|
|
<view class="tit3">{{'业绩'}}</view>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
<view class="tit1">{{ allGoodsData.achieveAmount | numberToCurrency | isLocal}}</view>
|
|
|
|
|
</view> -->
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- 占空 -->
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<view style="height: 296rpx"></view>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
<!-- 底部 -->
|
|
|
|
|
<view class="footer_f">
|
|
|
|
|
<view class="footer">
|
|
|
|
|
<view class="footer_l">
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<u-checkbox-group
|
|
|
|
|
v-model="agreementShow"
|
|
|
|
|
shape="circle"
|
|
|
|
|
activeColor="#005BAC"
|
|
|
|
|
@change="checkboxChange"
|
|
|
|
|
>
|
|
|
|
|
<u-checkbox :name="1"> </u-checkbox>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</u-checkbox-group>
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<view class="tit3">{{ '请阅读并同意' }}</view>
|
|
|
|
|
<view class="tit2"> 《{{ '购买协议' }}》</view>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="footer_r">
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<u-button
|
|
|
|
|
type="success"
|
|
|
|
|
class="uBtn"
|
|
|
|
|
shape="circle"
|
|
|
|
|
:loading="isLoading"
|
|
|
|
|
:loadingText="'购买中'"
|
|
|
|
|
@tap="goBuy"
|
|
|
|
|
color="linear-gradient(to right, #005BAC, #005BAC )"
|
|
|
|
|
>{{ '购买' }}</u-button
|
|
|
|
|
>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- 发货方式 -->
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<u-picker
|
|
|
|
|
:show="isDelivery"
|
|
|
|
|
@cancel="isDelivery = false"
|
|
|
|
|
@confirm="sureDelivery"
|
|
|
|
|
:columns="deliList"
|
|
|
|
|
keyName="label"
|
|
|
|
|
></u-picker>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
<!-- 运输方式 -->
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<u-picker
|
|
|
|
|
:show="isTrans"
|
|
|
|
|
@cancel="isTrans = false"
|
|
|
|
|
@confirm="sureTrans"
|
|
|
|
|
:columns="transList"
|
|
|
|
|
keyName="label"
|
|
|
|
|
></u-picker>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
<!-- 强制阅读协议 -->
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<mustAgreeMent :waresCodeList="waresCodeList"></mustAgreeMent>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
|
2025-05-28 11:46:27 +08:00
|
|
|
|
<u-modal
|
|
|
|
|
:show="delAddress"
|
|
|
|
|
showConfirmButton
|
|
|
|
|
showCancelButton
|
|
|
|
|
:content="'确定要删除该收货地址吗' + '?'"
|
|
|
|
|
confirmColor="#DE3932"
|
|
|
|
|
@confirm="toDel"
|
|
|
|
|
@cancel="delAddress = false"
|
|
|
|
|
ref="uModal"
|
|
|
|
|
:asyncClose="true"
|
|
|
|
|
></u-modal>
|
|
|
|
|
<v-address
|
|
|
|
|
ref="address"
|
|
|
|
|
:defaultCode="defaultCode"
|
|
|
|
|
@addressData="addressData"
|
|
|
|
|
></v-address>
|
2025-03-23 09:29:40 +08:00
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import address from '@/components/address.vue'
|
|
|
|
|
import * as api from '@/config/regiest'
|
|
|
|
|
import mustAgreeMent from '@/components/mustAgreeMent.vue'
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
'v-address': address,
|
|
|
|
|
mustAgreeMent,
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2025-05-28 11:46:27 +08:00
|
|
|
|
delAddress: false,
|
2025-03-23 09:29:40 +08:00
|
|
|
|
waresCodeList: [],
|
|
|
|
|
defaultCode: [],
|
|
|
|
|
moren: '',
|
|
|
|
|
addressList: [],
|
|
|
|
|
deliList: [],
|
|
|
|
|
transList: [],
|
|
|
|
|
bankList: [],
|
|
|
|
|
isDelivery: false,
|
|
|
|
|
isBank: false,
|
|
|
|
|
isTrans: false,
|
|
|
|
|
placeList: [
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
2025-04-01 21:35:18 +08:00
|
|
|
|
label: '安置左区',
|
2025-03-23 09:29:40 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 2,
|
2025-04-01 21:35:18 +08:00
|
|
|
|
label: '安置右区',
|
2025-03-23 09:29:40 +08:00
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
isPlace: false,
|
|
|
|
|
countryIndex: 0,
|
|
|
|
|
isCountry: false,
|
|
|
|
|
userInfo: '',
|
|
|
|
|
countryList: [],
|
|
|
|
|
isClick: 0,
|
|
|
|
|
specialArea: 21,
|
|
|
|
|
shoppingArr: [],
|
|
|
|
|
allGoodsData: {
|
|
|
|
|
specialArea: 21,
|
|
|
|
|
},
|
|
|
|
|
pageList: {
|
|
|
|
|
mail: false,
|
|
|
|
|
card: false,
|
|
|
|
|
bankName: false,
|
|
|
|
|
bankNo: false,
|
|
|
|
|
accountBranch: false,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
form: {
|
2025-04-01 21:35:18 +08:00
|
|
|
|
deliveryName: '快递发货',
|
2025-03-23 09:29:40 +08:00
|
|
|
|
deliveryWay: 1,
|
|
|
|
|
postage: 0,
|
|
|
|
|
transType: 1,
|
|
|
|
|
pkGradeVal: '',
|
|
|
|
|
},
|
|
|
|
|
deliList: [],
|
|
|
|
|
diqu: '',
|
|
|
|
|
allData: [],
|
|
|
|
|
goodsNum: 1,
|
|
|
|
|
agreementShow: [],
|
|
|
|
|
priceAmount: 0, //商品总价
|
|
|
|
|
achiveAmount: 0, //总业绩
|
|
|
|
|
totalAmont: 0,
|
|
|
|
|
orderItemsParams: [],
|
|
|
|
|
isLoading: false,
|
|
|
|
|
centerCodeId: '',
|
|
|
|
|
rules: {
|
|
|
|
|
upgradeMemberCode: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
validator: this.upgradeMemberCodePass,
|
|
|
|
|
trigger: ['blur'],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
recName: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
2025-04-01 21:35:18 +08:00
|
|
|
|
message: '请输入收货人',
|
2025-03-23 09:29:40 +08:00
|
|
|
|
trigger: ['change', 'blur'],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
recPhone: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
2025-04-01 21:35:18 +08:00
|
|
|
|
message: '请输入收货电话',
|
2025-03-23 09:29:40 +08:00
|
|
|
|
trigger: ['change', 'blur'],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
diqu: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
2025-04-01 21:35:18 +08:00
|
|
|
|
message: '请选择收货地址',
|
2025-03-23 09:29:40 +08:00
|
|
|
|
trigger: ['change', 'blur'],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
recAddress: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
2025-04-01 21:35:18 +08:00
|
|
|
|
message: '请输入详细地址',
|
2025-03-23 09:29:40 +08:00
|
|
|
|
trigger: ['change', 'blur'],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
allDataObj: {
|
|
|
|
|
pgpList: [],
|
|
|
|
|
},
|
|
|
|
|
goodList: [],
|
|
|
|
|
postList: [],
|
2025-05-28 11:46:27 +08:00
|
|
|
|
delId: '',
|
2025-03-23 09:29:40 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad(options) {
|
|
|
|
|
// // 数据源
|
|
|
|
|
// this.allData = JSON.parse(options.allData)
|
|
|
|
|
this.allData = JSON.parse(uni.getStorageSync('haiConfirm'))
|
|
|
|
|
let confirmOrderWaresInfoParamsList = []
|
2025-05-28 11:46:27 +08:00
|
|
|
|
this.allData.forEach(item => {
|
|
|
|
|
item.waresSkuList.forEach(ctem => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
confirmOrderWaresInfoParamsList.push({
|
|
|
|
|
pkTWares: ctem.pkTWares,
|
2025-05-28 11:46:27 +08:00
|
|
|
|
pkTWaresSku: ctem.pkTWaresSku || ctem.pkThWaresSku,
|
2025-03-23 09:29:40 +08:00
|
|
|
|
quantity: item.quantity,
|
|
|
|
|
source: item.source,
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
this.shoppingArr = JSON.parse(options.shoppArr)
|
|
|
|
|
// 获取购物车详情
|
|
|
|
|
this.getCatDetail(confirmOrderWaresInfoParamsList)
|
|
|
|
|
// 幂等性
|
|
|
|
|
this.getGenerate()
|
|
|
|
|
// 登录信息
|
|
|
|
|
this.userInfo = uni.getStorageSync('User')
|
|
|
|
|
this.form.upgradeMemberCode = this.userInfo.memberCode
|
|
|
|
|
this.getUserName()
|
|
|
|
|
},
|
|
|
|
|
onShow() {
|
2025-05-28 11:46:27 +08:00
|
|
|
|
// 获取地址
|
|
|
|
|
this.getAddressList()
|
2025-03-23 09:29:40 +08:00
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
editAddress(item) {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/address/index?pkId=' + item.pkId,
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
delAds(id) {
|
|
|
|
|
this.delId = id
|
|
|
|
|
this.delAddress = true
|
|
|
|
|
},
|
|
|
|
|
toDel() {
|
2025-05-28 11:46:27 +08:00
|
|
|
|
api.delAddress(this.delId).then(res => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
uni.showToast({
|
2025-04-01 21:35:18 +08:00
|
|
|
|
title: '删除成功',
|
2025-03-23 09:29:40 +08:00
|
|
|
|
icon: 'none',
|
|
|
|
|
})
|
|
|
|
|
this.getAddressList()
|
|
|
|
|
})
|
|
|
|
|
this.delAddress = false
|
|
|
|
|
},
|
|
|
|
|
getCatDetail(confirmOrderWaresInfoParamsList) {
|
|
|
|
|
api
|
|
|
|
|
.waresinfo({
|
|
|
|
|
confirmOrderWaresInfoParamsList: confirmOrderWaresInfoParamsList,
|
|
|
|
|
})
|
2025-05-28 11:46:27 +08:00
|
|
|
|
.then(res => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
this.goodList = res.data
|
|
|
|
|
let price = 0
|
2025-05-28 11:46:27 +08:00
|
|
|
|
this.goodList.forEach(item => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
item.waresItemsParamList = []
|
|
|
|
|
price += parseFloat(item.priceAmount)
|
2025-05-28 11:46:27 +08:00
|
|
|
|
item.waresSkuList.forEach(ctem => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
item.waresItemsParamList.push({
|
|
|
|
|
pkWaresSpecsSku: ctem.pkId,
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
this.priceAmount = price
|
|
|
|
|
this.totalAmont = price
|
|
|
|
|
let arr = []
|
2025-05-28 11:46:27 +08:00
|
|
|
|
this.goodList.forEach(item => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
arr.push({
|
|
|
|
|
channel: item.source,
|
|
|
|
|
pkId: item.pkId,
|
|
|
|
|
quantity: item.quantity,
|
|
|
|
|
waresItemsParamList: item.waresItemsParamList,
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
this.postList = arr
|
|
|
|
|
this.allGoodsData.specialArea = 21
|
|
|
|
|
// 获取地址
|
|
|
|
|
// this.getAddressList()
|
|
|
|
|
// 获取运输方式
|
|
|
|
|
this.getTransList()
|
|
|
|
|
// 获取发货方式
|
|
|
|
|
this.getDeliveryList()
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
checkAddress() {},
|
|
|
|
|
// 升级编号获取name
|
|
|
|
|
upgradeMemberCodePass(rule, value, callback) {
|
|
|
|
|
if (!value) {
|
2025-04-01 21:35:18 +08:00
|
|
|
|
callback(new Error('请输入会员编号'))
|
2025-03-23 09:29:40 +08:00
|
|
|
|
} else {
|
|
|
|
|
api
|
|
|
|
|
.upgRel({
|
|
|
|
|
upgradeMemberCode: value,
|
|
|
|
|
})
|
2025-05-28 11:46:27 +08:00
|
|
|
|
.then(res => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
this.form.upgradeMemberName = res.data.upgradeMemberName
|
|
|
|
|
// this.getMember()
|
|
|
|
|
this.$forceUpdate()
|
|
|
|
|
callback()
|
|
|
|
|
} else {
|
|
|
|
|
callback(new Error(res.msg))
|
|
|
|
|
}
|
|
|
|
|
})
|
2025-05-28 11:46:27 +08:00
|
|
|
|
.catch(err => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
callback(new Error(err))
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
getAddressList() {
|
2025-05-28 11:46:27 +08:00
|
|
|
|
api.addressList().then(res => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
this.addressList = res.data
|
2025-05-28 11:46:27 +08:00
|
|
|
|
this.addressList.forEach(item => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
if (item.isDefault == 1) {
|
|
|
|
|
this.moren = item.pkId
|
|
|
|
|
this.checkRadio()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getUserName() {
|
|
|
|
|
api
|
|
|
|
|
.upgRel({
|
|
|
|
|
upgradeMemberCode: this.form.upgradeMemberCode,
|
|
|
|
|
})
|
2025-05-28 11:46:27 +08:00
|
|
|
|
.then(res => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
this.form.upgradeMemberName = res.data.upgradeMemberName
|
|
|
|
|
this.$forceUpdate()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
checkboxChange(e) {
|
|
|
|
|
console.log(
|
|
|
|
|
'%c [ e ]-749',
|
|
|
|
|
'font-size:13px; background:#384d26; color:#7c916a;',
|
|
|
|
|
e
|
|
|
|
|
)
|
|
|
|
|
},
|
|
|
|
|
checkRadio() {
|
|
|
|
|
let arr = []
|
2025-05-28 11:46:27 +08:00
|
|
|
|
this.addressList.forEach(item => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
if (item.pkId == this.moren) {
|
|
|
|
|
this.form.recName = item.recName
|
|
|
|
|
this.form.nameList = item.recArea
|
|
|
|
|
this.form.recPhone = item.recPhone
|
|
|
|
|
this.form.recAddress = item.recAddress
|
|
|
|
|
this.form.recProvince = item.recProvince
|
|
|
|
|
this.form.recCity = item.recCity
|
|
|
|
|
if (item.recCounty) {
|
|
|
|
|
this.form.diqu = `${item.recProvinceVal}-${item.recCityVal}-${item.recCountyVal}`
|
|
|
|
|
this.form.recCounty = item.recCounty
|
|
|
|
|
} else {
|
|
|
|
|
this.form.diqu = `${item.recProvinceVal}-${item.recCityVal}`
|
|
|
|
|
this.form.recCounty = ''
|
|
|
|
|
}
|
|
|
|
|
this.defaultCode = [
|
|
|
|
|
item.recProvince,
|
|
|
|
|
item.recCity,
|
|
|
|
|
item.recCounty || '',
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
this.allGoodsData.deliveryWay = this.form.deliveryWay
|
|
|
|
|
this.allGoodsData.transType = this.form.transType
|
|
|
|
|
this.getPostAge()
|
|
|
|
|
this.$forceUpdate()
|
|
|
|
|
},
|
|
|
|
|
getPostAge() {
|
|
|
|
|
let deleteList = []
|
2025-05-28 11:46:27 +08:00
|
|
|
|
this.shoppingArr.forEach(item => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
deleteList.push({
|
|
|
|
|
shoppingId: item,
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
this.allGoodsData.deleteList = deleteList
|
2025-05-28 11:46:27 +08:00
|
|
|
|
api
|
|
|
|
|
.queryPostage(
|
|
|
|
|
Object.assign({ specialArea: 21 }, this.allGoodsData, this.form)
|
|
|
|
|
)
|
|
|
|
|
.then(res => {
|
|
|
|
|
this.form.postage = res.data.postage
|
|
|
|
|
this.totalAmont =
|
|
|
|
|
parseFloat(this.priceAmount) + parseFloat(res.data.postage)
|
|
|
|
|
})
|
2025-03-23 09:29:40 +08:00
|
|
|
|
},
|
|
|
|
|
getTransList() {
|
2025-05-28 11:46:27 +08:00
|
|
|
|
api.transportList().then(res => {
|
|
|
|
|
let data = res.data.map(item => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
return {
|
|
|
|
|
id: item.value,
|
|
|
|
|
label: item.label,
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
this.transList = [data]
|
|
|
|
|
if (this.userInfo.pkCountry == 1) {
|
|
|
|
|
this.form.transType = 1
|
2025-05-28 11:46:27 +08:00
|
|
|
|
data.forEach(item => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
if (item.id == 1) {
|
|
|
|
|
this.form.transTypeLabel = item.label
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getDeliveryList() {
|
2025-05-28 11:46:27 +08:00
|
|
|
|
api.deliveryList().then(res => {
|
|
|
|
|
let data = res.data.map(item => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
return {
|
|
|
|
|
id: item.value,
|
|
|
|
|
label: item.label,
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
this.deliList = [data]
|
|
|
|
|
if (this.userInfo.pkCountry == 1) {
|
|
|
|
|
this.form.deliveryWay = 1
|
2025-05-28 11:46:27 +08:00
|
|
|
|
data.forEach(item => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
if (item.id == 1) {
|
|
|
|
|
this.form.deliveryWayLabel = item.label
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
sureTrans(e) {
|
|
|
|
|
const { value } = e
|
|
|
|
|
this.form.transType = value[0].id
|
|
|
|
|
this.form.transTypeLabel = value[0].label
|
|
|
|
|
this.isTrans = false
|
|
|
|
|
},
|
|
|
|
|
sureDelivery(e) {
|
|
|
|
|
const { value } = e
|
|
|
|
|
this.form.deliveryWay = value[0].id
|
|
|
|
|
this.form.deliveryWayLabel = value[0].label
|
|
|
|
|
this.isDelivery = false
|
|
|
|
|
},
|
|
|
|
|
getGenerate() {
|
2025-05-28 11:46:27 +08:00
|
|
|
|
api.generate().then(res => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
uni.setStorageSync('mToken', res.msg)
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
goBuy() {
|
2025-05-28 11:46:27 +08:00
|
|
|
|
this.$refs.uForm.validate().then(res => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
if (this.agreementShow.length == 0) {
|
|
|
|
|
uni.showToast({
|
2025-04-01 21:35:18 +08:00
|
|
|
|
title: '请阅读并同意购买协议',
|
2025-03-23 09:29:40 +08:00
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 1500,
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
this.isLoading = true
|
|
|
|
|
let deleteList = []
|
2025-05-28 11:46:27 +08:00
|
|
|
|
this.shoppingArr.forEach(item => {
|
2025-03-23 09:29:40 +08:00
|
|
|
|
deleteList.push({
|
|
|
|
|
shoppingId: item,
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
|
2025-05-28 11:46:27 +08:00
|
|
|
|
api
|
|
|
|
|
.confirmShareOrder(
|
|
|
|
|
Object.assign({}, this.form, this.allGoodsData, {
|
|
|
|
|
orderItemsParams: this.postList,
|
|
|
|
|
deleteList: deleteList,
|
2025-03-23 09:29:40 +08:00
|
|
|
|
})
|
2025-05-28 11:46:27 +08:00
|
|
|
|
)
|
|
|
|
|
.then(res => {
|
|
|
|
|
this.isLoading = false
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url:
|
|
|
|
|
'/pages/pay/index?paramsPost=' +
|
|
|
|
|
JSON.stringify(res.data) +
|
|
|
|
|
'&businessType=1',
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
2025-03-23 09:29:40 +08:00
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getDiqu() {
|
|
|
|
|
this.$refs.address.setShow()
|
|
|
|
|
},
|
|
|
|
|
confirmPopup() {},
|
|
|
|
|
addressData(diqu, obj) {
|
|
|
|
|
this.form.diqu = diqu
|
|
|
|
|
this.form.recProvince = obj.province
|
|
|
|
|
this.form.recCity = obj.city
|
|
|
|
|
this.form.recCounty = obj.county
|
|
|
|
|
this.$forceUpdate()
|
|
|
|
|
this.getPostAge()
|
|
|
|
|
// this.queryAdressPostage()
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.content {
|
|
|
|
|
.con_top {
|
|
|
|
|
width: 100%;
|
|
|
|
|
position: fixed;
|
|
|
|
|
display: flex;
|
2025-05-28 11:46:27 +08:00
|
|
|
|
background: #005bac;
|
2025-03-23 09:29:40 +08:00
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
padding: 24rpx 0;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
.con_top_i {
|
|
|
|
|
flex: 1;
|
|
|
|
|
text-align: center;
|
|
|
|
|
.bai {
|
|
|
|
|
width: 52rpx;
|
|
|
|
|
height: 6rpx;
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
margin-top: 10rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.zhan {
|
|
|
|
|
height: 96rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.countImg {
|
|
|
|
|
width: 62rpx;
|
|
|
|
|
height: 41rpx;
|
|
|
|
|
margin-right: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
.context {
|
|
|
|
|
}
|
|
|
|
|
::v-deep .u-form-item__body {
|
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
}
|
|
|
|
|
::v-deep .u-input__content {
|
|
|
|
|
padding: 0px 20rpx;
|
|
|
|
|
}
|
|
|
|
|
::v-deep .u-form-item__body__right__message {
|
|
|
|
|
margin-left: 105px !important;
|
|
|
|
|
}
|
|
|
|
|
.disFlex {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.justBwn {
|
|
|
|
|
width: 100%;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.goodList {
|
|
|
|
|
display: flex;
|
|
|
|
|
padding: 20rpx;
|
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
|
}
|
|
|
|
|
.cover {
|
|
|
|
|
width: 136rpx;
|
|
|
|
|
height: 136rpx;
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
border: 1px solid #eeeeee;
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
}
|
|
|
|
|
.goodList_i {
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
.goodList_it {
|
|
|
|
|
display: flex;
|
|
|
|
|
padding: 0rpx 0 20rpx 0rpx;
|
|
|
|
|
|
|
|
|
|
.goodList_ir {
|
|
|
|
|
margin-left: 20rpx;
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
.goodList_ib {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
img {
|
|
|
|
|
width: 56rpx;
|
|
|
|
|
height: 56rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.product_i {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2025-05-28 11:46:27 +08:00
|
|
|
|
background: #f6f6f6;
|
2025-03-23 09:29:40 +08:00
|
|
|
|
padding: 28rpx;
|
|
|
|
|
.product_il {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex: 1;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-left: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
img {
|
|
|
|
|
width: 50rpx;
|
|
|
|
|
height: 50rpx;
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
border: 1px solid #dddddd;
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.fen {
|
2025-05-28 11:46:27 +08:00
|
|
|
|
background: #f6f6f6;
|
2025-03-23 09:29:40 +08:00
|
|
|
|
padding: 0 28rpx 28rpx 28rpx;
|
|
|
|
|
}
|
|
|
|
|
.pad {
|
|
|
|
|
padding: 28rpx;
|
|
|
|
|
}
|
|
|
|
|
.footer_f {
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
background: #f2f2f2;
|
|
|
|
|
height: 296rpx;
|
|
|
|
|
}
|
|
|
|
|
.footer {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 20rpx 24rpx 40rpx 20rpx;
|
|
|
|
|
|
|
|
|
|
.footer_l {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
margin: 30rpx 0 40rpx 0;
|
|
|
|
|
}
|
|
|
|
|
.footer_r {
|
|
|
|
|
// flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
font-size: 20rpx;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #333333;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.tit1 {
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
font-family: Source Han Sans CN;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #333333;
|
|
|
|
|
}
|
|
|
|
|
.tit2 {
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
font-family: Source Han Sans CN;
|
|
|
|
|
font-weight: bold;
|
2025-05-28 11:46:27 +08:00
|
|
|
|
color: #005bac;
|
2025-03-23 09:29:40 +08:00
|
|
|
|
}
|
|
|
|
|
.tit3 {
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
font-family: Source Han Sans CN;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #999999;
|
|
|
|
|
}
|
|
|
|
|
.tit4 {
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
font-family: PingFang SC;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #333333;
|
|
|
|
|
}
|
|
|
|
|
.tit5 {
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
font-family: Source Han Sans CN;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #999999;
|
|
|
|
|
}
|
|
|
|
|
.heng {
|
|
|
|
|
height: 20rpx;
|
|
|
|
|
background: #f2f2f2;
|
|
|
|
|
}
|
|
|
|
|
.subTxt {
|
2025-05-28 11:46:27 +08:00
|
|
|
|
background: #005bac;
|
2025-03-23 09:29:40 +08:00
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
font-family: Source Han Sans CN;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding: 35rpx 27rpx;
|
|
|
|
|
view {
|
|
|
|
|
border-left: 4px solid #fff;
|
|
|
|
|
padding: 0 20rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.address_a {
|
|
|
|
|
padding: 27rpx;
|
|
|
|
|
border-bottom: 2rpx solid #eee;
|
|
|
|
|
}
|
|
|
|
|
.address_r {
|
|
|
|
|
flex: 1;
|
|
|
|
|
margin-left: 20rpx;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
font-family: Source Han Sans CN;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #333333;
|
|
|
|
|
}
|
|
|
|
|
.address_rc {
|
|
|
|
|
margin: 6rpx 0;
|
|
|
|
|
}
|
|
|
|
|
.mr {
|
|
|
|
|
margin-left: 20rpx;
|
|
|
|
|
background: #181818;
|
|
|
|
|
border-radius: 16rpx;
|
|
|
|
|
font-size: 20rpx;
|
|
|
|
|
font-family: Source Han Sans CN;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
padding: 6rpx 16rpx;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|