@@ -121,9 +157,35 @@ const HotList = (props) => {
+
+
+
@@ -149,38 +211,117 @@ const HotList = (props) => {
};
//提交表单
const handleSubmit = async (value) => {
- const { action, params, pageName, st, et, link, ueser_id, id } = value;
- const paramsObj = pageName ? JSON.parse(pageName) : null;
- const hyperlinks = paramsObj
- ? [
- {
- url: paramsObj.h5_route_path + "?" + params,
- action,
- },
- {
- url: paramsObj.app_route_path + "?" + params,
- action,
- },
- ]
- : [
- {
- url: link,
- action,
- },
- ];
+ const {
+ action,
+ status,
+ image,
+ pageName,
+ hyperlinks,
+ st,
+ et,
+ link,
+ ueser_id,
+ id,
+ } = value;
+
+ // const hyperlinks =
+ // action === "inward"
+ // ? ["app_route_path", "h5_route_path"].map((item, index) => {
+ // if (index == 1) {
+ // let pathName = paramsObj[item];
+ // splitParams.forEach((it) => {
+ // console.log(pathName, it);
+ // pathName = pathName.replace(it, value[it]);
+ // });
+ // return {
+ // action,
+ // params: pathName,
+ // };
+ // }
+ // let pathName = paramsObj[item];
+ // splitParams.forEach((it) => {
+ // console.log(pathName, it.toUpperCase());
+ // pathName = pathName.replace(it.toUpperCase(), value[it]);
+ // });
+ // return {
+ // action,
+ // params: pathName,
+ // };
+ // })
+ // : [
+ // {
+ // action,
+ // params: link,
+ // },
+ // ];
+ let newHyperlinks = [];
+ if (hyperlinks) {
+ newHyperlinks = hyperlinks;
+ } else {
+ const paramsObj = pageName ? JSON.parse(pageName) : null;
+ newHyperlinks = paramsObj
+ ? [
+ {
+ url: paramsObj.h5_route_path + "?" + value.mid,
+ action,
+ },
+ {
+ url: paramsObj.app_route_path + "?" + value.mid,
+ action,
+ },
+ ]
+ : [
+ {
+ url: link,
+ action,
+ },
+ ];
+ }
+ if (!id) {
+ if (!status && new Date(st).getTime() < new Date().getTime()) {
+ messageApi.open({
+ type: "warning",
+ content: "开始时间不能小于当前时间",
+ });
+ return;
+ } else if (!status && new Date(st).getTime() > new Date(et).getTime()) {
+ messageApi.open({
+ type: "warning",
+ content: "开始时间不能大于结束时间",
+ });
+ return;
+ } else if (
+ new Date(et).getTime() - new Date(st).getTime() <
+ 10 * 60 * 1000
+ ) {
+ messageApi.open({
+ type: "warning",
+ content: "两个时间间隔最短不小于10分钟",
+ });
+ return;
+ }
+ }
try {
//通过图片审核,如果是视频直接跳过
+ const dataObj = {
+ ...value,
+ st: Math.floor(new Date(st).getTime() / (60 * 1000)) * 60,
+ et: Math.floor(new Date(et).getTime() / (60 * 1000)) * 60,
+ hyperlinks: newHyperlinks,
+ image: image?.images ? image : { image_ids: displayImageId },
+ user_id: "",
+ };
+ if (id) {
+ delete dataObj.st;
+ delete dataObj.et;
+ }
const base = baseRequest();
const body = JSON.stringify({
- ...value,
- st: new Date(st).getTime(),
- et: new Date(et).getTime(),
- hyperlinks,
- user_id: "",
+ ...dataObj,
...base,
});
const response = await fetch(
- `/op/activity_hot/${id ? "update" : "create"}`,
+ `/op/activity_hot/${id !== null ? "update" : "create"}`,
{
method: "POST",
headers: {
@@ -208,7 +349,8 @@ const HotList = (props) => {
const [more, setMore] = useState(1);
const [displayImageId, setDisplayImageId] = useState([]);
const [pagesOptions, setPagesOptions] = useState([]);
- const [currentStatus, setCurrentStatus] = useState("新建推送");
+ const [currentStatus, setCurrentStatus] = useState(null);
+ const [currentPageName, setCurrentPageName] = useState("");
const [formData] = useState({
mid: null,
title: "",
@@ -243,12 +385,14 @@ const HotList = (props) => {
};
const currentPagesOptions = useMemo(() => {
if (!pagesOptions.length) return [];
- const pages = pagesOptions.map((it) => {
- return {
- label: it.desc,
- value: JSON.stringify(it),
- };
- });
+ const pages = pagesOptions
+ .filter((it) => it.desc === "达人空间")
+ .map((it) => {
+ return {
+ label: it.desc,
+ value: JSON.stringify(it),
+ };
+ });
return pages;
}, [pagesOptions, formData.action]);
const onTimeOk = (value) => {
@@ -278,7 +422,6 @@ const HotList = (props) => {
value: 2,
},
];
- //创建页面路由
const getPages = async () => {
try {
const base = baseRequest();
@@ -316,7 +459,7 @@ const HotList = (props) => {
},
body: JSON.stringify({
offset,
- limit: 200,
+ limit: 2000,
status,
...base,
}),
@@ -335,6 +478,7 @@ const HotList = (props) => {
setData((old) =>
isFirst ? temData.data.list : [...old, ...temData.data.list]
);
+
setOffset(temData.data.offset);
setMore(temData.data.more);
} catch (error) {
@@ -346,8 +490,8 @@ const HotList = (props) => {
const handleEditHot = async (data) => {
setIsModalOpen(true);
const { hyperlinks, st, et, mid, status, user_id, id } = data;
- const newSt = dayjs(st);
- const newEt = dayjs(et);
+ const newSt = dayjs(st * 1000);
+ const newEt = dayjs(et * 1000);
const currentPageName = hyperlinks[0].url.split("?")[0];
const params = hyperlinks[0].url.split("?")[1];
const action = hyperlinks[0].action;
@@ -360,6 +504,7 @@ const HotList = (props) => {
);
const pageName =
action === "inward" ? JSON.stringify(isCurrentPagePath[0]) : "";
+ setCurrentPageName(pageName);
setPathMethod(action);
setCurrentStatus(
!status
@@ -370,7 +515,7 @@ const HotList = (props) => {
? "已失效"
: "未开始"
);
- setSelectedStreamer(true);
+ setSelectedStreamer(data);
await handleSearchMid(user_id);
form.setFieldsValue({
...data,
@@ -386,8 +531,25 @@ const HotList = (props) => {
id,
});
};
- const handleStopAndStart = (data) => {
- handleSubmit({ ...data, status: 2 });
+ const handlePauseOrStopAndStart = (data, status) => {
+ const { st, et, hyperlinks } = data;
+ const isCurrentPagePath = pagesOptions.filter(
+ (it) =>
+ it.h5_route_path.indexOf(currentPageName) !== -1 ||
+ it.app_route_path.indexOf(currentPageName) !== -1
+ );
+ const action = hyperlinks[0].action;
+ const pageName =
+ action === "inward"
+ ? JSON.stringify(isCurrentPagePath[0])
+ : hyperlinks[0].url;
+ handleSubmit({
+ ...data,
+ pageName,
+ st: st * 1000,
+ et: et * 1000,
+ status,
+ });
};
//搜索空间
const handleSearchMid = async (mid) => {
@@ -411,6 +573,11 @@ const HotList = (props) => {
alert(detailData.msg);
return;
}
+ console.log(
+ "temData.data.list 621957",
+ detailData.data.list[0].streamer_ext.avatar.image_ids
+ );
+ setDisplayImageId(detailData.data.list[0].streamer_ext.avatar.image_ids);
const zonesArr = detailData.data.list;
setZones(zonesArr);
} catch (error) {
@@ -444,16 +611,69 @@ const HotList = (props) => {
setIsModalOpen(false);
setZones(null);
setDisplayImageId([]);
+ setCurrentStatus(null);
};
const currentStreamerImage = useMemo(() => {
- console.log("form.validateFields", selectedStreamer);
- if (selectedStreamer && zones && displayImageId) {
- return zones[0]?.streamer_ext.avatar.images[0].urls[0];
+ console.log("form.validateFields", displayImageId);
+ if (selectedStreamer && zones && displayImageId.length > 0) {
+ if (zones[0].streamer_ext.avatar.image_ids[0] === displayImageId[0]) {
+ return zones[0]?.streamer_ext.avatar.images[0].urls[0];
+ } else {
+ return null;
+ }
} else {
return null;
}
}, [zones, selectedStreamer, displayImageId]);
+ const findBracketedFields = (text) => {
+ const regex = /\[(.*?)\]/g;
+ const matches = [];
+ let match;
+
+ while ((match = regex.exec(text)) !== null) {
+ matches.push(match[1]);
+ }
+
+ return matches;
+ };
+ const getSplitParams = useCallback((currentPageName) => {
+ const newCurrentPageName =
+ form.getFieldValue("pageName") || currentPageName;
+ if (!newCurrentPageName) return [];
+ const CurrentPageNameObj = JSON.parse(newCurrentPageName);
+ const { app_route_path, h5_route_path } = CurrentPageNameObj;
+ const newCurrentPageNameStr = app_route_path || h5_route_path;
+ if (
+ newCurrentPageNameStr.indexOf("?") !== -1 ||
+ newCurrentPageNameStr.indexOf("[") !== -1
+ ) {
+ if (newCurrentPageNameStr.indexOf("?") !== -1) {
+ const splitParamsStr = newCurrentPageNameStr.split("?")[1];
+ return splitParamsStr.split("&").map((item) => item.split("=")[0]);
+ }
+ // const regex = /\[.*?\]/g;
+ if (newCurrentPageNameStr) {
+ // const matches = [];
+ // let match;
+ // while ((match = regex.exec(newCurrentPageNameStr)) !== null) {
+ // matches.push(match[1]);
+ // console.log("Regex: ", match[1]);
+ // }
+ const matches = findBracketedFields(newCurrentPageNameStr);
+ console.log("Regex: ", matches);
+ return matches;
+ } else {
+ return [];
+ }
+ } else {
+ return [];
+ }
+ });
+ const splitParams = useMemo(
+ () => getSplitParams(currentPageName),
+ [currentPageName, pathMethod]
+ );
return (
@@ -473,21 +693,31 @@ const HotList = (props) => {
新建推送+
+ {contextHolder}
(
+ 获得总数:{showData.length}
+ )}
+ onScroll={(e) => {
+ const { scrollHeight, scrollTop, clientHeight } = e.currentTarget;
+ if (scrollTop + clientHeight + 5 >= scrollHeight && more) {
+ getData(hotStatus, false, offset);
+ }
+ }}
/>
-
+
推送状态:
{currentStatus}
@@ -512,6 +742,7 @@ const HotList = (props) => {
// style={{
// width: 240,
// }}
+ disabled={currentStatus}
className="w-full"
showSearch
allowClear
@@ -523,9 +754,9 @@ const HotList = (props) => {
setSelectedStreamer(currentIt);
form.setFieldsValue({
mid: v,
- title: currentIt.profile,
+ title: currentIt.streamer_ext.name,
image: currentIt.streamer_ext.avatar,
- text: currentIt.streamer_ext.name,
+ text: currentIt.profile,
});
} else {
setSelectedStreamer(null);
@@ -544,7 +775,9 @@ const HotList = (props) => {
value: it.mid,
label: (
-
ID:{it?.mid}
+
+ ID:{it?.streamer_ext?.user_id}
+
昵称:{it?.streamer_ext.name}
@@ -572,23 +805,30 @@ const HotList = (props) => {
]}
className="mb-6"
>
- {currentStreamerImage ? (
-
+
+ {currentStreamerImage ? (
-
setDisplayImageId(null)}
- >
-
-
+ ) : (
+
+ )}
+
setDisplayImageId([])}
+ >
+
- ) : (
-
- )}
+
{
direction="vertical"
className="bg-[#00000011] rounded-md p-4 mb-4"
>
-
+
@@ -764,13 +1109,15 @@ const HotList = (props) => {
>
{
// console.log("Time: ", new Date());
- setMiniDate(value);
+ setMiniDate(value ? value : dayjs(new Date()));
console.log("Selected Time: ", value);
console.log("Formatted Selected Time: ", dateString);
}}
@@ -790,7 +1137,8 @@ const HotList = (props) => {
className="mb-6"
>
{
+ const [messageApi, contextHolder] = message.useMessage();
//控制创建动态modal是否出现
const [isModalOpen, setIsModalOpen] = useState(false);
const [isPagesModalOpen, setIsPagesModalOpen] = useState(false);
@@ -34,9 +36,11 @@ const NoticesContent = (props) => {
const [form] = Form.useForm();
const [pagesOptions, setPagesOptions] = useState([]);
const [pathMethod, setPathMethod] = useState("");
+ const [selectedStreamer, setSelectedStreamer] = useState(null);
const { TextArea } = Input;
const current = props.current;
-
+ const [zones, setZones] = useState(null);
+ const [displayImageId, setDisplayImageId] = useState([]);
//表头
const columns = [
{
@@ -111,6 +115,7 @@ const NoticesContent = (props) => {
},
{
title: "链接标语",
+ width: 90,
dataIndex: "link_text",
key: "link_text",
render: (data) => {data || "-"}
,
@@ -149,8 +154,14 @@ const NoticesContent = (props) => {
title: "推送时间",
dataIndex: "push_time",
key: "push_time",
- render: (data) => {
- return {formatDeadline(data * 1000)}
;
+ render: (data, record) => {
+ return (
+
+ {dayjs(!!data ? data * 1000 : record.ct * 1000).format(
+ "YYYY-MM-DD HH:mm:ss"
+ )}
+
+ );
},
},
{
@@ -159,9 +170,13 @@ const NoticesContent = (props) => {
dataIndex: "obj_mids",
key: "obj_mids",
render: (data) => (
-
+
{data?.length > 0
- ? data.map((it) => {it})
+ ? data.map((it) => (
+
+ {it}
+
+ ))
: "-"}
),
@@ -177,9 +192,9 @@ const NoticesContent = (props) => {
{data == 0
? "所有主播"
: data == 1
- ? "所有个人"
+ ? "所有普通用户"
: data == 2
- ? "所有主播和个人"
+ ? "全部"
: "自定义角色"}
);
@@ -335,16 +350,17 @@ const NoticesContent = (props) => {
const [data, setData] = useState([]);
const [offset, setOffset] = useState(0);
const [more, setMore] = useState(1);
+ const [total, setTotal] = useState(0);
const [formData, setFormData] = useState({
title: "",
message: "",
n_type: 0,
- obj_mids: [],
- // push_time: 1111111111111,
+ obj_user_ids: [],
+ push_time: dayjs(new Date()),
params: "",
pageName: null,
link: null,
- action: "inward",
+ action: null,
link_text: null,
thumbnail: null,
obj_type: "0",
@@ -353,16 +369,18 @@ const NoticesContent = (props) => {
const currentPagesOptions = useMemo(() => {
if (!pagesOptions.length) return [];
- const pages = pagesOptions.map((it) => {
- return {
- label: it.desc,
- value: JSON.stringify(it),
- };
- });
+ const pages = pagesOptions
+ .filter((it) => it.desc === "达人空间")
+ .map((it) => {
+ return {
+ label: it.desc,
+ value: JSON.stringify(it),
+ };
+ });
return pages;
}, [pagesOptions, formData.action]);
- const getData = async () => {
+ const getData = async (offset) => {
if (!more) return;
let querryStatus;
switch (current) {
@@ -390,10 +408,10 @@ const NoticesContent = (props) => {
},
body: JSON.stringify({
n_type: 0,
- // push_time: 0,
- // status: querryStatus,
- // offset: offset,
- // limit: 200,
+ push_type: 1,
+ status: querryStatus,
+ offset: 0,
+ limit: 20 + offset,
...base,
}),
});
@@ -405,6 +423,9 @@ const NoticesContent = (props) => {
return;
}
setShowData([...temData.data.list]);
+ if (temData.data.offset > total) {
+ setTotal(temData.data.offset);
+ }
setOffset(temData.data.offset);
setMore(temData.data.more);
} catch (error) {
@@ -412,7 +433,7 @@ const NoticesContent = (props) => {
}
};
useEffect(() => {
- getData();
+ getData(0);
}, [current]);
//展示的数据
@@ -427,48 +448,63 @@ const NoticesContent = (props) => {
form.resetFields();
setPathMethod("");
setIsModalOpen(false);
+ setZones(null);
+ getData(0);
};
const handleSubmit = async (value) => {
// if (!selectedUser) {
// alert("还未选中用户");
// return;
// }
- const { action, params, link, pageName, obj_mids, push_time, obj_type } =
- value;
+ const {
+ action,
+ params,
+ status,
+ link,
+ hyperlinks,
+ pageName,
+ obj_user_ids,
+ push_time,
+ obj_type,
+ id,
+ thumbnail,
+ } = value;
debugger;
- const obj_midsArr = obj_mids?.split(" ").map((it) => Number(it));
- const paramsObj = JSON.parse(pageName);
- const hyperlinks =
- action === "inward"
- ? ["app_route_path", "h5_route_path"].map((item, index) => {
- if (index == 1) {
- let pathName = paramsObj[item];
- splitParams.forEach((it) => {
- console.log(pathName, it);
- pathName = pathName.replace(it, value[it]);
- });
- return {
- action,
- params: pathName,
- };
- }
- let pathName = paramsObj[item];
- splitParams.forEach((it) => {
- console.log(pathName, it.toUpperCase());
- pathName = pathName.replace(it.toUpperCase(), value[it]);
- });
- return {
+ const obj_midsArr = obj_user_ids?.split(" ").map((it) => Number(it));
+ let newHyperlinks = [];
+ if (hyperlinks) {
+ newHyperlinks = hyperlinks;
+ } else {
+ const paramsObj = pageName ? JSON.parse(pageName) : null;
+ newHyperlinks = paramsObj
+ ? [
+ {
+ params: paramsObj.h5_route_path + "?" + value.mid,
action,
- params: pathName,
- };
- })
+ },
+ {
+ params: paramsObj.app_route_path + "?" + value.mid,
+ action,
+ },
+ ]
: [
{
- action,
params: link,
+ action,
},
];
+ }
+ if (!id) {
+ if (!status && new Date(push_time).getTime() < new Date().getTime()) {
+ messageApi.open({
+ type: "warning",
+ content: "开始时间不能小于当前时间",
+ });
+ return;
+ }
+ }
debugger;
+
try {
const base = baseRequest();
const response = await fetch(`/op/notification/create`, {
@@ -478,12 +514,15 @@ const NoticesContent = (props) => {
},
body: JSON.stringify({
...value,
- obj_mids: obj_midsArr,
+ obj_user_ids: obj_midsArr,
push_time:
Math.floor(new Date(push_time).getTime() / (60 * 1000)) * 60,
obj_type: parseInt(obj_type, 10),
- hyperlinks,
+ hyperlinks: newHyperlinks,
sub_mid: 0,
+ thumbnail: thumbnail?.images
+ ? thumbnail
+ : { image_ids: displayImageId },
...base,
}),
});
@@ -492,6 +531,7 @@ const NoticesContent = (props) => {
alert(data.msg);
return;
}
+ handleCancelModal();
message.success("发布成功");
} catch (error) {
console.error(error);
@@ -563,7 +603,48 @@ const NoticesContent = (props) => {
return [];
}
}, [currentPageName]);
-
+ //搜索空间
+ const handleSearchMid = async (mid) => {
+ // const mid = form.getFieldValue("mid");
+ if (!mid) return;
+ setLoading(true);
+ try {
+ const base = baseRequest();
+ const detailResponse = await fetch(`/op/zone/list_by_user_id`, {
+ method: "POST",
+ headers: {
+ "Content-Type": "application/json",
+ },
+ body: JSON.stringify({
+ user_id: parseInt(mid, 10),
+ ...base,
+ }),
+ });
+ const detailData = await detailResponse.json();
+ if (detailData.ret === -1) {
+ alert(detailData.msg);
+ return;
+ }
+ const zonesArr = detailData.data.list;
+ setZones(zonesArr);
+ } catch (error) {
+ console.error(error);
+ } finally {
+ setLoading(false);
+ }
+ };
+ const currentStreamerImage = useMemo(() => {
+ console.log("form.validateFields", displayImageId);
+ if (selectedStreamer && zones && displayImageId.length > 0) {
+ if (zones[0].streamer_ext.avatar.image_ids[0] === displayImageId[0]) {
+ return zones[0]?.streamer_ext.avatar.images[0].urls[0];
+ } else {
+ return null;
+ }
+ } else {
+ return null;
+ }
+ }, [zones, selectedStreamer, displayImageId]);
return (
@@ -583,12 +664,27 @@ const NoticesContent = (props) => {
新建推送+
+ {contextHolder}
(
+ 获得总数:{showData.length}
+ )}
+ onScroll={(e) => {
+ const { scrollHeight, scrollTop, clientHeight } = e.currentTarget;
+ console.log(scrollHeight, scrollTop + clientHeight);
+
+ if (scrollTop + clientHeight + 5 >= scrollHeight) {
+ getData(offset);
+ }
+ }}
/>
{/* 重复判断isModalOpen是为了重新渲染ImageUploader和VideoUploader组件 */}
{
footer={null}
open={isModalOpen}
onCancel={handleCancelModal}
+ onChange={setFormData}
>
{
]}
className={formData.obj_type == 3 ? "mb-2" : "mb-6"}
>
-
-
- 所有主播
- 所有个人
- 所有主播和个人
- 自定义角色
-
-
+
+ 所有主播
+ 所有普通用户
+ 全部
+ 自定义角色
+
- {formData.obj_type == 3 && (
+ {form.getFieldValue("obj_type") == 3 && (
{
>
@@ -722,6 +818,7 @@ const NoticesContent = (props) => {
{
{
+ form.setFieldsValue({
+ pageName: "",
+ link: "",
+ params: "",
+ hyperlinks: "",
+ mid: "",
+ });
+ setPathMethod(e);
+ }}
options={[
{
value: "inward",
@@ -771,7 +877,7 @@ const NoticesContent = (props) => {
pattern: /^(https?:\/\/).*$/,
},
]}
- label="添加链接"
+ label="跳转位置"
name="link"
className="mb-2"
>
@@ -786,7 +892,7 @@ const NoticesContent = (props) => {
}}
>
@@ -827,32 +933,98 @@ const NoticesContent = (props) => {
direction="vertical"
className="bg-white rounded-xl p-4"
>
+ {
+ const currentIt = zones?.filter(
+ (it) => it.mid == v
+ )[0];
+ if (currentIt) {
+ setSelectedStreamer(currentIt);
+ form.setFieldsValue({
+ mid: v,
+ title: currentIt.streamer_ext.name,
+ image: currentIt.streamer_ext.avatar,
+ text: currentIt.profile,
+ });
+ } else {
+ setSelectedStreamer(null);
+ form.setFieldsValue({
+ mid: null,
+ title: "",
+ image: "",
+ text: "",
+ });
+ }
+ }}
+ filterOption={false}
+ onSearch={debounce(handleSearchMid, 1000)}
+ notFoundContent={loading ? : null}
+ options={zones?.map((it) => ({
+ value: it.mid,
+ label: (
+
+
ID:{it?.mid}
+
+ 昵称:{it?.streamer_ext.name}
+
+
+ ),
+ }))}
+ labelRender={({ value }) => {
+ const currentIt = zones?.filter(
+ (it) => it.mid == value
+ )[0];
+ if (currentIt) {
+ return currentIt.streamer_ext.name;
+ }
+ return No option match;
+ }}
+ />
{splitParams.map((it) => (
-
+ {it}:{selectedStreamer?.mid}
+
+ {/* {it}:}
- />
+ value={selectedStreamer?.mid}
+ /> */}
))}
+
+
{
// ]}
className="mb-2"
>
- {
- setFormData((old) => ({
- ...old,
- thumbnail: { image_ids: [value] },
- }));
- }}
- multiple={false}
- />
+
+ {currentStreamerImage ? (
+
+ ) : (
+
+ )}
+
setDisplayImageId([])}
+ >
+
+
+
-
+
diff --git a/src/pages/StreamerNickTextMachineReview/index.jsx b/src/pages/StreamerNickTextMachineReview/index.jsx
index 38a9c8c..0dc69aa 100644
--- a/src/pages/StreamerNickTextMachineReview/index.jsx
+++ b/src/pages/StreamerNickTextMachineReview/index.jsx
@@ -15,12 +15,17 @@ const StreamerNickTextMachineReviewContent = (props) => {
//表头
const columns = [
{
- title: "发帖人",
- dataIndex: "creator",
- key: "creator",
+ title: "基本信息",
+ dataIndex: "account",
+ key: "account",
render: (data) => (
-
+
ID:{data.user_id}
@@ -31,110 +36,112 @@ const StreamerNickTextMachineReviewContent = (props) => {
),
},
{
- title: "动态内容",
- dataIndex: "content",
- key: "content",
+ title: "修改项目",
+ dataIndex: "item",
+ key: "item",
render: (data) => (
-
-
-
- 文案:{data.text}
-
- {data.is_creating_paid_text === 1 && (
-
- 付费文案:{data.paid_text}
-
- )}
-
-
媒体:
-
- item.urls[0])}
- >
- {data.media.images.map((item, index) => (
-
- ))}
-
- {data.media.videos.map((item, index) => (
-
- ))}
-
+
+ {data === "name" &&
昵称
}
+ {data === "bio" &&
个性签名
}
+ {data === "auto_response_message" &&
私信自动回复
}
),
},
{
- title: "付费设置",
- dataIndex: "paymentSettings",
- key: "paymentSettings",
- render: (data) => (
-
-
- 类型:
-
- {data.c_type === 0 ? "免费" : "付费"}
-
-
- {data.c_type === 1 && (
-
-
-
- 价格:
- ¥{data.price}
-
-
-
- 是否铁粉免费看:
-
- {data.is_ironfan_visible === 0 ? "否" : "是"}
-
-
-
-
- 文案可见行数:
- {data.text_visible_range}
-
- {data.m_type === 1 ? (
- <>
-
-
- 图片可见张数:
-
- {data.media_visible_range}
-
-
- >
- ) : (
- <>
-
-
- 是否模糊封面:
-
- {data.is_blurring_cover === 0 ? "否" : "是"}
-
-
- >
- )}
-
- )}
-
- ),
+ title: "新内容",
+ dataIndex: "newMedia",
+ key: "newMedia",
+ },
+ {
+ title: "旧内容",
+ dataIndex: "oldMedia",
+ key: "oldMedia",
},
{
title: "审核结果",
dataIndex: "info",
key: "info",
- render: (data) => (
-
-
文案审核结果:
-
{data.text_audit_opinion}
-
-
媒体审核结果:
-
{data.image_audit_opinion}
-
- ),
+ render: (data) => {
+ if (data.status === 2 || data.status === 5)
+ return
无违规
;
+ return (
+
+ {data.spam_label_details && (
+
+
垃圾审核:
+
+ {data.spam_label_details?.map((item, index) => (
+ - {item}
+ ))}
+
+
+ )}
+ {data.politics_label_details && (
+
+
敏感审核:
+
+ {data.politics_label_details?.map((item, index) => (
+ - {item}
+ ))}
+
+
+ )}
+ {data.abuse_label_details && (
+
+
辱骂审核:
+
+ {data.abuse_label_details?.map((item, index) => (
+ - {item}
+ ))}
+
+
+ )}
+ {data.terrorism_label_details && (
+
+
暴恐审核:
+
+ {data.terrorism_label_details?.map((item, index) => (
+ - {item}
+ ))}
+
+
+ )}
+ {data.porn_label_details && (
+
+
鉴黄审核:
+
+ {data.porn_label_details?.map((item, index) => (
+ - {item}
+ ))}
+
+
+ )}
+ {data.flood_label_details && (
+
+
灌水审核:
+
+ {data.flood_label_details?.map((item, index) => (
+ - {item}
+ ))}
+
+
+ )}
+ {data.contraband_label_details && (
+
+
违禁审核:
+
+ {data.contraband_label_details?.map((item, index) => (
+ - {item}
+ ))}
+
+
+ )}
+
+ );
+ },
},
{
- title: "发布时间",
+ title: "提交时间",
dataIndex: "submitTime",
key: "submitTime",
},
@@ -143,14 +150,9 @@ const StreamerNickTextMachineReviewContent = (props) => {
dataIndex: "remarks",
key: "remarks",
render: (_, record) => (
-
-
-
-
-
+
+
+
),
},
{
@@ -178,47 +180,47 @@ const StreamerNickTextMachineReviewContent = (props) => {
//点击通过按钮
const onClickPass = (record) => {
formRef.current.record = record;
- formRef.current.type = 0;
+ formRef.current.btn = "submit";
formRef.current.submit();
};
//点击拒绝按钮
const onClickReject = (record) => {
formRef.current.record = record;
- formRef.current.type = 1;
+ formRef.current.btn = "refuse";
formRef.current.submit();
};
//提交表单
- const handleSubmit = async (value) => {
+ const handleSubmit = async () => {
+ let opType = 0;
+ if (formRef.current.btn === "refuse") {
+ opType = 1;
+ }
+ //提交数据
try {
const base = baseRequest();
- const response = await fetch("/op/zone_moment/review", {
+ const response = await fetch("/op/text_audit_task/review", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
- zone_moment_ids: [parseInt(formRef.current.record.momentId, 10)],
- op_type: formRef.current.type,
- manually_review_opinion: value[formRef.current.record.momentId]
- ? value[formRef.current.record.momentId]
- : "",
+ ids: [formRef.current.record.others.id],
+ op_type: opType,
...base,
}),
});
- const _data = await response.json();
- if (_data.ret === -1) {
- alert(_data.msg);
+ const approveData = await response.json();
+ if (approveData.ret === -1) {
+ alert(approveData.msg);
return;
}
- //取消数据展示
- setShowData(
- showData.filter(
- (item) => item.momentId !== formRef.current.record.momentId
- )
- );
} catch (error) {
console.error(error);
}
+ //取消数据展示
+ setShowData(
+ showData.filter((item) => item.id !== formRef.current.record.others.id)
+ );
};
//获取数据
const [data, setData] = useState([]);
@@ -235,20 +237,23 @@ const StreamerNickTextMachineReviewContent = (props) => {
querryStatus = 0;
break;
case "onlySelfCanSee":
- querryStatus = 3;
+ querryStatus = 6;
break;
default:
break;
}
try {
const base = baseRequest();
- const response = await fetch("/op/zone_moment/list", {
+ const response = await fetch("/op/text_audit_task/list", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
+ associative_database: "account",
+ associative_table_name: "account",
status: querryStatus,
+ role: 3,
offset: offset,
limit: 200,
...base,
@@ -264,38 +269,21 @@ const StreamerNickTextMachineReviewContent = (props) => {
const structedData = temData.data.list.map((item, index) => {
return {
key: index,
- momentId: item.id,
- creator: item.streamer_ext,
- content: {
- media: item.media_component,
- text: item.paid_text
- ? item.text.slice(0, item.text.length - item.paid_text.length)
- : item.text,
- paid_text: item.paid_text
- ? item.paid_text.substring(1)
- : item.paid_text,
- is_creating_paid_text: item.is_creating_paid_text,
- },
- paymentSettings: {
- c_type: item.c_type,
- m_type: item.m_type,
- price: item.price / 100,
- is_ironfan_visible: item.is_ironfan_visible,
- text_visible_range: item.text_visible_range,
- media_visible_range: item.media_visible_range,
- is_blurring_cover: item.is_blurring_cover,
- },
- info: {
- image_audit_status: item.image_audit_status,
- image_audit_opinion: item.image_audit_opinion,
- text_audit_status: item.text_audit_status,
- text_audit_opinion: item.text_audit_opinion,
- },
+ id: item.id,
+ account: item.account,
+ item: item.associative_table_column,
+ newMedia: item.audited_text,
+ oldMedia: item.old_text,
+ info: item.text_audit,
submitTime: new Date(item.ct * 1000).toLocaleString(),
- remarks: {
- manually_review_status: item.manually_review_status,
- manually_review_opinion: item.manually_review_opinion,
- manually_review_operator: item.manually_review_operator,
+ remarks: item.remarks,
+ others: {
+ id: item.id,
+ audited_text: item.audited_text,
+ associative_database: item.associative_database,
+ associative_table_name: item.associative_table_name,
+ associative_table_id: item.associative_table_id,
+ associative_table_column: item.associative_table_column,
},
};
});
diff --git a/src/routes/index.js b/src/routes/index.js
index 3ebfba2..e03d8c2 100644
--- a/src/routes/index.js
+++ b/src/routes/index.js
@@ -121,7 +121,7 @@ const routes = [
element:
,
},
{
- path: "StreamerTextMachineReview/*",
+ path: "streamerTextMachineReview/*",
element:
,
},
{