可信代码库-编辑个人信息电话禁止修改

This commit is contained in:
付民康
2025-04-02 14:42:49 +08:00
parent 45c9d654d8
commit 172f7fbfd5
2 changed files with 10 additions and 5 deletions

View File

@@ -100,7 +100,7 @@
</d-column>
<d-column field="groupName" header="组织名称" />
<d-column field="groupDesc" header="组织简介" />
<d-column field="createTime" header="加入时间" />
<d-column field="updateTime" header="加入时间" />
<!-- <d-column header="操作">-->
<!-- <template #default="{ row }">-->
<!-- <d-button size="sm" variant="text" color="primary" class="p-0 justify-start" @click="openDeleteModal(row)">删除</d-button>-->
@@ -434,7 +434,7 @@ async function getOrgList(username) {
const res = await getGroupjoinedListApi({ username });
if (res.data?.code === 200) {
originOrgList = res.data?.data.map(item => {
return { ...item, createTime: dayjs(item.createTime).format('YYYY-MM-DD HH:mm:ss') };
return { ...item, updateTime: dayjs(item.updateTime).format('YYYY-MM-DD HH:mm:ss') };
});
orgPager.total = originOrgList.length;
updateFilterOrgTableList();