diff --git a/src/pages.json b/src/pages.json index 44704d1..210b210 100644 --- a/src/pages.json +++ b/src/pages.json @@ -1058,6 +1058,14 @@ "navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一 } }, + { + "path": "pages/raw/commission/goOut/detail", + "style": { + "navigationBarTitleText": "出库明细", + "navigationStyle": "custom", // 隐藏系统导航栏 + "navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一 + } + }, { "path": "pages/raw/commission/return/index", "style": { @@ -1067,9 +1075,9 @@ } }, { - "path": "pages/raw/commission/goOut/detail", + "path": "pages/raw/commission/return/detail", "style": { - "navigationBarTitleText": "出库明细", + "navigationBarTitleText": "委外退料明细", "navigationStyle": "custom", // 隐藏系统导航栏 "navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一 } diff --git a/src/pages/raw/commission/return/index.vue b/src/pages/raw/commission/return/index.vue index 0f1a218..9d76e87 100644 --- a/src/pages/raw/commission/return/index.vue +++ b/src/pages/raw/commission/return/index.vue @@ -312,7 +312,7 @@ export default class dnReceiptDom extends BasePage { factoryCode: person.session.user.factoryCode, }; await this.model.querydetaildlistSubcontractReturn(content); - this.toPage(this.page.raw.commission.goOut.detail); + this.toPage(this.page.raw.commission.return.detail); } } diff --git a/src/pages/raw/commission/return/model.ts b/src/pages/raw/commission/return/model.ts index 440c640..bc1982d 100644 --- a/src/pages/raw/commission/return/model.ts +++ b/src/pages/raw/commission/return/model.ts @@ -180,7 +180,7 @@ export class ReturningModule extends VuexModule { return res; } //查询明细 - @Action({ commit: 'updateCheckedOrderInInfoListKw' }) + @Action async querydetaildlistSubcontractReturn(content: any) { const res: any = await http.post(url.Subcontract.matReturn.detail, content); console.log('明细》》》》》》》》》', res.list);