瑞迪_flutter - 全车解决方案
未修改 

瑞迪_flutter - 全车解决方案 3.4.5

没有下载权限
Lv.14
Bronze Member
Iron Member
已加入
2021/09/11
消息
10,213
回应得分
3,631
Credits
$15,427
感谢亲爱的会员 @hargrave提交了一个新的资源:Ridy Flutter - Full Taxi solution-Ridy 是一个基于 Flutter 的功能齐全的出租车应用,它使用了强大的 Node.js 应用。
查看附件 41663
Ridy 是一个基于 Flutter 的全功能出租车应用程序,并使用强大的 Node.js 应用作为其后端。它在设计时考虑到了整个出租车行业的所有要求。

特点​

骑手​

  • []*]巫师UX用于选择取货和目的地位置[]请选择可用地区的服务[]实时位置更新驾驶员在行程中的位置[]如果需要,打电话或发短信给司机…
Read more about this resource...
 
Even following the changes I still receive the message: An unknown error occurred, please contact through the customer panel at support@ridy.io for more information.
apps\admin-panel\src\app\config\config.component.ts

FROM
JavaScript:
  async next() {
    switch (this.currentStep) {
      case 0: {
        if (this.currentConfig.currentConfiguration.purchaseCode == null) {
          this.msg.error('Purchase code is invalid.');
          return;
        }
        const result = await firstValueFrom(
          this.updatePurchaseGql.mutate({
            code: this.currentConfig.currentConfiguration.purchaseCode ?? '',
            email: this.email,
          })
        );
        console.log(result);
        if (
          result.data?.updatePurchaseCode.status ==
          UpdatePurchaseCodeStatus.ClientFound
        ) {
         this.currentStep += 1;
        }
        if (
          result.data?.updatePurchaseCode.status ==
          UpdatePurchaseCodeStatus.Invalid
        ) {
       this.currentStep += 1;
        }
        if (
          result.data?.updatePurchaseCode.status == UpdatePurchaseCodeStatus.Ok
        ) {
        }
        break;
      }

JavaScript:
  async next() {
    switch (this.currentStep) {
      case 0: {
        if (this.currentConfig.currentConfiguration.purchaseCode == null) {
          this.msg.error('Purchase code is invalid.');
          return;
        }
         this.currentStep += 1;
        break;
      }
 
顶部