schangxiang@126.com
2025-09-18 49a51c068d62084bc4c3e77c4be94a20de556c4a
1
2
3
4
5
6
7
8
9
10
11
12
1、配置某些路由不需要token验证
    在 文件 config.default.ts文件中。
    比如某些下载文件啊,要配置必须有登录信息等。
    // 跳过的路由,路由都小写
    actions: [
 
2、查询数据
let plateData = await this.dbRead.find(vBaseProductPosition, {
      plateCode: body.plateCode
    });
 
3、