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