fix: 组织订阅消息添加字段订阅人

This commit is contained in:
汪少伟
2025-03-17 09:00:53 +08:00
parent 2adec4c984
commit a169e5b3ce
4 changed files with 11 additions and 11 deletions

View File

@@ -6,7 +6,6 @@
<d-column field="code" header="订阅时间"></d-column>
<d-column field="name" header="软件/组件名称"></d-column>
<d-column field="detail" header="版本号"></d-column>
<d-column field="owner" header="订阅人"></d-column>
<d-column header="操作" width="100">
<template #default="scope">
<d-popover>
@@ -30,7 +29,7 @@
<script setup lang="ts">
import { ref } from 'vue';
const tableData = ref([{ code: '05822156', name: 'MIT License', detail: 'integer', owner: 'admin' }]);
const tableData = ref([{ code: '05822156', name: 'MIT License', detail: 'integer' }]);
const hidden = () => {
// 模拟body点击操作
document.querySelector('body')?.click();