diff --git a/src/pages/HotManage/index.jsx b/src/pages/HotManage/index.jsx
index 2310284..d8996d8 100644
--- a/src/pages/HotManage/index.jsx
+++ b/src/pages/HotManage/index.jsx
@@ -36,7 +36,7 @@ export default function HotManage() {
diff --git a/src/pages/Notices/index.jsx b/src/pages/Notices/index.jsx
index ed601d4..254128c 100644
--- a/src/pages/Notices/index.jsx
+++ b/src/pages/Notices/index.jsx
@@ -24,6 +24,8 @@ import { useMemo } from "react";
import dayjs from "dayjs";
import debounce from "lodash/debounce";
import { DeleteFilled } from "@ant-design/icons";
+import { ConfigProvider } from "antd";
+import zhCN from "antd/es/locale/zh_CN";
const NoticesContent = (props) => {
const [messageApi, contextHolder] = message.useMessage();
//控制创建动态modal是否出现
@@ -55,30 +57,30 @@ const NoticesContent = (props) => {
value: 0,
},
{
- text: "付费通知",
+ text: "审核通知",
value: 1,
},
{
- text: "活动通知",
+ text: "付费消息",
value: 2,
},
{
- text: "审核通知",
+ text: "活动消息",
value: 3,
},
],
filterMode: "tree",
- onFilter: (value, record) => record.status == value,
+ onFilter: (value, record) => record.n_type === value,
render: (data) => {
return (
{data == 0
? "系统通知"
: data == 1
- ? "付费通知"
+ ? "审核通知"
: data == 2
- ? "活动通知"
- : "审核通知"}
+ ? "付费消息"
+ : "活动消息"}
);
},
@@ -87,12 +89,13 @@ const NoticesContent = (props) => {
title: "通知标题",
dataIndex: "title",
key: "title",
+ width: 150,
},
{
title: "推送消息正文",
dataIndex: "message",
key: "message",
- width: 300,
+ width: 200,
},
{
title: "推送消息主图",
@@ -115,12 +118,13 @@ const NoticesContent = (props) => {
},
{
title: "链接标语",
- width: 90,
+ width: 120,
dataIndex: "link_text",
key: "link_text",
render: (data) =>
{data || "-"}
,
},
{
+ width: 200,
title: "链接",
dataIndex: "hyperlinks",
key: "hyperlinks",
@@ -133,6 +137,14 @@ const NoticesContent = (props) => {
{hyperlink.action === "outward"
? "外部链接:"
+ : hyperlink.action === "webViewHeaderInward"
+ ? "应用内打开内链(带头):"
+ : hyperlink.action === "webViewHeaderOutward"
+ ? "应用内打开外链(带头):"
+ : hyperlink.action === "webViewWithOutHeaderInward"
+ ? "应用内打开内链(不带头):"
+ : hyperlink.action === "webViewWithOutHeaderOutward"
+ ? "应用内打开外链(不带头):"
: index
? "H5:"
: "App:"}
@@ -151,6 +163,7 @@ const NoticesContent = (props) => {
},
},
{
+ width: 150,
title: "推送时间",
dataIndex: "push_time",
key: "push_time",
@@ -165,10 +178,10 @@ const NoticesContent = (props) => {
},
},
{
- width: 100,
+ width: 150,
title: "推送角色",
- dataIndex: "obj_mids",
- key: "obj_mids",
+ dataIndex: "obj_user_ids",
+ key: "obj_user_ids",
render: (data) => (
{data?.length > 0
@@ -201,6 +214,7 @@ const NoticesContent = (props) => {
},
},
{
+ width: 120,
title: "推送状态",
dataIndex: "status",
key: "status",
@@ -366,6 +380,7 @@ const NoticesContent = (props) => {
obj_type: "0",
});
const [currentPageName, setCurrentPageName] = useState("");
+ const [buttonAble, setButtonAble] = useState(false);
const currentPagesOptions = useMemo(() => {
if (!pagesOptions.length) return [];
@@ -407,7 +422,7 @@ const NoticesContent = (props) => {
"Content-Type": "application/json",
},
body: JSON.stringify({
- n_type: 0,
+ n_types: [0, 1, 2, 3],
push_type: 1,
status: querryStatus,
offset: 0,
@@ -445,11 +460,12 @@ const NoticesContent = (props) => {
};
//关闭弹窗
const handleCancelModal = () => {
- form.resetFields();
+ form.setFieldsValue(formData);
setPathMethod("");
+ setSelectedStreamer(null);
setIsModalOpen(false);
setZones(null);
- getData(0);
+ setDisplayImageId([]);
};
const handleSubmit = async (value) => {
// if (!selectedUser) {
@@ -469,7 +485,6 @@ const NoticesContent = (props) => {
id,
thumbnail,
} = value;
- debugger;
const obj_midsArr = obj_user_ids?.split(" ").map((it) => Number(it));
let newHyperlinks = [];
if (hyperlinks) {
@@ -479,26 +494,34 @@ const NoticesContent = (props) => {
newHyperlinks = paramsObj
? [
{
- params: paramsObj.h5_route_path + "?" + value.mid,
+ params: paramsObj.app_route_path.replace("MID", value.mid),
action,
+ frontend_route_id: paramsObj.id,
+ inward_action_type: "app",
},
{
- params: paramsObj.app_route_path + "?" + value.mid,
+ params: paramsObj.h5_route_path.replace("[mid]", value.mid),
action,
+ frontend_route_id: paramsObj.id,
+ inward_action_type: "h5",
},
]
- : [
+ : action
+ ? [
{
params: link,
action,
+ inward_action_type: "outward",
},
- ];
+ ]
+ : null;
}
+
if (!id) {
if (!status && new Date(push_time).getTime() < new Date().getTime()) {
messageApi.open({
type: "warning",
- content: "开始时间不能小于当前时间",
+ content: "推送时间不能早于当前时间",
});
return;
}
@@ -665,27 +688,30 @@ const NoticesContent = (props) => {
{contextHolder}
-
(
- 获得总数:{showData.length}
- )}
- onScroll={(e) => {
- const { scrollHeight, scrollTop, clientHeight } = e.currentTarget;
- console.log(scrollHeight, scrollTop + clientHeight);
+
+ (
+ 获得总数:{showData.length}
+ )}
+ onScroll={(e) => {
+ const { scrollHeight, scrollTop, clientHeight } = e.currentTarget;
+ console.log(scrollHeight, scrollTop + clientHeight);
+
+ if (scrollTop + clientHeight + 5 >= scrollHeight) {
+ getData(offset);
+ }
+ }}
+ />
+
- if (scrollTop + clientHeight + 5 >= scrollHeight) {
- getData(offset);
- }
- }}
- />
{/* 重复判断isModalOpen是为了重新渲染ImageUploader和VideoUploader组件 */}
{
]}
className="mb-6"
>
-
+
{
]}
className="mb-6"
>
-
+
{
},
{
value: 1,
- label: "付费通知",
+ label: "审核通知",
},
{
value: 2,
- label: "活动通知",
+ label: "付费消息",
},
{
value: 3,
- label: "审核通知",
+ label: "活动消息",
},
]}
/>
@@ -832,12 +858,12 @@ const NoticesContent = (props) => {
direction="vertical"
className="bg-[#00000011] rounded-md p-4 mb-4"
>
-
+