| | |
| | | }, |
| | | children: [ |
| | | { |
| | | path: '/RewardList', |
| | | name: 'RewardList', |
| | | path: '/RewardGrant', |
| | | name: 'RewardGrant', |
| | | hidden: false, |
| | | alwaysShow: true, |
| | | component: () => import('@/views/Reward/Reward.vue'), |
| | | component: () => import('@/views/Reward/RewardGrant.vue'), |
| | | meta: { |
| | | rank: 10031, |
| | | title: '奖励金发放', |
| | |
| | | <div class="data-board-card-list"> |
| | | <DataBoardCard title="待审核企业" :contentBetween="true"> |
| | | <DataBoardCardPrice :value="20000" :isInline="true" :useThousand="false" unit="家" /> |
| | | <el-button type="primary" link>去审核</el-button> |
| | | <el-button type="primary" link @click="goToAudit">去审核</el-button> |
| | | </DataBoardCard> |
| | | <DataBoardCard title="奖励金待发放" :contentBetween="true"> |
| | | <DataBoardCardPrice :isInline="true" :value="20000" :useThousand="false" unit="家" /> |
| | | <el-button type="primary" link>去发放</el-button> |
| | | <el-button type="primary" link @click="goToGrant">去发放</el-button> |
| | | </DataBoardCard> |
| | | </div> |
| | | </ChunkCell> |
| | |
| | | name: 'Home', |
| | | }); |
| | | |
| | | const router = useRouter(); |
| | | const isLoading = ref(false); |
| | | function goToAudit() { |
| | | router.push({ |
| | | name: 'MaterialReviewList', |
| | | }); |
| | | } |
| | | function goToGrant() { |
| | | router.push({ |
| | | name: 'RewardGrant', |
| | | }); |
| | | } |
| | | </script> |
| | | |
| | | <style lang="scss" scoped> |
File was renamed from src/views/Reward/Reward.vue |
| | |
| | | <AppContainer> |
| | | <ProTableQueryFilterBar @on-reset="reset"> |
| | | <template #query> |
| | | <QueryFilterItem tip-content="最近申报日期"> |
| | | <QueryFilterItem tip-content="申报日期"> |
| | | <FieldDatePicker |
| | | v-model="extraParamState.date" |
| | | type="daterange" |
| | |
| | | @change="getList()" |
| | | ></FieldDatePicker> |
| | | </QueryFilterItem> |
| | | <QueryFilterItem tip-content="最近发放日期"> |
| | | <QueryFilterItem tip-content="发放日期"> |
| | | <FieldDatePicker |
| | | v-model="extraParamState.date" |
| | | type="daterange" |
| | |
| | | import { ModelValueType } from 'element-plus'; |
| | | |
| | | defineOptions({ |
| | | name: 'Reward', |
| | | name: 'RewardGrant', |
| | | }); |
| | | |
| | | const column: API.CustomModuleColumnDto[] = [ |