...
|
...
|
@@ -19,9 +19,9 @@ |
|
|
</template>
|
|
|
<template v-else>
|
|
|
<!--资源位-->
|
|
|
<a class="resource-content" :href="resourceData.url" target="_blank">
|
|
|
<LayoutLink class="resource-content" :href="resourceData.url">
|
|
|
<img :src="resourceData.src">
|
|
|
</a>
|
|
|
</LayoutLink>
|
|
|
<div class="button-wrap">
|
|
|
<a href="javascript:void(0)" @click="onNoAuthorizeClick(1)"><<查看订单</a>
|
|
|
<a href="javascript:void(0)" @click="onNoAuthorizeClick(0)"><<返回首页</a>
|
...
|
...
|
@@ -43,6 +43,7 @@ |
|
|
import ProductList from '../list/components/productList';
|
|
|
import { createNamespacedHelpers } from 'vuex';
|
|
|
import { get } from 'lodash';
|
|
|
import LayoutLink from '../../components/layout/layout-link';
|
|
|
|
|
|
const { mapActions: mapProductAction } = createNamespacedHelpers('product');
|
|
|
const { mapActions: mapOrderConfirmAction } = createNamespacedHelpers('order/orderConfirm');
|
...
|
...
|
@@ -52,6 +53,7 @@ export default { |
|
|
name: 'BuyPayOk',
|
|
|
props: ['productId', 'orderCode'],
|
|
|
components: {
|
|
|
LayoutLink,
|
|
|
ProductList
|
|
|
},
|
|
|
data() {
|
...
|
...
|
|