|
|
|
|
@ -152,7 +152,7 @@ import { PlusOutlined, EllipsisOutlined, UploadOutlined, DownOutlined } from "@a
|
|
|
|
|
import { Modal, message } from "ant-design-vue";
|
|
|
|
|
import { useRouter, useRoute } from "vue-router";
|
|
|
|
|
import { getUserListApi, updateUserStatusApi, addUserApi, delUserApi, updateUserApi } from "../../api/userList/userList";
|
|
|
|
|
import { getMessageListApi } from "../../api/messageConfig/message";
|
|
|
|
|
import { getMessageListApi,delMessageApi } from "../../api/messageConfig/message";
|
|
|
|
|
|
|
|
|
|
import { DownloadOutlined } from "@ant-design/icons-vue";
|
|
|
|
|
import idCardPanel from "../components/upload/image.vue";
|
|
|
|
|
@ -298,7 +298,7 @@ const getTable = () => {
|
|
|
|
|
item.rank = index + 1;
|
|
|
|
|
// item.title = "常用发票主体信息";
|
|
|
|
|
// item.content = "默认主体:郑州伯才科技有限公司 单位名称:郑州伯才科技有限公司 纳税人识别号:91410100MA9L4HDT0L 地址:河南自贸试验区郑州";
|
|
|
|
|
// item.time = "2024-03-11 13:04:24";
|
|
|
|
|
item.time = item.createTime;
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
@ -331,7 +331,7 @@ const columns = ref([
|
|
|
|
|
title: "标题",
|
|
|
|
|
key: "title",
|
|
|
|
|
dataIndex: "title",
|
|
|
|
|
width: "180px",
|
|
|
|
|
width: "240px",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
@ -411,9 +411,9 @@ const handleApplication = (record) => {
|
|
|
|
|
const handleDel = ($data) => {
|
|
|
|
|
commonJS.gConfirmModal(
|
|
|
|
|
"删除",
|
|
|
|
|
"确认删除该用户吗?",
|
|
|
|
|
"确认删除该内容吗?",
|
|
|
|
|
() => {
|
|
|
|
|
delUserApi($data.id).then(() => {
|
|
|
|
|
delMessageApi($data.id).then(() => {
|
|
|
|
|
message.success("删除成功");
|
|
|
|
|
getTable();
|
|
|
|
|
});
|
|
|
|
|
|