<!-- 要求、委托书及合同评审表 --> <script lang="ts" setup name="ReviewForm"> import { reactive, ref } from 'vue' import { ElMessage, ElMessageBox } from 'element-plus' import { getListPage } from '@/api/eqpt/MeasurementBusiness/review' import { getDictByCode } from '@/api/system/dict' const { proxy } = getCurrentInstance() as any const listQuery = reactive({ approvalStatus: '', createTimeEnd: '', createTimeStart: '', createUserName: '', formId: '', formNo: '', groupCode: '', labCode: '', measureItem: '', offset: 1, limit: 20, }) // 证书有效期开始结束时间 const datetimerange = ref([ `${new Date().getFullYear()}-01-01`, `${(new Date().getFullYear()) + 1}-01-01`, ]) watch(() => datetimerange.value, (newVal) => { listQuery.createTimeStart = '' listQuery.createTimeEnd = '' if (Array.isArray(newVal)) { if (newVal.length) { listQuery.createTimeStart = `${newVal[0]} 00:00:00` listQuery.createTimeEnd = `${newVal[1]} 23:59:59` } } }, { deep: true, immediate: true, }) const columns = ref([ { text: '文件编号', value: 'formNo', align: 'center', }, // { // text: '文件名称', // value: 'formName', // align: 'center', // }, { text: '实验室', value: 'labCodeName', align: 'center', }, { text: '专业组', value: 'groupCodeName', align: 'center', }, { text: '测试、校准或检定项目', value: 'measureItem', align: 'center', }, { text: '委托方签字情况', value: 'signStatusName', align: 'center', }, // { // text: '创建人', // value: 'createUserName', // align: 'center', // }, { text: '发布时间', value: 'createTime', align: 'center', }, ]) const list = ref([]) const total = ref(0) const listLoading = ref(true) // 获取数据 const fetchData = (isNowPage = true) => { listLoading.value = true if (!isNowPage) { // 是否显示当前页,否则跳转第一页 listQuery.offset = 1 } getListPage(listQuery).then((response) => { list.value = response.data.rows total.value = parseInt(response.data.total) listLoading.value = false }) } fetchData() // 查询数据 const search = () => { fetchData(false) } // 重置 const reset = () => { datetimerange.value = [] listQuery.approvalStatus = '' listQuery.createTimeEnd = '' listQuery.createTimeStart = '' listQuery.createUserName = '' listQuery.formNo = '' listQuery.groupCode = '' listQuery.labCode = '' listQuery.measureItem = '' listQuery.offset = 1 listQuery.limit = 20 search() } // 页数发生变化后的操作,可能是页码变化,可能是每页容量变化,此函数必写 const changePage = (val: { size: number; page: number }) => { if (val && val.size) { listQuery.limit = val.size } if (val && val.page) { listQuery.offset = val.page } fetchData() } const $router = useRouter() // 新建编辑操作 const handler = (row: any, type: string) => { $router.push({ path: `/breviewpage/${type}`, query: { row: JSON.stringify(row), id: row.id, }, }) } // 获取字典 const labCodeList = ref<{ id: string; value: string; name: string }[]>() const groupCodeList = ref<{ id: string; value: string; name: string }[]>() const fetchDict = () => { getDictByCode('bizLabCode').then((res) => { labCodeList.value = res.data }) getDictByCode('bizGroupCode').then((res) => { groupCodeList.value = res.data }) } fetchDict() </script> <template> <app-container> <!-- 筛选条件 --> <search-area :need-clear="true" @search="search" @clear="reset"> <search-item> <el-input v-model.trim="listQuery.formNo" placeholder="文件编号" clearable /> </search-item> <search-item> <!-- <el-input v-model.trim="listQuery.labCode" placeholder="实验室" clearable /> --> <el-select v-model="listQuery.labCode" filterable placeholder="实验室" style="width: 100%;"> <el-option v-for="item in labCodeList" :key="item.id" :label="item.name" :value="item.value" /> </el-select> </search-item> <search-item> <el-select v-model="listQuery.groupCode" filterable placeholder="专业组" style="width: 100%;"> <el-option v-for="item in groupCodeList" :key="item.id" :label="item.name" :value="item.value" /> </el-select> <!-- <el-input v-model.trim="listQuery.groupCode" placeholder="专业组" clearable /> --> </search-item> <search-item> <el-input v-model.trim="listQuery.measureItem" placeholder="测试、校准或检定项目" clearable /> </search-item> <search-item> <el-input v-model.trim="listQuery.createUserName" placeholder="创建人" clearable /> </search-item> <search-item> <el-date-picker v-model="datetimerange" type="daterange" value-format="YYYY-MM-DD" format="YYYY-MM-DD" range-separator="至" start-placeholder="创建开始时间" end-placeholder="创建结束时间" clearable /> </search-item> </search-area> <table-container> <!-- 普通表格 --> <normal-table :data="list" :total="total" :columns="columns as any" :query="listQuery" :list-loading="listLoading" :is-showmulti-select="true" @change="changePage" > <template #columns> <el-table-column label="操作" width="160" align="center"> <template #default="scope"> <el-button link type="primary" size="small" @click="handler(scope.row, 'detail')"> 查看 </el-button> <el-button v-if="proxy.hasPerm('/tested/business/review/approval')" link type="primary" size="small" @click="handler(scope.row, 'approve')"> 审批 </el-button> </template> </el-table-column> </template> </normal-table> </table-container> </app-container> </template>