Compare commits
1 Commits
88977f36cd
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 10b0e16ad3 |
@ -9,7 +9,7 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- "5000:5000"
|
- "5000:5000"
|
||||||
environment:
|
environment:
|
||||||
- BASE_URL=http://192.168.60.120:8082
|
- BASE_URL=http://192.168.60.191:8082
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|||||||
@ -117,7 +117,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li>用户违反本协议约定的,平台可采取封号等方式限制用户使用,且所付服务费用不予退还。</li>
|
<li>用户违反本协议约定的,平台可采取封号等方式限制用户使用,且所付服务费用不予退还。</li>
|
||||||
<li>用户违反本协议约定,给平台或其他用户造成损失的,应承担赔偿责任。</li>
|
<li>用户违反本协议约定,给平台或其他用户造成损失的,应承担赔偿责任。</li>
|
||||||
<li>用户对平台服务不满,在未违背平台用户协议的情况下,可在付款后 3 日内申请退款,平台将在扣除已使用服务标准金额(每日7元,不足一日按一日算)后,进行退款。超出 3 日,不予退款。</li>
|
<li>用户对平台服务不满,在未违背平台用户协议的情况下,可在付款后 3 日内申请退款,平台将在扣除已使用服务标准金额后,进行退款。超出 3 日,不予退款。</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>退款申请渠道:<b>xiaochengxu@neighbourhood.com.cn</b></p>
|
<p>退款申请渠道:<b>xiaochengxu@neighbourhood.com.cn</b></p>
|
||||||
|
|
||||||
|
|||||||
@ -20,6 +20,8 @@ const genJobList = (current: number, pageSize: number) => {
|
|||||||
publisher: '甲子',
|
publisher: '甲子',
|
||||||
blPublisherId: `${index}-blPublisherId`,
|
blPublisherId: `${index}-blPublisherId`,
|
||||||
publisherAcctNo: `${index}-publisherAcctNo`,
|
publisherAcctNo: `${index}-publisherAcctNo`,
|
||||||
|
phone: `${index}-phone`,
|
||||||
|
acctNo: `${index}-acctNo`,
|
||||||
blGroupId: `${index}-blGroupId`,
|
blGroupId: `${index}-blGroupId`,
|
||||||
imGroupId: `${index}-imGroupId`,
|
imGroupId: `${index}-imGroupId`,
|
||||||
imGroupNick: '杭州主播群3',
|
imGroupNick: '杭州主播群3',
|
||||||
|
|||||||
@ -74,6 +74,20 @@ const TableList: React.FC = () => {
|
|||||||
search: false,
|
search: false,
|
||||||
copyable: true,
|
copyable: true,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '通告微信号',
|
||||||
|
dataIndex: 'acctNo',
|
||||||
|
valueType: 'textarea',
|
||||||
|
search: false,
|
||||||
|
copyable: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '通告手机号',
|
||||||
|
dataIndex: 'phone',
|
||||||
|
valueType: 'textarea',
|
||||||
|
search: false,
|
||||||
|
copyable: true,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '发布人昵称',
|
title: '发布人昵称',
|
||||||
dataIndex: 'publisher',
|
dataIndex: 'publisher',
|
||||||
|
|||||||
4
src/services/typings.d.ts
vendored
4
src/services/typings.d.ts
vendored
@ -66,6 +66,10 @@ declare namespace API {
|
|||||||
robotImNick: string;
|
robotImNick: string;
|
||||||
// 机器人微信号
|
// 机器人微信号
|
||||||
robotImNo: string;
|
robotImNo: string;
|
||||||
|
// 通告微信号
|
||||||
|
acctNo
|
||||||
|
// 通告手机号
|
||||||
|
phone
|
||||||
// 通告发布群数量
|
// 通告发布群数量
|
||||||
relateGroupCount: number;
|
relateGroupCount: number;
|
||||||
// 创建时间,时间戳
|
// 创建时间,时间戳
|
||||||
|
|||||||
Reference in New Issue
Block a user