Commit e3b181ce authored by 姜登's avatar 姜登
parents 2bbe1430 d7f14e1e
Pipeline #13659 passed with stage
in 4 seconds
...@@ -149,7 +149,7 @@ class OrderController extends Controller { ...@@ -149,7 +149,7 @@ class OrderController extends Controller {
if (!(appKeyInfo && appKeyInfo.valid === true && appKeyInfo.enableSsView === true)) { if (!(appKeyInfo && appKeyInfo.valid === true && appKeyInfo.enableSsView === true)) {
return ctx.fail('未开通此服务'); return ctx.fail('未开通此服务');
} }
const data = await service.order.getOneByOrderId({ orderId }); const data = await service.order.getOneByOrderId({ orderId, status: 'success' });
if (data) { if (data) {
if (data.status === 'success' && (data.appKey === appKey)) { if (data.status === 'success' && (data.appKey === appKey)) {
const result = await service.storage.read(orderId, appKey); const result = await service.storage.read(orderId, appKey);
......
...@@ -120,7 +120,7 @@ class TaskController extends Controller { ...@@ -120,7 +120,7 @@ class TaskController extends Controller {
case 1: case 1:
taskNote = { taskNote = {
status: 'next', status: 'next',
note: { message: 'waiting ', nextStep: result.data.loginParam }, note: { message: 'waiting ', nextStep: result.data },
}; };
break; break;
case 110: case 110:
......
...@@ -48,11 +48,12 @@ class TaskService extends Service { ...@@ -48,11 +48,12 @@ class TaskService extends Service {
async fetchCapture({ taskId, type }) { async fetchCapture({ taskId, type }) {
const { taskAPI, ctx } = this; const { taskAPI, ctx } = this;
const { fetchCodeUrl } = taskAPI; const { fetchCodeUrl } = taskAPI;
const result = await this._request(fetchCodeUrl, { const result = await this._request(fetchCodeUrl, {
method: 'post', method: 'post',
data: { data: {
taskId, taskId,
type, type: type === "code" ? "shebaoV2_yzm":"shebaoV2_phone_code",
}, },
contentType: 'json', contentType: 'json',
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment