<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>通知车主挪车</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; display: flex; align-items: center; justify-content: center; height: 100vh; background: #f0f2f5; color: #333; }
.container { text-align: center; padding: 20px; width: 100%; max-width: 400px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); background: #fff; }
h1 { font-size: 24px; margin-bottom: 20px; color: #007bff; }
p { margin-bottom: 20px; font-size: 16px; color: #555; }
button {
width: 100%;
padding: 15px;
margin: 10px 0;
font-size: 18px;
font-weight: bold;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background 0.3s;
}
.notify-btn { background: #28a745; }
.notify-btn:hover { background: #218838; }
.call-btn { background: #17a2b8; }
.call-btn:hover { background: #138496; }
</style>
</head>
<body>
<div class="container">
<h1>通知车主挪车</h1>
<p>如需通知车主,请点击以下按钮</p>
<button class="notify-btn" onclick="a()">通知车主挪车</button>
<button class="call-btn" onclick="b()">拨打车主电话</button>
<script>
function a() {
var c = "https://wxpusher.zjiecode.com/api/send/message";
var d = {"Content-Type": "application/json"};
var e = {"appToken": "AT_v9vXA*************waFYDIOd3eK", "content": "您好,有人需要您挪车,请及时处理。", "contentType": 1, "uids": ["UID_LidJ*************K9uYz"]};
var f = JSON.stringify(e);
fetch(c, {method: "POST", headers: d, body: f})
.then(g => g.json())
.then(h => {
if (h.code === 1000) {
alert("通知已发送!");
} else {
alert("通知发送失败,请稍后重试。");
}
})
.catch(i => {
console.error("Error sending notification:", i);
alert("通知发送出错,请检查网络连接。");
});
}
function b() {
window.location.href = "tel:180*************";
}
</script>
</body>
</html>
Comment