|
@@ -1,6 +1,6 @@
|
|
<template>
|
|
<template>
|
|
<div class="hc-page-box">
|
|
<div class="hc-page-box">
|
|
- <HcCard>
|
|
|
|
|
|
+ <HcCard actionUi="text-center">
|
|
<template #header>
|
|
<template #header>
|
|
<el-button :type="authBtnTabKey === '1'?'primary':''" hc-btn @click="authBtnTabClick('1')">
|
|
<el-button :type="authBtnTabKey === '1'?'primary':''" hc-btn @click="authBtnTabClick('1')">
|
|
<HcIcon name="folder-user"/>
|
|
<HcIcon name="folder-user"/>
|
|
@@ -41,9 +41,28 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
-
|
|
|
|
|
|
+ <!--清表列表-->
|
|
|
|
+ 清表列表(等待接口,然后把资料填报的组件,搬过来改一下即可。目前没数据,搞起来麻烦。)
|
|
|
|
+ <!--el-scrollbar ref="ListItemScrollRef" v-loading="ListItemLoading" v-if="ListItemDatas.length > 0">
|
|
|
|
+ <ListItem ref="ListItemRef" :datas="ListItemDatas" :status="NodeStatus" :classify="authBtnTabKey" @offsetTop="ListItemOffsetTop" :primaryKeyId="primaryKeyId" :contractId="contractId" @renew="getTableDataAll"/>
|
|
|
|
+ </el-scrollbar-->
|
|
<template #action>
|
|
<template #action>
|
|
-
|
|
|
|
|
|
+ <el-button type="primary" hc-btn>
|
|
|
|
+ <HcIcon name="save"/>
|
|
|
|
+ <span>保存</span>
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button hc-btn>
|
|
|
|
+ <HcIcon name="send-plane-2"/>
|
|
|
|
+ <span>上报</span>
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button hc-btn>
|
|
|
|
+ <HcIcon name="eye"/>
|
|
|
|
+ <span>预览</span>
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button hc-btn>
|
|
|
|
+ <HcIcon name="arrow-go-back"/>
|
|
|
|
+ <span>撤回上报流程</span>
|
|
|
|
+ </el-button>
|
|
</template>
|
|
</template>
|
|
</HcCard>
|
|
</HcCard>
|
|
</div>
|
|
</div>
|
|
@@ -53,6 +72,7 @@
|
|
import {ref, watch, onMounted} from "vue";
|
|
import {ref, watch, onMounted} from "vue";
|
|
import {useAppStore} from "~src/store";
|
|
import {useAppStore} from "~src/store";
|
|
import {useRoute} from 'vue-router'
|
|
import {useRoute} from 'vue-router'
|
|
|
|
+import ListItem from "./components/ListItem.vue"
|
|
|
|
|
|
//变量
|
|
//变量
|
|
const useRoutes = useRoute()
|
|
const useRoutes = useRoute()
|