Commit c054da4d authored by chenqikuai's avatar chenqikuai

fix

parent 7bcaa6cc
......@@ -25,7 +25,7 @@ const emit = defineEmits(["update:modelValue"]);
<style lang="scss">
.blackModeMenu___ {
.line.short {
div.line.short {
height: 3px;
bottom: 0;
}
......
......@@ -49,6 +49,10 @@ useEventListener(window, "keydown", (e) => {
</script>
<style scoped lang="scss">
:deep(#imageDisplay) {
width: fit-content;
margin: 0 auto;
}
.close {
position: absolute;
top: 20px;
......
......@@ -112,9 +112,9 @@ const getLineWidth = (index: number, length: number) => {
}
.line.short {
width: calc(100% - 24px);
bottom: 8px;
}
.line {
div.line {
bottom: 8px;
position: absolute;
width: calc(100% - 38px);
min-width: 10px;
......
......@@ -10,7 +10,7 @@
padding-top: 60px;
padding-left: 68px;
padding-right: 68px;
width: 858px;
width: 1200px;
"
>
<div class="title text-center" ref="titleRef">填写版权信息</div>
......
......@@ -5,7 +5,7 @@
</syHeaderNavBar>
<ModuleContainer
class="mx-auto"
style="width: 858px; margin-top: 17px"
style="width: 1200px; margin-top: 17px"
v-if="
data?.record_work_status === eStatusOfCopyright.NOT_PASSED ||
data?.record_work_status === eStatusOfCopyright.RECORD_SUCCESS
......@@ -107,7 +107,7 @@
</div>
</div>
</ModuleContainer>
<ModuleContainer class="mx-auto" style="width: 858px; margin-top: 17px">
<ModuleContainer class="mx-auto mb-10" style="width: 1200px; margin-top: 17px">
<div class="overflow-hidden">
<div
class="title"
......@@ -333,7 +333,7 @@ async function handleClickDel(raw: iCopyRight) {
line-height: 40px;
}
.line {
height: 2px;
height: 1px;
background: #f0f1f5;
width: 100%;
margin-top: 30px;
......
......@@ -8,6 +8,21 @@
v-loading="loading"
element-loading-text="加载中..."
>
<template #authentication_name="slotProps">
<div
class="cursor-pointer overflow-hidden text-ellipsis"
@click="
$router.push({
name: 'filingPersonDetail',
query: {
id: slotProps.id,
},
})
"
>
{{ slotProps.authentication_name }}
</div>
</template>
<template #currentStatusCell="slotProps">
<div class="flex items-center">
<ApproveStatus
......@@ -58,19 +73,21 @@
</div>
</template>
<template #operate="slotProps">
<syMoreOperate
:teleport="true"
:list="getOperateList(slotProps)"
@click-item="(value) => handleClickItem(value, slotProps)"
:margin-left="-10"
class="align-middle"
>
<Icon
icon-name="iconbianzu7-copy"
style="font-size: 26px"
class="cursor-pointer"
></Icon>
</syMoreOperate>
<div class="text-right">
<syMoreOperate
:teleport="true"
:list="getOperateList(slotProps)"
@click-item="(value) => handleClickItem(value, slotProps)"
:margin-left="-65"
class="align-middle"
>
<Icon
icon-name="iconbianzu7-copy"
style="font-size: 26px"
class="cursor-pointer"
></Icon>
</syMoreOperate>
</div>
</template>
</Table>
</template>
......
......@@ -3,6 +3,8 @@ export const tableColumns = [
{
label: "备案人",
prop: "authentication_name",
slotName: "authentication_name",
showOverflowTooltip: true,
minWidth: 300,
},
{
......@@ -19,11 +21,12 @@ export const tableColumns = [
label: "当前状态",
slotName: "currentStatusCell",
headerSlotName: "currentStatusHeader",
// minWidth: 200,
width: 140,
},
{
label: "操作",
slotName: "operate",
headerAlign: 'right',
width: 100,
},
] as iTableColumn[];
......@@ -14,12 +14,13 @@ export const columns = [
} as iTableColumn,
{
label: "区块链查询",
minWidth: "100px",
width: "140px",
slotName: "query",
} as iTableColumn,
{
label: "操作",
minWidth: "100px",
width: "100px",
slotName: "operate",
headerAlign: 'right'
} as iTableColumn,
];
......@@ -31,18 +31,21 @@
</syMoreOperate>
</template>
<template #operate="slotProps">
<syMoreOperate
:teleport="true"
:list="operateList"
@click-item="
(value) =>
operateList.find((i) => i.value === value)?.click(slotProps)
"
:disabled="slotProps.status !== 2"
class="align-middle"
>
<Icon icon-name="iconbianzu7-copy" style="font-size: 26px"></Icon>
</syMoreOperate>
<div class="text-right">
<syMoreOperate
:teleport="true"
:list="operateList"
:margin-left="-65"
@click-item="
(value) =>
operateList.find((i) => i.value === value)?.click(slotProps)
"
:disabled="slotProps.status !== 2"
class="align-middle"
>
<Icon icon-name="iconbianzu7-copy" style="font-size: 26px"></Icon>
</syMoreOperate>
</div>
</template>
</Table>
</div>
......
......@@ -25,14 +25,14 @@ export const columns = [
prop: "",
label: "浏览器查询",
slotName: "query",
width: "150px",
width: "120px",
headerAlign: "center",
} as iTableColumn,
{
prop: "",
label: "操作",
width: "100px",
headerAlign: "center",
headerAlign: "right",
slotName: "operate",
} as iTableColumn,
];
......@@ -97,12 +97,12 @@
</div>
</template>
<template #operate="slotProps">
<div class="text-center">
<div class="text-right">
<syMoreOperate
:teleport="true"
:list="getOperateList(slotProps)"
@click-item="(value) => handleClickItem(value, slotProps)"
:margin-left="-20"
:margin-left="-65"
class="align-middle"
>
<Icon
......
......@@ -7,6 +7,21 @@
class="copyrightTable"
element-loading-text="加载中..."
>
<template #record_work_name="slotProps">
<div
class="cursor-pointer overflow-hidden text-ellipsis"
@click="
$router.push({
name: `copyRightDetail`,
query: {
id: slotProps.id,
},
})
"
>
{{ slotProps.record_work_name }}
</div>
</template>
<template #currentStatusCell="slotProps">
<div class="flex items-center">
<ApproveStatus
......@@ -43,19 +58,21 @@
{{ formatTime(slotProps.create_time) }}
</template>
<template #operate="slotProps">
<syMoreOperate
:teleport="true"
:list="getOperateList(slotProps)"
@click-item="(value) => handleClickItem(value, slotProps)"
:margin-left="-10"
class="align-middle"
>
<Icon1
icon-name="iconbianzu7-copy"
style="font-size: 26px"
class="cursor-pointer"
></Icon1>
</syMoreOperate>
<div class="text-right">
<syMoreOperate
:teleport="true"
:list="getOperateList(slotProps)"
@click-item="(value) => handleClickItem(value, slotProps)"
:margin-left="-65"
class="align-middle"
>
<Icon1
icon-name="iconbianzu7-copy"
style="font-size: 26px"
class="cursor-pointer"
></Icon1>
</syMoreOperate>
</div>
</template>
</Table>
</template>
......
......@@ -3,6 +3,8 @@ export const tableColumns = [
{
label: "版权名称",
prop: "record_work_name",
slotName: "record_work_name",
showOverflowTooltip: true,
minWidth: 300,
},
{
......@@ -24,11 +26,12 @@ export const tableColumns = [
label: "当前状态",
slotName: "currentStatusCell",
headerSlotName: "currentStatusHeader",
// minWidth: "200",
width: 140,
},
{
label: "操作",
slotName: "operate",
width: "100",
headerAlign: "right",
width: "70",
},
] as iTableColumn[];
......@@ -12,11 +12,13 @@ export const tableColumns = [
label: "作品类型",
prop: "record_work_type",
slotName: "record_work_type",
width: 200,
},
{
label: "提交日期",
prop: "create_time",
slotName: "create_time",
width: 250,
},
{
label: "操作",
......
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