|
@@ -11,7 +11,7 @@
|
|
|
<!-- 积分商城 -->
|
|
|
<template v-if="props.showMall">
|
|
|
<span>积分土豪的都喜欢来这里,</span>
|
|
|
- <span style="color: #10897be8; cursor: pointer;" @click="router.push({ path: '/pointsManagement'})">{{ $t('points.handpickMall') }}</span>
|
|
|
+ <span style="color: #10897be8; cursor: pointer;" @click="handleClickMall">{{ $t('points.handpickMall') }}</span>
|
|
|
</template>
|
|
|
<!-- 任务中心 -->
|
|
|
<template v-if="props.taskCenter">
|
|
@@ -41,6 +41,11 @@ const props = defineProps({
|
|
|
},
|
|
|
})
|
|
|
const integral = '135'
|
|
|
+
|
|
|
+// 跳转臻选商城
|
|
|
+const handleClickMall = () => {
|
|
|
+ window.open('/pointsManagement')
|
|
|
+}
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
.statisticsBox {
|