|
@@ -0,0 +1,57 @@
|
|
|
|
|
+<template>
|
|
|
|
|
+ <div class="page_item end_item">
|
|
|
|
|
+ <div class=" page_search">
|
|
|
|
|
+ <div class="search_content">
|
|
|
|
|
+ <div class="content_left">
|
|
|
|
|
+ <FormSearchGroup :searchList="searchList"></FormSearchGroup>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="content_right">
|
|
|
|
|
+ <el-button class="button_refresh">导出PDF</el-button>
|
|
|
|
|
+ <el-button class="button_refresh">导出Excel</el-button>
|
|
|
|
|
+ <el-button class="button_border" @click="GoToReviewAccountConfig">重新生成</el-button>
|
|
|
|
|
+ <el-button class="button_background">完成</el-button>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="page_jg_20"></div>
|
|
|
|
|
+ <Table
|
|
|
|
|
+ :current-page="1"
|
|
|
|
|
+ :page-size="20"
|
|
|
|
|
+ :table-data="[]"
|
|
|
|
|
+ :table-columns="generateCodeTableColumns"
|
|
|
|
|
+ :total-num="0"
|
|
|
|
|
+ ></Table>
|
|
|
|
|
+ </div>
|
|
|
|
|
+</template>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+<script setup lang="ts">
|
|
|
|
|
+
|
|
|
|
|
+import { useRoute,useRouter } from 'vue-router';
|
|
|
|
|
+
|
|
|
|
|
+import FormSearchGroup from '@/baseComponents/FormSearchGroup.vue';
|
|
|
|
|
+import Table from '@/baseComponents/Table.vue';
|
|
|
|
|
+
|
|
|
|
|
+import { searchList } from './formSearchGroup';
|
|
|
|
|
+import { generateCodeTableColumns } from './table';
|
|
|
|
|
+
|
|
|
|
|
+import {
|
|
|
|
|
+ generateReviewCodeListApi,finishReviewAccountApi,
|
|
|
|
|
+} from '@/api/step4Component'
|
|
|
|
|
+import { onMounted } from 'vue';
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+const router = useRouter()
|
|
|
|
|
+const route = useRoute()
|
|
|
|
|
+const GoToReviewAccountConfig = ()=>{
|
|
|
|
|
+ router.push(`reviewAccount?id=${route.query.id}`)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+onMounted(()=>{
|
|
|
|
|
+
|
|
|
|
|
+})
|
|
|
|
|
+</script>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+<style lang="less" scoped>
|
|
|
|
|
+</style>
|