|
@@ -1,57 +1,146 @@
|
|
|
<script setup>
|
|
|
-
|
|
|
-import { ref } from 'vue'
|
|
|
-import { ArrowLeft, LocationFilled, WarningFilled, SuccessFilled } from "@element-plus/icons-vue";
|
|
|
+import { ref, onMounted } from "vue";
|
|
|
+import {
|
|
|
+ ArrowLeft,
|
|
|
+ LocationFilled,
|
|
|
+ WarningFilled,
|
|
|
+ SuccessFilled,
|
|
|
+} from "@element-plus/icons-vue";
|
|
|
import { placeholderPic } from "~/utils/util";
|
|
|
-import {useRouter} from "vue-router"
|
|
|
-import Servicer from '~/components/Servicer/index.vue'
|
|
|
-
|
|
|
-const router = useRouter()
|
|
|
-
|
|
|
-let address = ''
|
|
|
-
|
|
|
-const options = [
|
|
|
- {
|
|
|
- value: 'Option1',
|
|
|
- label: 'Option1',
|
|
|
- },
|
|
|
- {
|
|
|
- value: 'Option2',
|
|
|
- label: 'Option2',
|
|
|
- },
|
|
|
- {
|
|
|
- value: 'Option3',
|
|
|
- label: 'Option3',
|
|
|
- },
|
|
|
- {
|
|
|
- value: 'Option4',
|
|
|
- label: 'Option4',
|
|
|
- },
|
|
|
- {
|
|
|
- value: 'Option5',
|
|
|
- label: 'Option5',
|
|
|
- },
|
|
|
-]
|
|
|
-
|
|
|
-const value = ref('')
|
|
|
-
|
|
|
-const visibilityDialog = ref(false)
|
|
|
+import { useRouter, useRoute } from "vue-router";
|
|
|
+import Servicer from "~/components/Servicer/index.vue";
|
|
|
+import * as addApi from "~/api/address";
|
|
|
+import * as jifenApi from "~/api/jifen";
|
|
|
+import * as userApi from "~/api/user";
|
|
|
+
|
|
|
+//积分结果
|
|
|
+const result = () => {
|
|
|
+ if(goodsInfo.value.price){
|
|
|
+ return goodsInfo.value.price - you.value;
|
|
|
+ }else{
|
|
|
+ return "0"
|
|
|
+ }
|
|
|
+};
|
|
|
+//change
|
|
|
+const you = ref(0);
|
|
|
+const changeyou = (idx) => {
|
|
|
+ console.log(coupon.value[7]);
|
|
|
+ you.value = coupon.value[idx].coupon.amount;
|
|
|
+};
|
|
|
+
|
|
|
+const router = useRouter();
|
|
|
+const route = useRoute();
|
|
|
+//获取商品详情
|
|
|
+
|
|
|
+//获取地址列表
|
|
|
+const arrlist = ref([]);
|
|
|
+//默认地址
|
|
|
+const defaultid = ref();
|
|
|
+const defaultadd = ref([]);
|
|
|
+const list = async () => {
|
|
|
+ try {
|
|
|
+ const { data } = await addApi.list({
|
|
|
+ is_page: 0,
|
|
|
+ });
|
|
|
+ arrlist.value = data;
|
|
|
+ var defaultAddress = [];
|
|
|
+ data.forEach((item) => {
|
|
|
+ if (item.is_default == 1) {
|
|
|
+ defaultAddress.push(item);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ defaultadd.value = defaultAddress;
|
|
|
+ defaultid.value = defaultAddress[0].id;
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+onMounted(list);
|
|
|
+
|
|
|
+//商品详情
|
|
|
+const goodsInfo = ref([{}]);
|
|
|
+const goods = async () => {
|
|
|
+ try {
|
|
|
+ const { data } = await jifenApi.detail({
|
|
|
+ id: route.query.id,
|
|
|
+ });
|
|
|
+ goodsInfo.value = data;
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+onMounted(goods);
|
|
|
+
|
|
|
+//打开模态框
|
|
|
+
|
|
|
+let address = "";
|
|
|
+
|
|
|
+//编辑页面
|
|
|
+const compile = () => {
|
|
|
+ router.push({
|
|
|
+ name: "",
|
|
|
+ });
|
|
|
+};
|
|
|
+
|
|
|
+//地址更换
|
|
|
+const ind = ref(0);
|
|
|
+const change = (idx, id) => {
|
|
|
+ ind.value = idx;
|
|
|
+ defaultid.value = id;
|
|
|
+};
|
|
|
+//地址详情
|
|
|
+const info = () => {
|
|
|
+ if (defaultid.value) {
|
|
|
+ infoa();
|
|
|
+ } else {
|
|
|
+ ElMessage.warning({
|
|
|
+ message: "请选择地址",
|
|
|
+ type: "warning",
|
|
|
+ });
|
|
|
+ }
|
|
|
+};
|
|
|
+const infoa = async () => {
|
|
|
+ try {
|
|
|
+ const { data } = await addApi.info({
|
|
|
+ id: defaultid.value,
|
|
|
+ });
|
|
|
+ defaultadd.value = data;
|
|
|
+ dialogVisible.value = false;
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+
|
|
|
+//优惠券列表
|
|
|
+const coupon = ref([]);
|
|
|
+const __coupon__ = async () => {
|
|
|
+ try {
|
|
|
+ const { data } = await userApi.coupon({
|
|
|
+ is_page: 0,
|
|
|
+ is_expire: 0,
|
|
|
+ is_use: 0,
|
|
|
+ type: "integral",
|
|
|
+ });
|
|
|
+ coupon.value = data;
|
|
|
+ } catch (error) {}
|
|
|
+};
|
|
|
+onMounted(__coupon__);
|
|
|
+
|
|
|
+const value = ref("");
|
|
|
+
|
|
|
+const visibilityDialog = ref(false);
|
|
|
|
|
|
const handleConfirmChange = () => {
|
|
|
- visibilityDialog.value = true
|
|
|
-}
|
|
|
+ visibilityDialog.value = true;
|
|
|
+};
|
|
|
const handleConfirmBtn = () => {
|
|
|
- visibilityDialog.value = false
|
|
|
- visibilityDialog2.value = true
|
|
|
-}
|
|
|
+ visibilityDialog.value = false;
|
|
|
+ visibilityDialog2.value = true;
|
|
|
+};
|
|
|
|
|
|
-const visibilityDialog2 = ref(false)
|
|
|
-
|
|
|
-const returnb = ()=>{
|
|
|
- router.go(-1)
|
|
|
-}
|
|
|
+const addshow = ref(false);
|
|
|
|
|
|
+const visibilityDialog2 = ref(false);
|
|
|
|
|
|
+const returnb = () => {
|
|
|
+ router.go(-1);
|
|
|
+};
|
|
|
+//模态框
|
|
|
+const dialogVisible = ref(false);
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
@@ -62,33 +151,43 @@ const returnb = ()=>{
|
|
|
</el-icon>
|
|
|
返回
|
|
|
</div>
|
|
|
-
|
|
|
<div class="place-order__header flex-row flex-aic flex-jc-sb">
|
|
|
<div class="title">确认收货地址</div>
|
|
|
-
|
|
|
<!-- TODO: 跳转编辑页面 -->
|
|
|
- <div class="edit-address">编辑收货地址</div>
|
|
|
+ <div
|
|
|
+ class="edit-address"
|
|
|
+ style="cursor: pointer"
|
|
|
+ @click="dialogVisible = true"
|
|
|
+ >
|
|
|
+ 编辑收货地址
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
<!-- delivery address -->
|
|
|
<div class="delivery-address flex-row flex-aic">
|
|
|
- <span class="flex-row flex-aic"><el-icon>
|
|
|
- <LocationFilled />
|
|
|
- </el-icon>寄送至</span>
|
|
|
- <ul class="flex-row flex-aic">
|
|
|
- <li>address</li>
|
|
|
- <li>username</li>
|
|
|
- <li>mobile</li>
|
|
|
+ <span class="flex-row flex-aic"
|
|
|
+ ><el-icon> <LocationFilled /> </el-icon>寄送至</span
|
|
|
+ >
|
|
|
+ <ul class="flex-row flex-aic" v-if="defaultadd.length > 0">
|
|
|
+ <li>{{ defaultadd[0].full_address }}</li>
|
|
|
+ <li>{{ defaultadd[0].name }}</li>
|
|
|
+ <li>{{ defaultadd[0].mobile }}</li>
|
|
|
</ul>
|
|
|
+ <span v-else style="color: #000; margin-left: 30px"> - </span>
|
|
|
</div>
|
|
|
|
|
|
<!-- TODO: 弹窗选择其他地址 -->
|
|
|
- <div class="other-address-btns"><span>其他地址</span></div>
|
|
|
-
|
|
|
- <div class="place-order-title">
|
|
|
- 确认订单信息
|
|
|
+ <div
|
|
|
+ class="other-address-btns"
|
|
|
+ v-if="defaultadd.length > 0"
|
|
|
+ style="cursor: pointer"
|
|
|
+ @click="addshow = true"
|
|
|
+ >
|
|
|
+ <span @click="rest">其他地址</span>
|
|
|
</div>
|
|
|
|
|
|
+ <div class="place-order-title">确认订单信息</div>
|
|
|
+
|
|
|
<div class="place-order-infobox">
|
|
|
<div class="header flex-row flex-aic">
|
|
|
<div>商品信息</div>
|
|
@@ -96,13 +195,17 @@ const returnb = ()=>{
|
|
|
</div>
|
|
|
<div class="row flex-row flex-aic">
|
|
|
<div class="info flex-row">
|
|
|
- <img :src="placeholderPic(50, 50)" alt="">
|
|
|
+ <img
|
|
|
+ :src="goodsInfo.image"
|
|
|
+ style="width: 50px; height: 50px"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
<div class="info__right flex-col flex-jc-sb">
|
|
|
- <div class="project-name">豆蔻创意草莓熊手机支架</div>
|
|
|
+ <div class="project-name">{{ goodsInfo.name }}</div>
|
|
|
<div class="project-count">x1</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="integral">8765</div>
|
|
|
+ <div class="integral">{{ goodsInfo.price }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
@@ -111,25 +214,47 @@ const returnb = ()=>{
|
|
|
<!-- 优惠券 -->
|
|
|
<li>
|
|
|
<span class="label">优惠券</span>
|
|
|
- <el-select v-model="value" class="m-2" placeholder="Select" size="large">
|
|
|
- <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" />
|
|
|
+ <el-select
|
|
|
+ v-model="value"
|
|
|
+ class="m-2"
|
|
|
+ placeholder="请选择"
|
|
|
+ size="large"
|
|
|
+ @change="changeyou"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="(item, idx) in coupon"
|
|
|
+ :key="idx"
|
|
|
+ :label="item.coupon.description"
|
|
|
+ :value="idx"
|
|
|
+ />
|
|
|
</el-select>
|
|
|
- <div class="integralbox"><span>-1000</span>积分</div>
|
|
|
+ <div class="integralbox">
|
|
|
+ 优惠<span>{{ you }}</span
|
|
|
+ >积分
|
|
|
+ </div>
|
|
|
</li>
|
|
|
<!-- 会员等级优惠 -->
|
|
|
<li>
|
|
|
<span class="label">会员等级优惠</span>
|
|
|
- <el-select v-model="value" class="m-2" placeholder="Select" size="large">
|
|
|
- <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" />
|
|
|
+ <el-select
|
|
|
+ v-model="value"
|
|
|
+ class="m-2"
|
|
|
+ placeholder="请选择"
|
|
|
+ size="large"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in coupon"
|
|
|
+ :key="item.value"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value"
|
|
|
+ />
|
|
|
</el-select>
|
|
|
<div class="integralbox"><span>-0</span>积分</div>
|
|
|
</li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
|
|
|
- <div class="place-order-title">
|
|
|
- 结算信息
|
|
|
- </div>
|
|
|
+ <div class="place-order-title">结算信息</div>
|
|
|
|
|
|
<ul class="place-order-sum">
|
|
|
<li>
|
|
@@ -147,11 +272,13 @@ const returnb = ()=>{
|
|
|
</ul>
|
|
|
|
|
|
<div class="place-order-sumtxt">
|
|
|
- 应付积分<span>8764</span>
|
|
|
+ 应付积分<span>{{ result() }}</span>
|
|
|
</div>
|
|
|
|
|
|
<div class="place-order-footer">
|
|
|
- <el-button type="primary" size="large" @click="handleConfirmChange">立即兑换</el-button>
|
|
|
+ <el-button type="primary" size="large" @click="handleConfirmChange"
|
|
|
+ >立即兑换</el-button
|
|
|
+ >
|
|
|
</div>
|
|
|
|
|
|
<el-dialog v-model="visibilityDialog" align="center" width="400">
|
|
@@ -162,7 +289,9 @@ const returnb = ()=>{
|
|
|
<template #footer>
|
|
|
<div class="dialog-footer">
|
|
|
<el-button size="large"> 取消 </el-button>
|
|
|
- <el-button size="large" type="primary" @click="handleConfirmBtn"> 确定 </el-button>
|
|
|
+ <el-button size="large" type="primary" @click="handleConfirmBtn"
|
|
|
+ > 确定 </el-button
|
|
|
+ >
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-dialog>
|
|
@@ -176,24 +305,142 @@ const returnb = ()=>{
|
|
|
<template #footer>
|
|
|
<div class="dialog-footer">
|
|
|
<el-button size="large"> 稍后添加 </el-button>
|
|
|
- <el-button size="large" type="primary"> 添加客服 </el-button>
|
|
|
+ <el-button size="large" type="primary"
|
|
|
+ > 添加客服 </el-button
|
|
|
+ >
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-dialog>
|
|
|
-
|
|
|
<Servicer />
|
|
|
-
|
|
|
</div>
|
|
|
+ <!-- 地址选择 -->
|
|
|
+ <el-dialog title="地址选择" v-model="dialogVisible" width="652px">
|
|
|
+ <div style="" v-if="arrlist.length > 0">
|
|
|
+ <div
|
|
|
+ :class="ind == idx ? 'activeb' : 'active1'"
|
|
|
+ style="
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin-top: 16px;
|
|
|
+ align-items: center;
|
|
|
+ "
|
|
|
+ v-for="(item, idx) in arrlist"
|
|
|
+ :key="idx"
|
|
|
+ @click="change(idx, item.id)"
|
|
|
+ >
|
|
|
+ <div>
|
|
|
+ <div>
|
|
|
+ <span class="namea">{{ item.name }}</span>
|
|
|
+ <span class="namea" style="margin-left: 5px">{{
|
|
|
+ item.mobile
|
|
|
+ }}</span>
|
|
|
+ </div>
|
|
|
+ <div class="address">{{ item.full_address }}</div>
|
|
|
+ </div>
|
|
|
+ <div class="compile">编辑</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div style="text-align: center; margin: 10px 0" v-else>暂无数据</div>
|
|
|
+ <div class="btn">
|
|
|
+ <span style="color: rgba(0, 176, 176, 1); font-size: 20px">+</span>
|
|
|
+ <span
|
|
|
+ style="margin-left: 3px; color: rgba(0, 176, 176, 1); cursor: pointer"
|
|
|
+ >新增</span
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ <template #footer>
|
|
|
+ <span class="dialog-footer">
|
|
|
+ <el-button @click="dialogVisible = false">取 消</el-button>
|
|
|
+ <el-button type="primary" @click="info">确 定</el-button>
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
+ </el-dialog>
|
|
|
</template>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
+.btn {
|
|
|
+ width: 84px;
|
|
|
+ height: 38px;
|
|
|
+ border-radius: 4px;
|
|
|
+ border: 1px solid #57c3c2;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 38px;
|
|
|
+ margin-top: 16px;
|
|
|
+}
|
|
|
+.address {
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 12px;
|
|
|
+ color: #999999;
|
|
|
+ line-height: 17px;
|
|
|
+ text-align: right;
|
|
|
+ font-style: normal;
|
|
|
+ margin-top: 6px;
|
|
|
+}
|
|
|
+.name {
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 500;
|
|
|
+ font-size: 17px;
|
|
|
+ color: #000000;
|
|
|
+ line-height: 24px;
|
|
|
+ text-align: right;
|
|
|
+ font-style: normal;
|
|
|
+}
|
|
|
+.compile {
|
|
|
+ width: 80px;
|
|
|
+ height: 35px;
|
|
|
+ background: #00b0b0;
|
|
|
+ border-radius: 4px;
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #ffffff;
|
|
|
+ line-height: 35px;
|
|
|
+ text-align: center;
|
|
|
+ font-style: normal;
|
|
|
+}
|
|
|
+.active1 {
|
|
|
+ background: #ffffff;
|
|
|
+ border-radius: 4px;
|
|
|
+ border: 1px solid #d1d1d1;
|
|
|
+ padding: 16px 24px 16px;
|
|
|
+}
|
|
|
+.activeb {
|
|
|
+ background: #ffffff;
|
|
|
+ border-radius: 4px;
|
|
|
+ border: 1px solid #00b0b0;
|
|
|
+ padding: 16px 24px 16px;
|
|
|
+}
|
|
|
+
|
|
|
+.usea {
|
|
|
+ width: 94px;
|
|
|
+ height: 42px;
|
|
|
+ background: #cecece;
|
|
|
+ border-radius: 4px;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #ffffff;
|
|
|
+ line-height: 42px;
|
|
|
+ text-align: center;
|
|
|
+ font-style: normal;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.info {
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #666666;
|
|
|
+ line-height: 20px;
|
|
|
+ text-align: left;
|
|
|
+ font-style: normal;
|
|
|
+ margin-top: 10px;
|
|
|
+}
|
|
|
.place-order {
|
|
|
&-container {
|
|
|
background-color: #fff;
|
|
|
padding: 20px;
|
|
|
border-radius: 6px;
|
|
|
|
|
|
-
|
|
|
.dialog-footer {
|
|
|
text-align: center;
|
|
|
}
|
|
@@ -211,7 +458,7 @@ const returnb = ()=>{
|
|
|
|
|
|
&__header {
|
|
|
padding: 14px 0;
|
|
|
- border-bottom: 1px solid #E5E5E5;
|
|
|
+ border-bottom: 1px solid #e5e5e5;
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
.title {
|
|
@@ -223,11 +470,10 @@ const returnb = ()=>{
|
|
|
.edit-address {
|
|
|
font-size: 12px;
|
|
|
font-weight: 400;
|
|
|
- color: #00B0B0;
|
|
|
+ color: #00b0b0;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
&-sumtxt {
|
|
|
text-align: right;
|
|
|
font-size: 16px;
|
|
@@ -238,7 +484,7 @@ const returnb = ()=>{
|
|
|
margin-left: 10px;
|
|
|
font-size: 30px;
|
|
|
font-weight: 500;
|
|
|
- color: #FF0000;
|
|
|
+ color: #ff0000;
|
|
|
line-height: 36px;
|
|
|
}
|
|
|
}
|
|
@@ -256,14 +502,14 @@ const returnb = ()=>{
|
|
|
}
|
|
|
|
|
|
&-infobox {
|
|
|
- border: 1px solid #F3F3F3;
|
|
|
+ border: 1px solid #f3f3f3;
|
|
|
|
|
|
.header {
|
|
|
padding: 8px 10px;
|
|
|
|
|
|
- background: #F3F3F3;
|
|
|
+ background: #f3f3f3;
|
|
|
|
|
|
- >div {
|
|
|
+ > div {
|
|
|
flex: 1;
|
|
|
}
|
|
|
}
|
|
@@ -271,14 +517,12 @@ const returnb = ()=>{
|
|
|
.row {
|
|
|
padding: 8px 10px;
|
|
|
|
|
|
- >div {
|
|
|
+ > div {
|
|
|
flex: 1;
|
|
|
}
|
|
|
|
|
|
.info {
|
|
|
-
|
|
|
img {
|
|
|
-
|
|
|
margin-right: 10px;
|
|
|
}
|
|
|
}
|
|
@@ -287,7 +531,7 @@ const returnb = ()=>{
|
|
|
|
|
|
.project {
|
|
|
&-name {
|
|
|
- font-size: 16px;
|
|
|
+ font-size: 12px;
|
|
|
font-weight: 400;
|
|
|
color: #333333;
|
|
|
}
|
|
@@ -301,7 +545,7 @@ const returnb = ()=>{
|
|
|
}
|
|
|
|
|
|
.integral {
|
|
|
- font-size: 22px;
|
|
|
+ font-size: 18px;
|
|
|
font-weight: 500;
|
|
|
color: #333333;
|
|
|
}
|
|
@@ -327,7 +571,7 @@ const returnb = ()=>{
|
|
|
width: 110px;
|
|
|
font-size: 12px;
|
|
|
font-weight: 400;
|
|
|
- color: #FF0000;
|
|
|
+ color: #ff0000;
|
|
|
|
|
|
span {
|
|
|
font-size: 18px;
|
|
@@ -373,14 +617,13 @@ const returnb = ()=>{
|
|
|
}
|
|
|
|
|
|
.delivery-address {
|
|
|
- border: 1px solid #57C3C2;
|
|
|
+ border: 1px solid #57c3c2;
|
|
|
background: rgba(87, 195, 194, 0.1);
|
|
|
padding: 8px 12px;
|
|
|
border-radius: 4px;
|
|
|
|
|
|
- >span {
|
|
|
-
|
|
|
- color: #00B0B0;
|
|
|
+ > span {
|
|
|
+ color: #00b0b0;
|
|
|
}
|
|
|
|
|
|
ul {
|
|
@@ -405,6 +648,6 @@ const returnb = ()=>{
|
|
|
padding: 14px 0;
|
|
|
font-size: 12px;
|
|
|
font-weight: 400;
|
|
|
- color: #00B0B0;
|
|
|
+ color: #00b0b0;
|
|
|
}
|
|
|
</style>
|