123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- <template>
- <hc-new-card scrollbar>
- <template #header />
- <template #extra>
- <!-- <HcNewSwitch :datas="tabData" :keys="tabKey" :round="false" @change="tabChange" /> -->
- <el-button hc-btn color="#626aef">
- <HcIcon name="eye" />
- <span>历史验收报告</span>
- </el-button>
- <el-button hc-btn class=" m-1" type="warning">
- <HcIcon name="eye" />
- <span>历史整改报告</span>
- </el-button>
- <HcTooltip keys="file_collection_btn_upload_scanned_files">
- <el-button v-if="!showBtn" type="primary" hc-btn @click="reportModalClick">
- <HcIcon name="git-pull-request" />
- <span>申请验收</span>
- </el-button>
- <el-button v-else type="primary" hc-btn @click="cancelClick">
- <HcIcon name="git-pull-request" />
- <span>撤回验收申请</span>
- </el-button>
- </HcTooltip>
- </template>
- <div v-loading="totalLoaing" class="h-screen">
- <div v-for="(item) in totalData" :key="item.unitInfo">
- <div class="hc-card-table-title">{{ item.unitInfo }}</div>
- <template v-for="(item1) in item.nodeLists" :key="item1.nodeInfo">
- <HcCardItem v-if="item1.list !== null" ui="h-half">
- <template #header>
- <span>{{ item1.nodeInfo }}</span>
- <!-- <span class="text-gray">(238卷)</span> -->
- </template>
- <div :style="`height: ${item1.list !== null ? '300px' : 'auto'};`">
- <!-- <HcTable
- ref="tableRef" :column="tableColumn" :datas="item1.list" :loading="tableLoading"
- is-new :index-style="{ width: 60 }" is-check :check-style="{ width: 29 }"
- @selection-change="tableSelection"
- /> -->
- <visualTable :table-data="item1.list " />
- </div>
- </HcCardItem>
- </template>
- </div>
- </div>
- </hc-new-card>
- <!-- 批量上报审批 -->
- <HcReportModal
- title="申请验收"
- widths="1080px"
- url="archivesauto/saveApply"
- :show="showReportModal"
- :project-id="projectId"
- :contract-id="contractId"
- :task-name="reportTaskName"
- :ids="reportIds"
- is-datas
- :datas="reportDatas"
- @hide="showReportModal = false"
- @finish="showReportFinish"
- @tagClose="reportTaskTagClose"
- />
- </template>
- <script setup>
- import { nextTick, onMounted, ref, watch } from 'vue'
- import { getArrValue, getObjValue } from 'js-fast-way'
- import { rowsToId } from '~uti/tools'
- import initialgApi from '~api/initial/initial'
- import visualTable from './visual-table.vue'
- //参数
- const props = defineProps({
- projectId: {
- type: [String, Number],
- default: '',
- },
- contractId: {
- type: [String, Number],
- default: '',
- },
- treeData: {
- type: Object,
- default: () => ({}),
- },
- })
- //变量
- const projectId = ref(props.projectId)
- const contractId = ref(props.contractId)
- const nodeData = ref(props.treeData)
- //监听
- watch(() => [
- props.treeData,
- ], ([treeData]) => {
- nodeData.value = treeData
- })
- //渲染完成
- onMounted(() => {
- getBtnstatus()
- getTotalData()
- })
- //查看验收申请状态
- const showBtn = ref(true)
- const getBtnstatus = async ()=>{
- const { error, code, data } = await initialgApi.getApplyStatus({
- projectId: projectId.value,
- })
- if (!error && code === 200) {
- console.log(data, 'data')
- showBtn.value = data
- } else {
- showBtn.value = true
-
- }
- }
- const totalData = ref([])
- const totalLoaing = ref(false)
- const getTotalData = async ()=>{
- totalLoaing.value = true
- const { error, code, data } = await initialgApi.getAllUnitArchivesView({
- projectId: projectId.value,
- })
- totalLoaing.value = false
- if (!error && code === 200) {
- console.log(data, 'data')
- totalData.value = getArrValue(data)
- } else {
- totalData.value = []
-
- }
- }
- //tab数据和相关处理
- const tabKey = ref('tab2')
- const tabData = ref([
- // { key:'tab1', name: '全部汇总' },
- { key:'tab2', name: '历史验收报告' },
- { key:'tab3', name: '历史整改报告' },
- ])
- const tabChange = (item) => {
- tabKey.value = item?.key
- }
- //------立项审批
- //搜索表单
- const searchForm = ref({
- current: 1, size: 20, total: 0,
- })
- //分页被点击
- const pageChange = ({ current, size }) => {
- searchForm.value.current = current
- searchForm.value.size = size
- getTableData()
- }
- //表头
- const tableRef = ref(null)
- const tableColumn = ref([
- { key:'fileNumber', name: '档号', width: 180 },
- { key:'name', name: '案卷题名' },
- { key:'pageN', name: '总页数', width: 120 },
- { key:'storageTimeValue', name: '保管期限', width: 120 },
- { key:'remark', name: '备注' },
- ])
- const tableData = ref([])
- //获取数据
- const tableLoading = ref(false)
- const getTableData = async () => {
- }
- //多选
- const tableKeys = ref([])
- const tableSelection = (rows) => {
- tableKeys.value = rows
- }
- //------勘察设计文件
- //搜索表单
- const searchFormFile = ref({
- current: 1, size: 20, total: 0,
- })
- //分页被点击
- const pageFileChange = ({ current, size }) => {
- searchFormFile.value.current = current
- searchFormFile.value.size = size
- getTableFileData()
- }
- //表头
- const tableFileRef = ref(null)
- const tableFileColumn = ref([
- { key:'key1', name: '档号', width: 180 },
- { key:'key2', name: '案卷题名' },
- { key:'key3', name: '总页数', width: 120 },
- { key:'key4', name: '保管期限', width: 120 },
- { key:'key5', name: '备注' },
- ])
- const tableFileData = ref([
- {
- id: 1,
- key1: 'FJZB-02-123',
- key2: '初步设计外业验收有关文件、工程初步设计图纸、初步设计批复、初步设计审查咨询报告',
- key3: '293',
- key4: '永久',
- key5: '备注信息',
- },
- {
- id: 2,
- key1: 'FJZB-02-123',
- key2: '初步设计外业验收有关文件、工程初步设计图纸、初步设计批复、初步设计审查咨询报告',
- key3: '293',
- key4: '永久',
- key5: '备注信息',
- },
- {
- id: 2,
- key1: 'FJZB-02-123',
- key2: '初步设计外业验收有关文件、工程初步设计图纸、初步设计批复、初步设计审查咨询报告',
- key3: '293',
- key4: '永久',
- key5: '备注信息',
- },
- ])
- //获取数据
- const tableFileLoading = ref(false)
- const getTableFileData = async () => {
- }
- //多选
- const tableFileKeys = ref([])
- const tableeFileSelection = (rows) => {
- tableFileKeys.value = rows
- }
- //上报
- const reportIds = ref('')
- const reportTaskName = ref('')
- const reportDatas = ref([])
- const showReportModal = ref(false)
- const reportLoading = ref(false)
- const reportModalClick = async () => {
- const rows = tableKeys.value
- console.log(rows, 'rows验收申请行')
- if (rows.length > 0) {
- //初始ID
- const row = getObjValue(rows[0])
- reportIds.value = rowsToId(rows)
- //设置任务数据
- let reportDataArr = []
- rows.forEach(item => {
- reportDataArr.push({
- id: item?.id,
- name: item?.name,
- })
- })
- reportDatas.value = reportDataArr
- //设置任务名称
- reportTaskName.value = rows.length > 1 ? `${row.name}等${rows.length}个文件` : row.name
- reportLoading.value = false
- showReportModal.value = true
- } else {
- window.$message?.warning('请先勾选需要申请验收的数据')
- }
- }
- //上报的审批内容移除
- const reportTaskTagClose = (index) => {
- //const row = tableCheckedKeys.value[index];
- //tableListRef.value?.toggleRowSelection(row,false)
- }
- //上报完成
- const showReportFinish = async () => {
- showReportModal.value = false
- tableKeys.value = []
- await getBtnstatus()
- getTotalData()
- }
- //撤回验收申请
- const cancelClick = ()=>{
- window?.$messageBox?.alert('确认撤销? 撤销之后专家账号也一并清空删除', '提示', {
- showCancelButton: true,
- confirmButtonText: '确认撤销',
- cancelButtonText: '取消',
- callback: async (action, ctx ) => {
- if (action === 'confirm') {
- ctx.confirmButtonLoading = true
- const { code, msg, error } = await initialgApi.annulApply({
- projectId:projectId.value,
- })
- ctx.confirmButtonLoading = true
- if (!error && code === 200) {
- window.$message?.success(msg)
- getBtnstatus()
- getTotalData()
-
- }
- }
- },
- })
- }
- </script>
- <style lang="scss" scoped>
- @import '~style/transfer/scoped/initial.scss';
- </style>
|