Browse Source

【值班系统】查看更--的页面跳转及数据展示

CzRger 1 year ago
parent
commit
67cd5a3b4b

+ 6 - 2
src/views/staging/zbgly/right/attendance-com.vue

@@ -1,7 +1,7 @@
 <template>
   <BaseBlockCom title="考勤情况" style="position: relative;">
     <template #title>
-      <div class="more __hover" @click="$router.push({name: '7d1096ea-871a-4ab6-9909-29cce6c399fa'})">查看更多》</div>
+      <div class="more __hover" @click="onOpen">查看更多》</div>
     </template>
     <ButtonSwitchCom class="buttons" :options="[
           {label: '昨日', value: 'day'},
@@ -110,6 +110,9 @@ export default defineComponent({
         state.loading = false
       })
     }
+    const onOpen = () => {
+      window.open('/system/sign')
+    }
     watch(() => state.dateType, () => {
       initStatisticData()
     }, {
@@ -120,7 +123,8 @@ export default defineComponent({
     })
     return {
       ...toRefs(state),
-      handleButtonClick
+      handleButtonClick,
+      onOpen
     }
   },
 })

+ 6 - 2
src/views/staging/zbgly/right/notice-com.vue

@@ -1,7 +1,7 @@
 <template>
   <BaseBlockCom title="通知公告">
     <template #title>
-      <div class="more __hover" @click="$router.push({name: 'fc9664b6-69f3-4dc8-bedb-a391fdc3a0db'})">查看更多》</div>
+      <div class="more __hover" @click="onOpen">查看更多》</div>
     </template>
     <div class="list" v-loading="loading">
       <template v-for="item in list">
@@ -83,13 +83,17 @@ export default defineComponent({
     const initDictionary = () => {
       store.dispatch('dictionary/LOAD_DICT_LIST', 'notice_type')
     }
+    const onOpen = () => {
+      window.open('/system/notice')
+    }
     onActivated(() => {
       initData()
       initDictionary()
     })
     return {
       ...toRefs(state),
-      onView
+      onView,
+      onOpen
     }
   },
 })

+ 10 - 5
src/views/staging/zby/right/daily-weekly-com.vue

@@ -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
     }
   },
 })

+ 6 - 2
src/views/staging/zby/right/notice-com.vue

@@ -1,7 +1,7 @@
 <template>
   <BaseBlockCom title="通知公告">
     <template #title>
-      <div class="more __hover" @click="$router.push({name: 'fc9664b6-69f3-4dc8-bedb-a391fdc3a0db'})">查看更多》</div>
+      <div class="more __hover" @click="onOpen">查看更多》</div>
     </template>
     <div class="list" v-loading="loading">
       <template v-for="item in list">
@@ -86,6 +86,9 @@ export default defineComponent({
     const initDictionary = () => {
       store.dispatch('dictionary/LOAD_DICT_LIST', 'notice_type')
     }
+    const onOpen = () => {
+      window.open('/system/notice')
+    }
     onActivated(() => {
       initData()
       initDictionary()
@@ -93,7 +96,8 @@ export default defineComponent({
     return {
       ...toRefs(state),
       onView,
-      initData
+      initData,
+      onOpen
     }
   },
 })