Browse Source

工作台日志动态获取

CzRger 1 year ago
parent
commit
5704a34ab4
2 changed files with 20 additions and 7 deletions
  1. 15 3
      src/views/staging/zby/center/index.vue
  2. 5 4
      src/views/system/daily-manage/detail.vue

+ 15 - 3
src/views/staging/zby/center/index.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="main">
     <div class="operation">
-      <div class="operation-item">
+      <div class="operation-item __hover" @click="onDaily">
         <div class="icon">
           <img src="@/assets/images/business/operation-daily.png"/>
         </div>
@@ -43,6 +43,7 @@
         <CalendarCom/>
       </template>
     </div>
+    <DailyDetailCom v-model:show="showDailyDetail" :transfer="transferDaily"/>
   </div>
 </template>
 
@@ -64,13 +65,15 @@ import {useRouter, useRoute} from 'vue-router'
 import ButtonSwitchCom from '../../common/button-switch.vue'
 import CalendarCom from './calendar.vue'
 import StatisticCom from './statistic.vue'
+import DailyDetailCom from '@/views/system/daily-manage/detail.vue'
 
 export default defineComponent({
   name: '',
   components: {
     ButtonSwitchCom,
     CalendarCom,
-    StatisticCom
+    StatisticCom,
+    DailyDetailCom,
   },
   setup(props, {emit}) {
     const store = useStore();
@@ -78,10 +81,19 @@ export default defineComponent({
     const route = useRoute();
     const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
     const state = reactive({
-      sourceType: '1'
+      sourceType: '1',
+      showDailyDetail: false,
+      transferDaily: {},
     })
+    const onDaily = () => {
+      state.transferDaily = {
+        method: 'add',
+      }
+      state.showDailyDetail = true
+    }
     return {
       ...toRefs(state),
+      onDaily
     }
   },
 })

+ 5 - 4
src/views/system/daily-manage/detail.vue

@@ -108,10 +108,11 @@ export default defineComponent({
               if (res.data?.id) {
                 setFormByInfo(res.data)
               } else {
-                // state.cusDetail = {
-                //   dutyTime: that.$util.YMD(new Date(store.state.app.timestamp)),
-                //   submitter: store.state.app.userInfo.displayName,
-                // }
+                const diff = new Date(store.state.app.timestamp).getHours() < 12 ? (1000 * 60 * 60 * 24) : 0
+                state.cusDetail = {
+                  dutyTime: that.$util.YMD(new Date(store.state.app.timestamp).getTime() - diff),
+                  submitter: store.state.app.userInfo.displayName,
+                }
               }
               state.loading = false
             } else {