12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <template>
- <el-table :data="tableData" id="tableStyle" :height="tableHeight" border>
- <el-table-column prop="operationName" label="上传工序" />
- <el-table-column prop="creator" label="上传人员" />
- <el-table-column prop="created" label="上传时间" />
- <el-table-column label="操作" prop="operation">
- <template #default="{ row }">
- <span @click="handleLook(row.filePath)">查看</span>
- </template>
- </el-table-column>
- <template #empty>
- <div class="empty">
- <Empty />
- </div>
- </template>
- </el-table>
- <el-image id="showImg" style="width: 0; height: 0" :min-scale="0.2" :src="srcList[0]" :preview-src-list="srcList"
- fit="cover" />
- <Pagination position="right" :page="page" :limit="limit" :total="total" @pagination="getPagination" />
- </template>
- <script lang="ts" setup>
- import { useProcessStore } from "@/store";
- import { media } from "@/api/process/traceability";
- const store = useProcessStore();
- const page = ref(1);
- const limit = ref(10);
- const total = ref(10);
- const tableData = ref([]);
- const tableHeight = ref(null);
- const srcList = ref([]);
- const baseUrl = import.meta.env.VITE_APP_UPLOAD_URL;
- const handleLook = (path: string) => {
- srcList.value = [];
- srcList.value.push(baseUrl + path);
- setTimeout(() => {
- document.getElementById("showImg").click();
- }, 0);
- };
- //动态控制表格高度
- const setTableHeight = () => {
- tableHeight.value =
- Number(document.getElementById("tabBox").offsetHeight) - 60;
- };
- const getPagination = async () => {
- const { data } = await media({
- pageNo: page.value,
- pageSize: limit.value,
- seqNo: store.useSeqNo,
- });
- total.value = data.totalCount;
- tableData.value = data.records;
- };
- onMounted(() => {
- getPagination();
- setTableHeight();
- });
- </script>
- <style lang="scss" scoped></style>
|