From ae11615808e7c5fdc541780a687da068cd98386f Mon Sep 17 00:00:00 2001 From: zhaowei <zhaowei> Date: 星期四, 12 六月 2025 09:53:07 +0800 Subject: [PATCH] 1、调整终端首页功能页面logo图片改为字体图标优化资源获取速度 2、新增终端合格率和程序呼叫页面 3、终端点检页面不再为独立页面,调整为与二保三保页面相同的跳转我的待办页面逻辑 4、终端所有页面完成前后端联调 --- src/views/dnc/base/modules/ProductStructure/GuideCardBatch/GuideCardBatchList.vue | 25 ++++++++++++++++++++++--- 1 files changed, 22 insertions(+), 3 deletions(-) diff --git a/src/views/dnc/base/modules/ProductStructure/GuideCardBatch/GuideCardBatchList.vue b/src/views/dnc/base/modules/ProductStructure/GuideCardBatch/GuideCardBatchList.vue index 13e58f0..79d4442 100644 --- a/src/views/dnc/base/modules/ProductStructure/GuideCardBatch/GuideCardBatchList.vue +++ b/src/views/dnc/base/modules/ProductStructure/GuideCardBatch/GuideCardBatchList.vue @@ -200,9 +200,15 @@ methods: { initDictConfig(){ }, - getGuideCardBatchList(){ - console.log('currentDocumentInfo', this.guideCardBatchInfo) - let params + searchQuery() { + this.queryParam.docId = this.guideCardBatchInfo.docId; + this.loadData(1); + }, + /** + * 鑾峰彇鍔犲伐纭琛ㄥ垪琛� + */ + getGuideCardBatchList() { + let params= {}; params.docId=this.guideCardBatchInfo.docId; params.serialNumber=this.queryParam.serialNumber; params.fixtureInformation=this.guideCardBatchInfo.fixtureInformation; @@ -224,6 +230,19 @@ this.loading = false }) }, + searchReset() { + // 淇濈暀蹇呰瀛楁鐨勬祬鎷疯礉鏂瑰紡 + this.queryParam = { + docId: this.guideCardBatchInfo.docId + }; + this.loadData(1); + }, + loadData(pageNum) { + if (this.ipagination) { + this.ipagination.current = pageNum; + } + this.getGuideCardBatchList(); + }, getSuperFieldList(){ let fieldList=[]; fieldList.push({type:'string',value:'serialNumber',text:'娴佹按鍙�',dictCode:''}) -- Gitblit v1.9.3