删除自动回复私信展示
This commit is contained in:
parent
88e406308c
commit
5c89ea4f08
|
@ -8,12 +8,7 @@ import { generateSignature } from "@/utils/crypto";
|
||||||
import { Toast, Modal } from "antd-mobile";
|
import { Toast, Modal } from "antd-mobile";
|
||||||
import { checkAuth } from "@/utils/auth";
|
import { checkAuth } from "@/utils/auth";
|
||||||
|
|
||||||
export default function WechatBar({
|
export default function WechatBar({ price, streamerMid, onClickDownloadApp }) {
|
||||||
price,
|
|
||||||
streamerMid,
|
|
||||||
auto_response_message,
|
|
||||||
onClickDownloadApp,
|
|
||||||
}) {
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const [showBuyWechat, setShowBuyWechat] = useState(false);
|
const [showBuyWechat, setShowBuyWechat] = useState(false);
|
||||||
|
|
||||||
|
@ -167,11 +162,6 @@ export default function WechatBar({
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="bg-[#FFFFFF26] h-0.5 w-4/5"></div>
|
<div className="bg-[#FFFFFF26] h-0.5 w-4/5"></div>
|
||||||
<div className="flex flex-row cursor-pointer items-center justify-center py-4 mb-2">
|
|
||||||
<pre className="text-white text-base font-medium text-center px-4 ml-2">
|
|
||||||
{auto_response_message}
|
|
||||||
</pre>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
@ -119,7 +119,6 @@ export default function StreamerDetail({ params }) {
|
||||||
<WechatBar
|
<WechatBar
|
||||||
price={Math.ceil(data?.wechat_coin_price / 9)}
|
price={Math.ceil(data?.wechat_coin_price / 9)}
|
||||||
streamerMid={data?.mid}
|
streamerMid={data?.mid}
|
||||||
auto_response_message={data?.auto_response_message}
|
|
||||||
onClickDownloadApp={copyAndSetCookieInviter}
|
onClickDownloadApp={copyAndSetCookieInviter}
|
||||||
/>
|
/>
|
||||||
{data?.platforms?.map((item, index) => (
|
{data?.platforms?.map((item, index) => (
|
||||||
|
|
Loading…
Reference in New Issue