|
@@ -5,10 +5,7 @@
|
|
|
{label: '日志', value: '1'},
|
|
|
{label: '周报', value: '2'},
|
|
|
]" padding="6px 16px" type="type2" v-model:active="sourceType"/>
|
|
|
- <div class="more __hover" @click="
|
|
|
- sourceType === '1' ?
|
|
|
- $router.push({name: '271b733b-f08c-4628-bc98-eae5a40887da'}) :
|
|
|
- $router.push({name: '258df2a8-c2db-4fc6-9f9e-3845b58b9dd3'})">查看更多》</div>
|
|
|
+ <div class="more __hover" @click="onOpen">查看更多》</div>
|
|
|
</template>
|
|
|
<div class="list" v-loading="loading">
|
|
|
<template v-if="sourceType === '1'">
|
|
@@ -128,6 +125,13 @@ export default defineComponent({
|
|
|
state.loading = false
|
|
|
})
|
|
|
}
|
|
|
+ const onOpen = () => {
|
|
|
+ if (state.sourceType === '1') {
|
|
|
+ window.open('/system/daily')
|
|
|
+ } else {
|
|
|
+ window.open('/system/weekly')
|
|
|
+ }
|
|
|
+ }
|
|
|
watch(() => state.sourceType, (n) => {
|
|
|
if (n === '1') {
|
|
|
initDaily()
|
|
@@ -146,7 +150,8 @@ export default defineComponent({
|
|
|
})
|
|
|
return {
|
|
|
...toRefs(state),
|
|
|
- onView
|
|
|
+ onView,
|
|
|
+ onOpen
|
|
|
}
|
|
|
},
|
|
|
})
|