| 1234567891011121314151617181920212223242526 |
- <?php
- namespace app\extra\douyin;
- use yzh52521\EasyHttp\Http;
- use yzh52521\EasyHttp\Response;
- class Account extends Base
- {
- /**
- * 设置订单详情按钮白名单
- */
- public function setWhiteSetting(string $account = "",int $type = 1,bool $all = false,array $uuid = []): array
- {
- $param = [
- "button_type" => $type,
- "open_all" => $all,
- ];
- if (!$all) {
- $param['uid_list'] = $uuid;
- }
- return Http::asJson()->withHeaders($this->header)->post($this->gateway."api/apps/trade/v2/toolkit/button_white_setting/", $param)->array();
- }
- }
|