| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410 |
- <template>
- <view class="content">
- <image style="width: 35rpx;height: 35rpx;position: absolute;right: 40rpx;top:40rpx" @click="closeSelectProduct"
- src="@/static/points/closeIcon.png" mode=""></image>
- <view class="addressBox">
- <uni-icons class="icon location icon-cuo" type="location" size="20" @tap=""></uni-icons>
- <text class="name">张三</text>
- <text class="address">山西省太原市小店区营盘街道某某小区</text>
- <image style="width: 28rpx;height: 28rpx;position: absolute;right: 0;" @click="addressSelectFun"
- src="@/static/points/Keyboard_arrow_rifht.png" mode=""></image>
- </view>
- <view class="productPrice">
- <view style="display:flex;justify-content: space-between;">
- <view style="display:flex;">
- <view>
- <image v-if="selectedObj" style="width: 120rpx;height: 120rpx;"
- :src="$globalData.publicUrl + selectedObj.image" mode="">
- </image>
- <image v-else style="width: 120rpx;height: 120rpx;"
- :src="$globalData.publicUrl + params.productMainImage" mode="">
- </image>
- </view>
- <view
- style="margin-left: 24rpx;display: flex;flex-direction: column;justify-content: space-between;">
- <view class="price" v-if="selectedObj">实付价
- {{ params.paymentType == 1 ? selectedObj.pricePoint + '积分' :
- params.paymentType == 2 ? '¥' + selectedObj.priceMoney + '元' :
- params.paymentType == 3 ? '¥' + selectedObj.priceMoney + '元' + '+' +
- selectedObj.pricePoint + '积分' : null }}
- </view>
- <view class="price" v-else>实付价
- {{ params.paymentType == 1 ? params.pricePoint + '积分' :
- params.paymentType == 2 ? '¥' + params.priceMoney + '元' :
- params.paymentType == 3 ? '¥' + params.priceMoney + '元' + '+' +
- params.pricePoint + '积分' : null }}
- </view>
- <view class="spec" v-if="selectedObj">已选:{{ selectedObj.specValueText }} </view>
- </view>
- </view>
- <view class="deletePrice" v-if="selectedObj">{{ selectedObj.originPrice }}元</view>
- </view>
- </view>
- <!--选择规格 -->
- <view class="specClass">
- <view v-for="arr in specList">
- <view class="title">{{ arr[0] }} ({{ Array.from(arr[1]).length }})</view>
- <view style="display: flex;flex-wrap: wrap;">
- <view class="specCombination" @click="selectedSpecFun(value, arr[0])"
- :class="selectedObj ? selectedObj.specValueText.indexOf(value) != -1 ? 'active' : '' : ''"
- v-for="value in Array.from(arr[1])">
- {{ value }}
- </view>
- </view>
- </view>
- </view>
- <!--运费 -->
- <view class="yunFeiClass">
- <view class="text">运费</view>
- <view class="price">¥{{ params.freight }}</view>
- </view>
- <!--订单备注 -->
- <view class="nodeClass">
- <view class="text">订单备注</view>
- <input type="text" maxlength="200" v-model="orderRemarks" placeholder="选填,请填写您的备注信息,限200字" />
- </view>
- <!--支付方式 -->
- <u-radio-group class="nodeClass" v-model="selectPayMeth" @change="groupChange">
- <view style="width: 100%;">
- <view style="display: flex;justify-content: space-between;width: 100%;">
- <view style="display: flex;">
- <image style="width: 40rpx;height: 40rpx;" src="@/static/points/weiXin.png" mode="">
- </image>
- <view class="text" style="color: #333;margin-left: 16rpx;">微信支付</view>
- </view>
- <view>
- <u-radio activeColor="#03C1B8 " name='1' style="margin: 0;"></u-radio>
- </view>
- </view>
- <view style="display: flex;justify-content: space-between;width: 100%;margin-top: 24rpx;">
- <view style="display: flex;">
- <image style="width: 40rpx;height: 40rpx;" src="@/static/points/yue.png" mode="">
- </image>
- <view class="text" style="color: #333;margin-left: 16rpx;">余额支付</view>
- </view>
- <u-radio activeColor="#03C1B8 " name='2'></u-radio>
- </view>
- </view>
- </u-radio-group>
- <view class="footer-bar">
- <u-button v-if="!selectedObj" :customStyle="{
- color: '#fff',
- background: '#03C1B8'
- }">请选择</u-button>
- <u-button v-else-if="selectedObj && selectedObj.stock" :customStyle="{
- color: '#fff',
- background: '#03C1B8'
- }" @click="redeemNowFun">实付价 {{ params.paymentType == 1 ? selectedObj.pricePoint + '积分' :
- params.paymentType == 2 ? '¥' + selectedObj.priceMoney + '元' :
- params.paymentType == 3 ? '¥' + selectedObj.priceMoney + '元' + '+' +
- selectedObj.pricePoint + '积分' : null }}</u-button>
- <u-button v-else-if="selectedObj.stock === 0" :customStyle="{
- color: '#999999 ',
- background: '#eee'
- }">库存不足</u-button>
- </view>
- </view>
- </template>
- <script>
- export default {
- components: {},
- props: {
- params: {
- type: Object,
- default: {}
- }
- },
- data() {
- return {
- orderRemarks:'',
- selectPayMeth: '1',
- reasonRefusal: '',
- showPopup: false,
- specValueText: '',
- specValuePrice: '',
- specList: [],
- selectedObj: null
- }
- },
- onLoad(data) {
- console.log('555')
- },
- onShow() {
- console.log('555')
- },
- onPageScroll() {
- },
- create() {
- console.log('55522')
- },
- computed: {
- // specValuePrice() {
- // return ;
- // }
- },
- methods: {
- //
- onShowFun(selectedObj) {
- if (selectedObj) {
- this.selectedObj = JSON.parse(JSON.stringify(selectedObj))
- } else {
- this.selectedObj = this.params.specComboVOList[0]
- }
- const map = new Map();
- this.params.specComboVOList.forEach(item => {
- item.specNameValueList.forEach(spec => {
- const key = spec.specName;
- if (!map.has(key)) {
- map.set(key, new Set());
- }
- map.get(key).add(spec.specValue);
- });
- })
- this.specList = Array.from(map)
- },
- //立即兑换
- redeemNowFun() {
- this.$emit('redeemNowFun', this.selectedObj ? JSON.parse(JSON.stringify(this.selectedObj)) : null)
-
- },
- //点击选规则
- selectedSpecFun(specValue, specName) {
- if (this.selectedObj) {
- let selectedObj = JSON.parse(JSON.stringify(this.selectedObj))
- let specValueT
- selectedObj.specNameValueList.forEach((e, i) => {
- if (e.specName == specName) {
- specValueT = e.specValue
- }
- })
- selectedObj.specValues.forEach((r, n) => {
- if (r == specValueT) {
- selectedObj.specValues.splice(n, 1)
- }
- })
- this.params.specComboVOList.forEach((item, index) => {
- if (item.specValueText.indexOf(specValue) != -1 && item.specValueText.indexOf(selectedObj.specValues.toString()) != -1) {
- this.selectedObj = item
- }
- })
- }
- //console.log(this.selectedObj, 'this.selectedObj')
- //console.log(specValue, specName, 'value,specName')
- },
- //关闭选择商品页
- closeSelectProduct() {
- this.$emit('closeSelectProduct', this.selectedObj ? JSON.parse(JSON.stringify(this.selectedObj)) : null)
- },
- //去我的地址页面
- addressSelectFun() {
- uni.navigateTo({
- url: '/points/productDetails/addressManagement'
- });
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .content {
- background-color: #F5F8F8;
- padding: 24rpx 32rpx 0 32rpx;
- font-family: PingFang SC, PingFang SC;
- height: 1350rpx;
- border-radius: 20rpx 20rpx 0 0;
- .addressBox {
- position: relative;
- margin-top: 70rpx;
- display: flex;
- align-items: center;
- border-radius: 20rpx 20rpx 20rpx 20rpx;
- .name {
- margin: 0 24rpx;
- font-weight: 500;
- font-size: 32rpx;
- color: #333333;
- line-height: 40rpx;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- .address {
- font-weight: 500;
- font-size: 28rpx;
- color: #333333;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- .productPrice {
- background-color: #fff;
- margin-top: 24rpx;
- padding: 24rpx;
- border-radius: 20rpx 20rpx 20rpx 20rpx;
- .price {
- font-weight: bold;
- font-size: 28rpx;
- color: #03C1B8;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- .spec {
- font-weight: 500;
- font-size: 26rpx;
- color: #999999;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- .deletePrice {
- font-weight: 500;
- font-size: 32rpx;
- color: #666666;
- text-align: left;
- font-style: normal;
- text-decoration-line: line-through;
- text-transform: none;
- }
- }
- .specClass {
- background-color: #fff;
- margin-top: 24rpx;
- padding: 0 24rpx 24rpx 24rpx;
- border-radius: 20rpx 20rpx 20rpx 20rpx;
- .title {
- padding-top: 24rpx;
- font-weight: bold;
- font-size: 28rpx;
- color: #333333;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- .specCombination {
- font-weight: 500;
- font-size: 24rpx;
- color: #666666;
- text-align: left;
- font-style: normal;
- text-transform: none;
- height: 56rpx;
- background: #F0F0F0;
- border-radius: 38rpx 38rpx 38rpx 38rpx;
- margin-right: 16rpx;
- padding: 8rpx 16rpx;
- margin-top: 24rpx;
- }
- .active {
- background: #03C1B8;
- border-radius: 38rpx 38rpx 38rpx 38rpx;
- color: #fff;
- }
- }
- .yunFeiClass {
- display: flex;
- justify-content: space-between;
- height: 92rpx;
- background: #FFFFFF;
- border-radius: 20rpx 20rpx 20rpx 20rpx;
- margin-top: 24rpx;
- align-items: center;
- padding: 24rpx;
- .text {
- font-weight: 500;
- font-size: 28rpx;
- color: #666666;
- line-height: 40rpx;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- ::v-deep .nodeClass {
- margin-top: 24rpx;
- padding: 24rpx;
- background: #FFFFFF;
- border-radius: 20rpx 20rpx 20rpx 20rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .u-radio__icon-wrap {
- margin: 0;
- }
- .text {
- width: 115rpx;
- font-weight: 500;
- font-size: 28rpx;
- color: #666666;
- line-height: 40rpx;
- text-align: left;
- }
- input {
- font-weight: 500;
- font-size: 26rpx;
- color: #999999;
- line-height: 40rpx;
- text-align: right;
- font-style: normal;
- text-transform: none;
- width: 450rpx;
- }
- }
- }
- .footer-bar {
- .u-button {
- width: 670rpx;
- height: 84rpx;
- border-radius: 98rpx 98rpx 98rpx 98rpx;
- margin: 20rpx 40rpx;
- background: '#000';
- }
- }
- </style>
|