|
@@ -0,0 +1,180 @@
|
|
|
+<template>
|
|
|
+ <div id="form-1">
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="24" class="main animate__animated animate__backInRight">
|
|
|
+ <el-col class="top-btn">
|
|
|
+ <el-button type="primary" size="mini" @click="toBack()">返回</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="8" class="one">
|
|
|
+ <el-col :span="24" class="add">
|
|
|
+ <el-col :span="2">
|
|
|
+ <i class="el-icon-location"></i>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="22">
|
|
|
+ <p>{{ address.name }},{{ address.phone }}</p>
|
|
|
+ <p>{{ address.province }} , {{ address.city }} , {{ address.area }} , {{ address.address }}</p>
|
|
|
+ </el-col>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="shop"> <i class="el-icon-s-shop"></i>{{ shop.name }}</el-col>
|
|
|
+ <el-col :span="24" v-for="(item, index) in list" :key="index">
|
|
|
+ <el-col :span="24" class="goods">
|
|
|
+ <el-col :span="6"><el-image :src="item.goods.file[0].url"></el-image></el-col>
|
|
|
+ <el-col :span="18">
|
|
|
+ <el-col :span="12">
|
|
|
+ <p>{{ item.goods.name }}</p>
|
|
|
+ <p>规格:{{ item.name }}</p>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12" class="money">
|
|
|
+ <p>¥{{ item.sell_money }}</p>
|
|
|
+ <p>X{{ item.buy_num }}</p>
|
|
|
+ </el-col>
|
|
|
+ </el-col>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-col :span="6">运费</el-col>
|
|
|
+ <el-col :span="18" class="other" v-if="!item.freight_total == '0'">{{ item.freight_total }}</el-col>
|
|
|
+ <el-col :span="18" class="other" v-else>包邮</el-col>
|
|
|
+ </el-col>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-col :span="6">订单备注</el-col>
|
|
|
+ <el-col :span="18" class="other" v-if="info.remarks">{{ info.remarks }}</el-col>
|
|
|
+ <el-col :span="18" class="other" v-else>暂无备注</el-col>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-col :span="6">配送方式</el-col>
|
|
|
+ <el-col :span="18" class="other">快递配送</el-col>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="goods_total">
|
|
|
+ <el-col :span="6">实付金额</el-col>
|
|
|
+ <el-col :span="18" class="other">
|
|
|
+ <p v-if="total_detail.discount_detail">¥{{ goods_total }}</p>
|
|
|
+ <p v-else>¥{{ total_detail.goods_total }}</p>
|
|
|
+ </el-col>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-col :span="6">下单时间</el-col>
|
|
|
+ <el-col :span="18" class="other">{{ info.buy_time }}</el-col>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-col :span="6">支付时间</el-col>
|
|
|
+ <el-col :span="18" class="other">{{ info.pay_time }}</el-col>
|
|
|
+ </el-col>
|
|
|
+ </el-col>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+const _ = require('lodash');
|
|
|
+const moment = require('moment');
|
|
|
+import { mapState, mapGetters, createNamespacedHelpers } from 'vuex';
|
|
|
+const { mapActions } = createNamespacedHelpers('orderDetail');
|
|
|
+export default {
|
|
|
+ name: 'form-1',
|
|
|
+ props: {},
|
|
|
+ components: {},
|
|
|
+ data: function () {
|
|
|
+ return {
|
|
|
+ info: {},
|
|
|
+ address: {},
|
|
|
+ goods_total: 0,
|
|
|
+ shop: {},
|
|
|
+ list: [],
|
|
|
+ total_detail: {},
|
|
|
+ typeList: [],
|
|
|
+ statusList: [],
|
|
|
+ };
|
|
|
+ },
|
|
|
+ async created() {
|
|
|
+ await this.search();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ ...mapActions(['query', 'fetch', 'create', 'update']),
|
|
|
+ // 查询
|
|
|
+ async search() {
|
|
|
+ let res;
|
|
|
+ res = await this.fetch(this.id);
|
|
|
+ if (this.$checkRes(res)) {
|
|
|
+ this.$set(this, `info`, res.data);
|
|
|
+ // 地址
|
|
|
+ this.$set(this, `address`, res.data.address);
|
|
|
+ this.$set(this, `shop`, res.data.shop);
|
|
|
+ // 商品
|
|
|
+ this.$set(this, `list`, res.data.goods);
|
|
|
+ // 实付金额
|
|
|
+ this.$set(this, `total_detail`, res.data.total_detail);
|
|
|
+ var goods_total = 0;
|
|
|
+ let discount_detail = res.data.total_detail.discount_detail;
|
|
|
+ for (const key in discount_detail) {
|
|
|
+ if (Object.hasOwnProperty.call(discount_detail, key)) {
|
|
|
+ const element = discount_detail[key];
|
|
|
+ for (const i in element) {
|
|
|
+ if (Object.hasOwnProperty.call(element, i)) {
|
|
|
+ const ele = element[i].realPay;
|
|
|
+ goods_total += ele;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.$set(this, `goods_total`, goods_total);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 返回
|
|
|
+ toBack() {
|
|
|
+ window.history.go('-1');
|
|
|
+ },
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ id() {
|
|
|
+ return this.$route.query.id;
|
|
|
+ },
|
|
|
+ },
|
|
|
+ metaInfo() {
|
|
|
+ return { title: this.$route.meta.title };
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ test: {
|
|
|
+ deep: true,
|
|
|
+ immediate: true,
|
|
|
+ handler(val) {},
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less" scoped>
|
|
|
+.main {
|
|
|
+ .one {
|
|
|
+ font-size: 20px;
|
|
|
+ margin: 10px 0 0 20%;
|
|
|
+ padding: 5px;
|
|
|
+ .add {
|
|
|
+ border-bottom: 2px dashed #ccc;
|
|
|
+ margin: 0 0 5px 0;
|
|
|
+ padding: 5px 0;
|
|
|
+ }
|
|
|
+ .shop {
|
|
|
+ padding: 4px 0;
|
|
|
+ font-size: 22px;
|
|
|
+ border-bottom: 1px solid #ccc;
|
|
|
+ }
|
|
|
+ .goods {
|
|
|
+ padding: 10px 0;
|
|
|
+ .money {
|
|
|
+ text-align: right;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .other {
|
|
|
+ text-align: right;
|
|
|
+ p {
|
|
|
+ color: red;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .el-col {
|
|
|
+ margin: 4px 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|