(operateType, operateValueObj)
| 158 | } |
| 159 | |
| 160 | async userOperation(operateType, operateValueObj) { |
| 161 | const data = { |
| 162 | operateType, |
| 163 | operateValue: JSON.stringify(operateValueObj), |
| 164 | channelCode: this.channelCode |
| 165 | }; |
| 166 | const { data: result } = await this.request({ |
| 167 | method: "POST", |
| 168 | url: "https://tuan.api.ybm100.com/api/healthSquare/user/userOperation", |
| 169 | data |
| 170 | }); |
| 171 | return result; |
| 172 | } |
| 173 | |
| 174 | async getTaskListNew() { |
| 175 | const { data: result } = await this.request({ |
no test coverage detected