动态改为先审后发
This commit is contained in:
parent
27ed0f1d24
commit
251a7350dd
|
@ -247,12 +247,10 @@ const PostMachineReviewContent = (props) => {
|
||||||
<div>
|
<div>
|
||||||
<Space>
|
<Space>
|
||||||
<Space.Compact direction="vertical">
|
<Space.Compact direction="vertical">
|
||||||
{(current === "rollbackbymachine" ||
|
<Button type="primary" onClick={() => onClickPass(record)}>
|
||||||
current === "machinereviewfail") && (
|
通过
|
||||||
<Button type="primary" onClick={() => onClickSubmit(record)}>
|
</Button>
|
||||||
通过
|
<Button onClick={() => onClickReject(record)}>拒绝</Button>
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
</Space.Compact>
|
</Space.Compact>
|
||||||
</Space>
|
</Space>
|
||||||
</div>
|
</div>
|
||||||
|
@ -261,10 +259,16 @@ const PostMachineReviewContent = (props) => {
|
||||||
];
|
];
|
||||||
//给表单绑定ref
|
//给表单绑定ref
|
||||||
const formRef = useRef(null);
|
const formRef = useRef(null);
|
||||||
//点击修改状态按钮
|
//点击通过按钮
|
||||||
const onClickSubmit = (record) => {
|
const onClickPass = (record) => {
|
||||||
formRef.current.record = record;
|
formRef.current.record = record;
|
||||||
formRef.current.btn = "submit";
|
formRef.current.type = 0;
|
||||||
|
formRef.current.submit();
|
||||||
|
};
|
||||||
|
//点击拒绝按钮
|
||||||
|
const onClickReject = (record) => {
|
||||||
|
formRef.current.record = record;
|
||||||
|
formRef.current.type = 1;
|
||||||
formRef.current.submit();
|
formRef.current.submit();
|
||||||
};
|
};
|
||||||
//提交表单
|
//提交表单
|
||||||
|
@ -272,45 +276,26 @@ const PostMachineReviewContent = (props) => {
|
||||||
try {
|
try {
|
||||||
//通过图片审核,如果是视频直接跳过
|
//通过图片审核,如果是视频直接跳过
|
||||||
const base = baseRequest();
|
const base = baseRequest();
|
||||||
if (formRef.current.record.others.media.id !== undefined) {
|
const response = await fetch("/op/moment/review", {
|
||||||
const response = await fetch("/op/image_audit_task/pass_batch", {
|
|
||||||
method: "POST",
|
|
||||||
headers: {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
},
|
|
||||||
body: JSON.stringify({
|
|
||||||
tasks: [formRef.current.record.others.media],
|
|
||||||
...base,
|
|
||||||
}),
|
|
||||||
});
|
|
||||||
const approveData = await response.json();
|
|
||||||
console.log(approveData);
|
|
||||||
if (approveData.ret === -1) {
|
|
||||||
alert(approveData.msg);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//通过文案审核
|
|
||||||
const response2 = await fetch("/op/text_audit_task/pass_batch", {
|
|
||||||
method: "POST",
|
method: "POST",
|
||||||
headers: {
|
headers: {
|
||||||
"Content-Type": "application/json",
|
"Content-Type": "application/json",
|
||||||
},
|
},
|
||||||
body: JSON.stringify({
|
body: JSON.stringify({
|
||||||
tasks: [formRef.current.record.others.text],
|
moment_ids: [parseInt(formRef.current.record.momentId, 10)],
|
||||||
|
op_type: formRef.current.type,
|
||||||
...base,
|
...base,
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
const approveData2 = await response2.json();
|
const _data = await response.json();
|
||||||
console.log(approveData2);
|
if (_data.ret === -1) {
|
||||||
if (approveData2.ret === -1) {
|
alert(_data.msg);
|
||||||
alert(approveData2.msg);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
//取消数据展示
|
//取消数据展示
|
||||||
setShowData(
|
setShowData(
|
||||||
showData.filter(
|
showData.filter(
|
||||||
(item) => item.id.media !== formRef.current.record.others.media.id
|
(item) => item.momentId !== formRef.current.record.momentId
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
@ -334,9 +319,6 @@ const PostMachineReviewContent = (props) => {
|
||||||
case "passbymachine":
|
case "passbymachine":
|
||||||
querryStatus = 2;
|
querryStatus = 2;
|
||||||
break;
|
break;
|
||||||
case "passbyoperator":
|
|
||||||
querryStatus = 5;
|
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -364,6 +346,7 @@ const PostMachineReviewContent = (props) => {
|
||||||
const structedData = temData.data.list.map((item, index) => {
|
const structedData = temData.data.list.map((item, index) => {
|
||||||
return {
|
return {
|
||||||
key: index,
|
key: index,
|
||||||
|
momentId: item.moment_audit_task.associative_table_id,
|
||||||
id: {
|
id: {
|
||||||
media: item.image_audit_task_vo.id,
|
media: item.image_audit_task_vo.id,
|
||||||
text: item.text_audit_task_vo.id,
|
text: item.text_audit_task_vo.id,
|
||||||
|
@ -444,7 +427,6 @@ const PostMachineReviewContent = (props) => {
|
||||||
<p>
|
<p>
|
||||||
{current === "rollbackbymachine" && `机审核违规${showData.length}条`}
|
{current === "rollbackbymachine" && `机审核违规${showData.length}条`}
|
||||||
{current === "passbymachine" && `机审核通过${showData.length}条`}
|
{current === "passbymachine" && `机审核通过${showData.length}条`}
|
||||||
{current === "passbyoperator" && `运营通过${showData.length}条`}
|
|
||||||
</p>
|
</p>
|
||||||
<Form
|
<Form
|
||||||
ref={formRef}
|
ref={formRef}
|
||||||
|
@ -483,10 +465,6 @@ export default function PostMachineReview() {
|
||||||
label: "机审通过",
|
label: "机审通过",
|
||||||
key: "passbymachine",
|
key: "passbymachine",
|
||||||
},
|
},
|
||||||
{
|
|
||||||
label: "运营通过",
|
|
||||||
key: "passbyoperator",
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
const onClick = (e) => {
|
const onClick = (e) => {
|
||||||
setCurrent(e.key);
|
setCurrent(e.key);
|
||||||
|
@ -519,10 +497,6 @@ export default function PostMachineReview() {
|
||||||
path="/passbymachine"
|
path="/passbymachine"
|
||||||
element={<PostMachineReviewContent current="passbymachine" />}
|
element={<PostMachineReviewContent current="passbymachine" />}
|
||||||
/>
|
/>
|
||||||
<Route
|
|
||||||
path="/passbyoperator"
|
|
||||||
element={<PostMachineReviewContent current="passbyoperator" />}
|
|
||||||
/>
|
|
||||||
</Routes>
|
</Routes>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue