添加客服页面
This commit is contained in:
parent
bc00f6d965
commit
0c30f66b7b
|
@ -42,7 +42,6 @@ export default function StreamerDetail({ params }) {
|
|||
}
|
||||
);
|
||||
const detailData = await detailResponse.json();
|
||||
console.log(detailData);
|
||||
if (detailData.ret === -1) {
|
||||
Toast.show({
|
||||
content: detailData.msg,
|
||||
|
@ -141,6 +140,12 @@ export default function StreamerDetail({ params }) {
|
|||
提交并支付定金
|
||||
</button>
|
||||
</form>
|
||||
<p className="text-white text-center text-sm font-medium mt-4">
|
||||
若需要产品或技术支持请
|
||||
<a className="text-primary link" href="/help">
|
||||
联系客服
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
|
|
|
@ -6,11 +6,23 @@ export default function Help() {
|
|||
return (
|
||||
<section className="flex-1 container">
|
||||
<div className="flex flex-col items-center justify-center p-4">
|
||||
<Image src={logo} priority alt="" className="w-64 mt-12" />
|
||||
<svg className="mt-16" viewBox="0 0 1024 1024" width="100" height="100">
|
||||
<path
|
||||
d="M917.76 280.746667c-16.64-90.88-87.893333-162.133333-179.2-179.2-73.813333-13.653333-147.626667-20.48-221.866667-20.906667h-10.24c-73.813333 0.426667-147.626667 7.253333-221.866666 20.906667-90.88 16.64-162.133333 87.893333-179.2 179.2-13.653333 74.24-20.48 148.906667-20.906667 223.146666v7.253334c0.426667 74.24 7.253333 148.906667 20.906667 223.146666 16.64 90.88 87.893333 162.133333 179.2 179.2 75.52 13.653333 151.04 20.906667 226.986666 20.906667 75.52 0 151.04-6.826667 226.986667-20.906667 90.88-16.64 162.133333-87.893333 179.2-179.2 14.08-75.52 20.906667-151.04 20.906667-226.986666 0-75.093333-6.826667-150.613333-20.906667-226.56z"
|
||||
fill="#FF251A"
|
||||
></path>
|
||||
<path
|
||||
d="M645.12 425.813333l-43.52 39.68s0-158.72-145.066667-211.626666c0 0-14.506667 145.493333-87.04 198.4-72.533333 52.906667-217.6 211.626667 72.533334 330.666666 0 0-145.066667-145.493333 43.52-251.306666 0 0-14.506667 52.906667 58.026666 105.813333s0 145.493333 0 145.493333 348.16-79.36 101.546667-357.12z m0 0"
|
||||
fill="#FFFFFF"
|
||||
></path>
|
||||
</svg>
|
||||
<p className="text-white font-medium text-base text-center mt-4">
|
||||
若对于产品存在任何疑问或需要技术支持,请发送邮件到:
|
||||
</p>
|
||||
<p className="text-primary text-2xl">xinyidaole@outlook.com</p>
|
||||
<p className="text-primary text-2xl mt-4">ybc0902@qq.com</p>
|
||||
<p className="text-secondary text-base mt-4">
|
||||
工作时间:周一到周五8:00~21:00
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue