Showing
1 changed file
with
4 additions
and
2 deletions
@@ -19,9 +19,9 @@ | @@ -19,9 +19,9 @@ | ||
19 | </template> | 19 | </template> |
20 | <template v-else> | 20 | <template v-else> |
21 | <!--资源位--> | 21 | <!--资源位--> |
22 | - <a class="resource-content" :href="resourceData.url" target="_blank"> | 22 | + <LayoutLink class="resource-content" :href="resourceData.url"> |
23 | <img :src="resourceData.src"> | 23 | <img :src="resourceData.src"> |
24 | - </a> | 24 | + </LayoutLink> |
25 | <div class="button-wrap"> | 25 | <div class="button-wrap"> |
26 | <a href="javascript:void(0)" @click="onNoAuthorizeClick(1)"><<查看订单</a> | 26 | <a href="javascript:void(0)" @click="onNoAuthorizeClick(1)"><<查看订单</a> |
27 | <a href="javascript:void(0)" @click="onNoAuthorizeClick(0)"><<返回首页</a> | 27 | <a href="javascript:void(0)" @click="onNoAuthorizeClick(0)"><<返回首页</a> |
@@ -43,6 +43,7 @@ | @@ -43,6 +43,7 @@ | ||
43 | import ProductList from '../list/components/productList'; | 43 | import ProductList from '../list/components/productList'; |
44 | import { createNamespacedHelpers } from 'vuex'; | 44 | import { createNamespacedHelpers } from 'vuex'; |
45 | import { get } from 'lodash'; | 45 | import { get } from 'lodash'; |
46 | +import LayoutLink from '../../components/layout/layout-link'; | ||
46 | 47 | ||
47 | const { mapActions: mapProductAction } = createNamespacedHelpers('product'); | 48 | const { mapActions: mapProductAction } = createNamespacedHelpers('product'); |
48 | const { mapActions: mapOrderConfirmAction } = createNamespacedHelpers('order/orderConfirm'); | 49 | const { mapActions: mapOrderConfirmAction } = createNamespacedHelpers('order/orderConfirm'); |
@@ -52,6 +53,7 @@ export default { | @@ -52,6 +53,7 @@ export default { | ||
52 | name: 'BuyPayOk', | 53 | name: 'BuyPayOk', |
53 | props: ['productId', 'orderCode'], | 54 | props: ['productId', 'orderCode'], |
54 | components: { | 55 | components: { |
56 | + LayoutLink, | ||
55 | ProductList | 57 | ProductList |
56 | }, | 58 | }, |
57 | data() { | 59 | data() { |
-
Please register or login to post a comment