Commit c2054e80 by 董晓奇

(1)工艺路线按照产品种类分,工艺路线上增加个字段,生产任务自动匹配

工艺路线-产品类型显示中文,从生产计划下发生产任务时自动匹配
parent d9a58476
import {
import { RokeRoutingPageModel, RokeRoutingPageParams, RokeRoutingPageResult } from './model/GylxModel'; RokeRoutingPageModel,
RokeRoutingPageParams,
RokeRoutingPageResult,
} from './model/GylxModel';
import { defHttp } from '/@/utils/http/axios'; import { defHttp } from '/@/utils/http/axios';
import { ErrorMessageMode } from '/#/axios'; import { ErrorMessageMode } from '/#/axios';
...@@ -8,15 +11,15 @@ enum Api { ...@@ -8,15 +11,15 @@ enum Api {
List = '/jcsj/gylx/list', List = '/jcsj/gylx/list',
Info = '/jcsj/gylx/info', Info = '/jcsj/gylx/info',
RokeRouting = '/jcsj/gylx', RokeRouting = '/jcsj/gylx',
} }
/** /**
* @description: 查询RokeRouting分页列表 * @description: 查询RokeRouting分页列表
*/ */
export async function getRokeRoutingPage(params: RokeRoutingPageParams, mode: ErrorMessageMode = 'modal') { export async function getRokeRoutingPage(
params: RokeRoutingPageParams,
mode: ErrorMessageMode = 'modal',
) {
return defHttp.get<RokeRoutingPageResult>( return defHttp.get<RokeRoutingPageResult>(
{ {
url: Api.Page, url: Api.Page,
...@@ -87,7 +90,3 @@ export async function deleteRokeRouting(ids: string[], mode: ErrorMessageMode = ...@@ -87,7 +90,3 @@ export async function deleteRokeRouting(ids: string[], mode: ErrorMessageMode =
}, },
); );
} }
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