1.优惠券管理列表=>编辑=>新增立减金时间问题-完成

2.优惠券=>商品、立减金h5模版恢复 -完成
3.优惠券编辑,开始时间不能修改-完成
This commit is contained in:
zhangds 2022-09-26 14:19:57 +08:00
parent 3395cfc61a
commit e644424f09
5 changed files with 68 additions and 2082 deletions

View File

@ -168,7 +168,6 @@ const UseCouponAddEdit = forwardRef((props, ref) => {
setup1_title: "基本信息",
setup2_title: "发放规则",
setup3_title: "商品范围",
time_disabled: false,
tableData: [],
tableHeight: 500,
page: 1,
@ -279,6 +278,7 @@ const UseCouponAddEdit = forwardRef((props, ref) => {
} else {
// 1.3
if (editData && editData !== "") {
setState({ isEdit: true });
editFun();
}
}
@ -288,6 +288,13 @@ const UseCouponAddEdit = forwardRef((props, ref) => {
//
const editFun = () => {
try {
sessionStorage.setItem(
"knockGold_effectDate",
JSON.stringify({
begin_time: editData.begin_time,
end_time: editData.end_time,
})
);
//
setForm_info_data({
title: editData.title,
@ -715,6 +722,14 @@ const UseCouponAddEdit = forwardRef((props, ref) => {
scopePopType: "addProduct",
});
} else {
//
sessionStorage.setItem(
"knockGold_effectDate",
JSON.stringify({
begin_time: form_info_data.date_time[0],
end_time: form_info_data.date_time[1],
})
);
setState({
product_title: "新增立减金",
addGoldBtnLoading: true,
@ -1042,7 +1057,7 @@ const UseCouponAddEdit = forwardRef((props, ref) => {
defaultTime: [moment().format("HH:mm:ss"), "23:59:59"],
}}
format="YYYY-MM-DD HH:mm:ss"
disabled={[state.time_disabled, false]}
disabled={[state.isEdit, false]}
value={form_info_data.date_time}
onChange={(e) => {
onChangeCombinedDate(e);

View File

@ -1,40 +1,43 @@
import { Placeholder } from "zent"
import { useEffect, useState } from "react"
import "./index.less"
import { sortWeeks } from "@/utils"
const widths = [24, 100, 100, 100, 80, 24, 100, 100, 100, 80, 100, 100, 100, 80]
import { Placeholder } from "zent";
import { useEffect, useState } from "react";
import "./index.less";
import { sortWeeks } from "@/utils";
const widths = [
24, 100, 100, 100, 80, 24, 100, 100, 100, 80, 100, 100, 100, 80,
];
export default ({ data, keyType }) => {
const [newWeek, setNewWeek] = useState([])
const [newWeek, setNewWeek] = useState([]);
useEffect(() => {
setNewWeek(sortWeeks(data.ruleWeek))
}, [data.ruleWeek])
setNewWeek(sortWeeks(data.ruleWeek));
}, [data.ruleWeek]);
function couponH5() {
return (
<div>
<div
className='foot-mobile-box'
style={{ borderTop: "1px solid #f0f0f0", padding: "10px 0" }}>
<div className='mobile-center'>
className="foot-mobile-box"
style={{ borderTop: "1px solid #f0f0f0", padding: "10px 0" }}
>
<div className="mobile-center">
<div>
<p className='mobile-money foot-money'>
<p className="mobile-money foot-money">
<span style={{ fontSize: "14px" }}>¥</span> {data.denomination}
</p>
<p className='foot-mobile-infos'>共省¥ {data.reduce_amount}</p>
<p className="foot-mobile-infos">共省¥ {data.reduce_amount}</p>
</div>
</div>
<div className='mobile-pay-btn'>立即支付</div>
<div className="mobile-pay-btn">立即支付</div>
</div>
</div>
)
);
}
function createElement() {
if (data.usable_time === "week") {
return (
<div className='available_time'>
<div className="available_time">
<h3>可用时间</h3>
<ul className='timeList'>
<ul className="timeList">
{newWeek?.map((item) => (
<li>
{item}
@ -44,18 +47,18 @@ export default ({ data, keyType }) => {
<p style={{ textAlign: "center", marginTop: "5px" }}>
{item1[0]}~{item1[1]}
</p>
)
);
})}
</li>
))}
</ul>
</div>
)
);
} else if (data.usable_time === "irregular") {
return (
<div className='available_time'>
<div className="available_time">
<h3>可用时间</h3>
<ul className='timeList flex'>
<ul className="timeList flex">
{data.irregularDate?.map((item) => (
<li>
{item.join(" 至 ")}
@ -65,31 +68,32 @@ export default ({ data, keyType }) => {
<p style={{ marginTop: "5px" }}>
{item1[0]}~{item1[1]}
</p>
)
);
})}
</li>
))}
</ul>
</div>
)
);
}
}
return (
<div id='reduceKnockGold' className='mobile'>
<div className='couponShow'>
<div className='coupon-left'>
<p className='coupon_money'>
<div id="reduceKnockGold" className="mobile">
<div className="couponShow">
<div className="coupon-left">
<p className="coupon_money">
<span></span>
{data.reduce_amount ? data.reduce_amount : "0.00"}
</p>
<p className='full_money'>
<p className="full_money">
{data.denomination ? data.denomination : "0.00"}可用
</p>
</div>
<div className='coupon-right'>
<div className="coupon-right">
<p
className={data.batch_goods_name.length < 20 ? "title" : "isTitle"}>
className={data.batch_goods_name.length < 20 ? "title" : "isTitle"}
>
{data.batch_goods_name ? data.batch_goods_name : "xxx"}
</p>
<p>
@ -100,7 +104,7 @@ export default ({ data, keyType }) => {
: "xxx xxx xxx"}{" "}
可用
</p>
<p className='validity'>
<p className="validity">
有效期:
{data?.entry_time ? data.entry_time[0] : "xxxx-xx-xx xx:xx:xx"}
{data?.entry_time ? data.entry_time[1] : "xxxx-xx-xx xx:xx:xx"}
@ -108,20 +112,21 @@ export default ({ data, keyType }) => {
</div>
</div>
{keyType === 2 ? (
{/* {keyType === 2 ? (
<div style={{ height: "20px" }}></div>
) : (
<div className='receiveBtn'>立即领取</div>
)}
)} */}
<div className="receiveBtn">立即领取</div>
<div className='coupon_explain'>
<div className="coupon_explain">
<h1>
- {data.batch_goods_name ? data.batch_goods_name : "xxx"}兑换说明 -
</h1>
{createElement()}
{data.instruction ? (
<>
<div className='content'>
<div className="content">
<h3>使用须知</h3>
<p>
1{data.channel === "1" ? "支付宝" : "微信"}
@ -132,17 +137,18 @@ export default ({ data, keyType }) => {
里立减金一旦领取不可撤销不可转让注意不要将兑换券泄露给他人
</p>
</div>
<div className='content'>
<div className="content">
<h3>使用规则</h3>
<div
dangerouslySetInnerHTML={{
__html: data.instruction
}}></div>
__html: data.instruction,
}}
></div>
</div>
</>
) : (
<Placeholder.TextBlock
className='TextBlock'
className="TextBlock"
animate
widths={widths}
rows={14}
@ -151,7 +157,7 @@ export default ({ data, keyType }) => {
)}
</div>
{keyType && keyType === 2 ? couponH5() : null}
{/* {keyType && keyType === 2 ? couponH5() : null} */}
</div>
)
}
);
};

View File

@ -34,12 +34,6 @@ const CouponAddEdit = () => {
}
}, []);
//
const getPlanList = () => {};
// -
const initEditAndCopy = () => {};
return (
<div className="coupon-add-edit">
{state.isShow ? (

File diff suppressed because it is too large Load Diff

View File

@ -772,10 +772,10 @@ export default class adduserinfo extends React.Component {
</div>
) : null}
</div>
{this.props.keyType && this.props.keyType === 2
{/* {this.props.keyType && this.props.keyType === 2
? this.couponH5()
: this.exchangecodeH5()}
: this.exchangecodeH5()} */}
{this.exchangecodeH5()}
</div>
</div>
);