Commit 02a04de0 authored by 罗林杰's avatar 罗林杰

修改元数据

parent 4ce694a7
<template>
<PageWrapper title="元数据对比" contentFullHeight contentBackground contentClass="flex">
<template #footer>
<div style="display: flex; justify-content: flex-end; padding-bottom: 10px">
<div style="background-color: white">
<div
style="
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
margin-left: 12px;
padding-bottom: 50px;
"
>
<div
style="
margin-top: 10px;
display: flex;
font-weight: bold;
font-size: 35px;
margin-left: 10px;
"
>元数据对比
</div>
<div style="margin-top: 20px; display: flex">
<a-button style="margin-right: 5px" type="primary" v-show="cancelType" @click="handleCancel"
>退出</a-button
>
<a-button style="margin-right: 5px" type="primary" @click="handleComparison"
>开始对比</a-button
>
<a-button style="margin-right: 5px" type="primary" @click="handleImport">导出</a-button>
<a-button style="margin-right: 70px" type="primary" @click="handleImport">导出</a-button>
</div>
</template>
</div>
<div style="display: flex">
<div class="w-1/2 xl:w-1/2 pl-4">
<div>
<BasicForm @register="registerMainForm" />
......@@ -86,7 +106,9 @@
<BasicTable @register="registerLastIndexTable">
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'name'">
<span :style="{ color: record.name === '0' ? 'red' : '' }" v-if="record.name === '0'"
<span
:style="{ color: record.name === '0' ? 'red' : '' }"
v-if="record.name === '0'"
>id</span
>
</template>
......@@ -105,11 +127,11 @@
<BasicTable @register="registerSampleDataTable" />
</div>
</div>
</PageWrapper>
</div>
</div>
</template>
<script lang="ts" setup>
import { BasicTable, useTable } from '@/components/Table';
import { PageWrapper } from '@/components/Page';
import { Description } from '@/components/Description';
import {
refundSchema,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment