| | |
| | | <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> |