- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/views/business/measure/item/components/fourth/templateDetail.vue b/src/views/business/measure/item/components/fourth/templateDetail.vue
index 9b85352..a704e94 100644
--- a/src/views/business/measure/item/components/fourth/templateDetail.vue
+++ b/src/views/business/measure/item/components/fourth/templateDetail.vue
@@ -419,61 +419,7 @@
零位漂移
-
- 设定点偏差及切换差
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
示值误差、回程误差、轻敲位移
@@ -725,6 +671,61 @@
-->
+
+ 设定点偏差及切换差
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/views/business/measure/item/components/fourth/templateDetail.vue b/src/views/business/measure/item/components/fourth/templateDetail.vue
index 9b85352..a704e94 100644
--- a/src/views/business/measure/item/components/fourth/templateDetail.vue
+++ b/src/views/business/measure/item/components/fourth/templateDetail.vue
@@ -419,61 +419,7 @@
零位漂移
-
- 设定点偏差及切换差
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
示值误差、回程误差、轻敲位移
@@ -725,6 +671,61 @@
-->
+
+ 设定点偏差及切换差
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
index cb2d28e..865ba05 100644
--- a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
+++ b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
@@ -240,7 +240,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/views/business/measure/item/components/fourth/templateDetail.vue b/src/views/business/measure/item/components/fourth/templateDetail.vue
index 9b85352..a704e94 100644
--- a/src/views/business/measure/item/components/fourth/templateDetail.vue
+++ b/src/views/business/measure/item/components/fourth/templateDetail.vue
@@ -419,61 +419,7 @@
零位漂移
-
- 设定点偏差及切换差
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
示值误差、回程误差、轻敲位移
@@ -725,6 +671,61 @@
-->
+
+ 设定点偏差及切换差
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
index cb2d28e..865ba05 100644
--- a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
+++ b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
@@ -240,7 +240,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/directories/components/ability.vue b/src/views/business/subpackage/directories/components/ability.vue
index f23def0..ebcae74 100644
--- a/src/views/business/subpackage/directories/components/ability.vue
+++ b/src/views/business/subpackage/directories/components/ability.vue
@@ -163,7 +163,7 @@
import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/views/business/measure/item/components/fourth/templateDetail.vue b/src/views/business/measure/item/components/fourth/templateDetail.vue
index 9b85352..a704e94 100644
--- a/src/views/business/measure/item/components/fourth/templateDetail.vue
+++ b/src/views/business/measure/item/components/fourth/templateDetail.vue
@@ -419,61 +419,7 @@
零位漂移
-
- 设定点偏差及切换差
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
示值误差、回程误差、轻敲位移
@@ -725,6 +671,61 @@
-->
+
+ 设定点偏差及切换差
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
index cb2d28e..865ba05 100644
--- a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
+++ b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
@@ -240,7 +240,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/directories/components/ability.vue b/src/views/business/subpackage/directories/components/ability.vue
index f23def0..ebcae74 100644
--- a/src/views/business/subpackage/directories/components/ability.vue
+++ b/src/views/business/subpackage/directories/components/ability.vue
@@ -163,7 +163,7 @@
import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/views/business/measure/item/components/fourth/templateDetail.vue b/src/views/business/measure/item/components/fourth/templateDetail.vue
index 9b85352..a704e94 100644
--- a/src/views/business/measure/item/components/fourth/templateDetail.vue
+++ b/src/views/business/measure/item/components/fourth/templateDetail.vue
@@ -419,61 +419,7 @@
零位漂移
-
- 设定点偏差及切换差
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
示值误差、回程误差、轻敲位移
@@ -725,6 +671,61 @@
-->
+
+ 设定点偏差及切换差
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
index cb2d28e..865ba05 100644
--- a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
+++ b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
@@ -240,7 +240,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/directories/components/ability.vue b/src/views/business/subpackage/directories/components/ability.vue
index f23def0..ebcae74 100644
--- a/src/views/business/subpackage/directories/components/ability.vue
+++ b/src/views/business/subpackage/directories/components/ability.vue
@@ -163,7 +163,7 @@
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/views/business/measure/item/components/fourth/templateDetail.vue b/src/views/business/measure/item/components/fourth/templateDetail.vue
index 9b85352..a704e94 100644
--- a/src/views/business/measure/item/components/fourth/templateDetail.vue
+++ b/src/views/business/measure/item/components/fourth/templateDetail.vue
@@ -419,61 +419,7 @@
零位漂移
-
- 设定点偏差及切换差
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
示值误差、回程误差、轻敲位移
@@ -725,6 +671,61 @@
-->
+
+ 设定点偏差及切换差
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
index cb2d28e..865ba05 100644
--- a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
+++ b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
@@ -240,7 +240,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/directories/components/ability.vue b/src/views/business/subpackage/directories/components/ability.vue
index f23def0..ebcae74 100644
--- a/src/views/business/subpackage/directories/components/ability.vue
+++ b/src/views/business/subpackage/directories/components/ability.vue
@@ -163,7 +163,7 @@
diff --git a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
index 9cd49f5..06b125e 100644
--- a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
@@ -166,7 +166,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/views/business/measure/item/components/fourth/templateDetail.vue b/src/views/business/measure/item/components/fourth/templateDetail.vue
index 9b85352..a704e94 100644
--- a/src/views/business/measure/item/components/fourth/templateDetail.vue
+++ b/src/views/business/measure/item/components/fourth/templateDetail.vue
@@ -419,61 +419,7 @@
零位漂移
-
- 设定点偏差及切换差
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
示值误差、回程误差、轻敲位移
@@ -725,6 +671,61 @@
-->
+
+ 设定点偏差及切换差
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
index cb2d28e..865ba05 100644
--- a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
+++ b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
@@ -240,7 +240,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/directories/components/ability.vue b/src/views/business/subpackage/directories/components/ability.vue
index f23def0..ebcae74 100644
--- a/src/views/business/subpackage/directories/components/ability.vue
+++ b/src/views/business/subpackage/directories/components/ability.vue
@@ -163,7 +163,7 @@
diff --git a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
index 9cd49f5..06b125e 100644
--- a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
@@ -166,7 +166,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
index aacec5f..df575a8 100644
--- a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
@@ -175,7 +175,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/views/business/measure/item/components/fourth/templateDetail.vue b/src/views/business/measure/item/components/fourth/templateDetail.vue
index 9b85352..a704e94 100644
--- a/src/views/business/measure/item/components/fourth/templateDetail.vue
+++ b/src/views/business/measure/item/components/fourth/templateDetail.vue
@@ -419,61 +419,7 @@
零位漂移
-
- 设定点偏差及切换差
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
示值误差、回程误差、轻敲位移
@@ -725,6 +671,61 @@
-->
+
+ 设定点偏差及切换差
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
index cb2d28e..865ba05 100644
--- a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
+++ b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
@@ -240,7 +240,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/directories/components/ability.vue b/src/views/business/subpackage/directories/components/ability.vue
index f23def0..ebcae74 100644
--- a/src/views/business/subpackage/directories/components/ability.vue
+++ b/src/views/business/subpackage/directories/components/ability.vue
@@ -163,7 +163,7 @@
diff --git a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
index 9cd49f5..06b125e 100644
--- a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
@@ -166,7 +166,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
index aacec5f..df575a8 100644
--- a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
@@ -175,7 +175,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
index 78e20a6..11d3076 100644
--- a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
+++ b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
@@ -429,8 +429,8 @@
params: '校准信号',
itemType: item.itemType, // 项目
nominalValueDefineFront: item.nominalValue + item.nominalValueUnit, // 标称值
- topMeasureValue: item.itemType === '频率' ? '-' : '', // 顶部测量值
- bottomMeasureValue: item.itemType === '频率' ? '-' : '', // 底部测量值
+ topMeasureValue: item.itemType === '频率' ? '-' : item.topMeasureValue, // 顶部测量值
+ bottomMeasureValue: item.itemType === '频率' ? '-' : item.bottomMeasureValue, // 底部测量值
}
})
itemFormData.value.calibratingSignal = calibratingSignalList.value.length > 0 ? 1 : 0
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/views/business/measure/item/components/fourth/templateDetail.vue b/src/views/business/measure/item/components/fourth/templateDetail.vue
index 9b85352..a704e94 100644
--- a/src/views/business/measure/item/components/fourth/templateDetail.vue
+++ b/src/views/business/measure/item/components/fourth/templateDetail.vue
@@ -419,61 +419,7 @@
零位漂移
-
- 设定点偏差及切换差
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
示值误差、回程误差、轻敲位移
@@ -725,6 +671,61 @@
-->
+
+ 设定点偏差及切换差
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
index cb2d28e..865ba05 100644
--- a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
+++ b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
@@ -240,7 +240,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/directories/components/ability.vue b/src/views/business/subpackage/directories/components/ability.vue
index f23def0..ebcae74 100644
--- a/src/views/business/subpackage/directories/components/ability.vue
+++ b/src/views/business/subpackage/directories/components/ability.vue
@@ -163,7 +163,7 @@
diff --git a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
index 9cd49f5..06b125e 100644
--- a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
@@ -166,7 +166,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
index aacec5f..df575a8 100644
--- a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
@@ -175,7 +175,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
index 78e20a6..11d3076 100644
--- a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
+++ b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
@@ -429,8 +429,8 @@
params: '校准信号',
itemType: item.itemType, // 项目
nominalValueDefineFront: item.nominalValue + item.nominalValueUnit, // 标称值
- topMeasureValue: item.itemType === '频率' ? '-' : '', // 顶部测量值
- bottomMeasureValue: item.itemType === '频率' ? '-' : '', // 底部测量值
+ topMeasureValue: item.itemType === '频率' ? '-' : item.topMeasureValue, // 顶部测量值
+ bottomMeasureValue: item.itemType === '频率' ? '-' : item.bottomMeasureValue, // 底部测量值
}
})
itemFormData.value.calibratingSignal = calibratingSignalList.value.length > 0 ? 1 : 0
diff --git a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
index d7389ca..1ed033c 100644
--- a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
+++ b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
@@ -273,7 +273,6 @@
:is-multi="true"
:height="416"
:pagination="false"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/views/business/measure/item/components/fourth/templateDetail.vue b/src/views/business/measure/item/components/fourth/templateDetail.vue
index 9b85352..a704e94 100644
--- a/src/views/business/measure/item/components/fourth/templateDetail.vue
+++ b/src/views/business/measure/item/components/fourth/templateDetail.vue
@@ -419,61 +419,7 @@
零位漂移
-
- 设定点偏差及切换差
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
示值误差、回程误差、轻敲位移
@@ -725,6 +671,61 @@
-->
+
+ 设定点偏差及切换差
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
index cb2d28e..865ba05 100644
--- a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
+++ b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
@@ -240,7 +240,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/directories/components/ability.vue b/src/views/business/subpackage/directories/components/ability.vue
index f23def0..ebcae74 100644
--- a/src/views/business/subpackage/directories/components/ability.vue
+++ b/src/views/business/subpackage/directories/components/ability.vue
@@ -163,7 +163,7 @@
diff --git a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
index 9cd49f5..06b125e 100644
--- a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
@@ -166,7 +166,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
index aacec5f..df575a8 100644
--- a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
@@ -175,7 +175,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
index 78e20a6..11d3076 100644
--- a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
+++ b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
@@ -429,8 +429,8 @@
params: '校准信号',
itemType: item.itemType, // 项目
nominalValueDefineFront: item.nominalValue + item.nominalValueUnit, // 标称值
- topMeasureValue: item.itemType === '频率' ? '-' : '', // 顶部测量值
- bottomMeasureValue: item.itemType === '频率' ? '-' : '', // 底部测量值
+ topMeasureValue: item.itemType === '频率' ? '-' : item.topMeasureValue, // 顶部测量值
+ bottomMeasureValue: item.itemType === '频率' ? '-' : item.bottomMeasureValue, // 底部测量值
}
})
itemFormData.value.calibratingSignal = calibratingSignalList.value.length > 0 ? 1 : 0
diff --git a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
index d7389ca..1ed033c 100644
--- a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
+++ b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
@@ -273,7 +273,6 @@
:is-multi="true"
:height="416"
:pagination="false"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
index a01ea8a..42e8192 100644
--- a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
+++ b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
@@ -180,7 +180,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="360"
- :page-sizes="props.isMulti ? [5] : [20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/views/business/measure/item/components/fourth/templateDetail.vue b/src/views/business/measure/item/components/fourth/templateDetail.vue
index 9b85352..a704e94 100644
--- a/src/views/business/measure/item/components/fourth/templateDetail.vue
+++ b/src/views/business/measure/item/components/fourth/templateDetail.vue
@@ -419,61 +419,7 @@
零位漂移
-
- 设定点偏差及切换差
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
示值误差、回程误差、轻敲位移
@@ -725,6 +671,61 @@
-->
+
+ 设定点偏差及切换差
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
index cb2d28e..865ba05 100644
--- a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
+++ b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
@@ -240,7 +240,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/directories/components/ability.vue b/src/views/business/subpackage/directories/components/ability.vue
index f23def0..ebcae74 100644
--- a/src/views/business/subpackage/directories/components/ability.vue
+++ b/src/views/business/subpackage/directories/components/ability.vue
@@ -163,7 +163,7 @@
diff --git a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
index 9cd49f5..06b125e 100644
--- a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
@@ -166,7 +166,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
index aacec5f..df575a8 100644
--- a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
@@ -175,7 +175,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
index 78e20a6..11d3076 100644
--- a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
+++ b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
@@ -429,8 +429,8 @@
params: '校准信号',
itemType: item.itemType, // 项目
nominalValueDefineFront: item.nominalValue + item.nominalValueUnit, // 标称值
- topMeasureValue: item.itemType === '频率' ? '-' : '', // 顶部测量值
- bottomMeasureValue: item.itemType === '频率' ? '-' : '', // 底部测量值
+ topMeasureValue: item.itemType === '频率' ? '-' : item.topMeasureValue, // 顶部测量值
+ bottomMeasureValue: item.itemType === '频率' ? '-' : item.bottomMeasureValue, // 底部测量值
}
})
itemFormData.value.calibratingSignal = calibratingSignalList.value.length > 0 ? 1 : 0
diff --git a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
index d7389ca..1ed033c 100644
--- a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
+++ b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
@@ -273,7 +273,6 @@
:is-multi="true"
:height="416"
:pagination="false"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
index a01ea8a..42e8192 100644
--- a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
+++ b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
@@ -180,7 +180,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="360"
- :page-sizes="props.isMulti ? [5] : [20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue b/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
index 4db85cc..6476c5a 100644
--- a/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
+++ b/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/views/business/measure/item/components/fourth/templateDetail.vue b/src/views/business/measure/item/components/fourth/templateDetail.vue
index 9b85352..a704e94 100644
--- a/src/views/business/measure/item/components/fourth/templateDetail.vue
+++ b/src/views/business/measure/item/components/fourth/templateDetail.vue
@@ -419,61 +419,7 @@
零位漂移
-
- 设定点偏差及切换差
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
示值误差、回程误差、轻敲位移
@@ -725,6 +671,61 @@
-->
+
+ 设定点偏差及切换差
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
index cb2d28e..865ba05 100644
--- a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
+++ b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
@@ -240,7 +240,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/directories/components/ability.vue b/src/views/business/subpackage/directories/components/ability.vue
index f23def0..ebcae74 100644
--- a/src/views/business/subpackage/directories/components/ability.vue
+++ b/src/views/business/subpackage/directories/components/ability.vue
@@ -163,7 +163,7 @@
diff --git a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
index 9cd49f5..06b125e 100644
--- a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
@@ -166,7 +166,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
index aacec5f..df575a8 100644
--- a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
@@ -175,7 +175,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
index 78e20a6..11d3076 100644
--- a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
+++ b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
@@ -429,8 +429,8 @@
params: '校准信号',
itemType: item.itemType, // 项目
nominalValueDefineFront: item.nominalValue + item.nominalValueUnit, // 标称值
- topMeasureValue: item.itemType === '频率' ? '-' : '', // 顶部测量值
- bottomMeasureValue: item.itemType === '频率' ? '-' : '', // 底部测量值
+ topMeasureValue: item.itemType === '频率' ? '-' : item.topMeasureValue, // 顶部测量值
+ bottomMeasureValue: item.itemType === '频率' ? '-' : item.bottomMeasureValue, // 底部测量值
}
})
itemFormData.value.calibratingSignal = calibratingSignalList.value.length > 0 ? 1 : 0
diff --git a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
index d7389ca..1ed033c 100644
--- a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
+++ b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
@@ -273,7 +273,6 @@
:is-multi="true"
:height="416"
:pagination="false"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
index a01ea8a..42e8192 100644
--- a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
+++ b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
@@ -180,7 +180,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="360"
- :page-sizes="props.isMulti ? [5] : [20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue b/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
index 4db85cc..6476c5a 100644
--- a/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
+++ b/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/equipement/resume/encasement/edit.vue b/src/views/equipement/resume/encasement/edit.vue
index ef61a60..2141566 100644
--- a/src/views/equipement/resume/encasement/edit.vue
+++ b/src/views/equipement/resume/encasement/edit.vue
@@ -216,15 +216,6 @@
$router.back()
}
-// 导出word
-const exportWord = () => { ElMessage.info('敬请期待') }
-
-// 导出pdf
-const exportPdf = () => { ElMessage.info('敬请期待') }
-
-// 打印
-const print = () => { ElMessage.info('敬请期待') }
-
// 点击编辑按钮
const edit = () => {
pageType.value = 'edit'
@@ -265,6 +256,7 @@
addResumeEncasementList(params).then((res) => {
ElMessage.success('保存成功')
form.value.formNo = res.data // 记录表单号
+ infoId.value = res.data.id // id
pageType.value = 'detail'
loading.close()
}).catch(() => {
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/views/business/measure/item/components/fourth/templateDetail.vue b/src/views/business/measure/item/components/fourth/templateDetail.vue
index 9b85352..a704e94 100644
--- a/src/views/business/measure/item/components/fourth/templateDetail.vue
+++ b/src/views/business/measure/item/components/fourth/templateDetail.vue
@@ -419,61 +419,7 @@
零位漂移
-
- 设定点偏差及切换差
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
示值误差、回程误差、轻敲位移
@@ -725,6 +671,61 @@
-->
+
+ 设定点偏差及切换差
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
index cb2d28e..865ba05 100644
--- a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
+++ b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
@@ -240,7 +240,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/directories/components/ability.vue b/src/views/business/subpackage/directories/components/ability.vue
index f23def0..ebcae74 100644
--- a/src/views/business/subpackage/directories/components/ability.vue
+++ b/src/views/business/subpackage/directories/components/ability.vue
@@ -163,7 +163,7 @@
diff --git a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
index 9cd49f5..06b125e 100644
--- a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
@@ -166,7 +166,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
index aacec5f..df575a8 100644
--- a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
@@ -175,7 +175,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
index 78e20a6..11d3076 100644
--- a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
+++ b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
@@ -429,8 +429,8 @@
params: '校准信号',
itemType: item.itemType, // 项目
nominalValueDefineFront: item.nominalValue + item.nominalValueUnit, // 标称值
- topMeasureValue: item.itemType === '频率' ? '-' : '', // 顶部测量值
- bottomMeasureValue: item.itemType === '频率' ? '-' : '', // 底部测量值
+ topMeasureValue: item.itemType === '频率' ? '-' : item.topMeasureValue, // 顶部测量值
+ bottomMeasureValue: item.itemType === '频率' ? '-' : item.bottomMeasureValue, // 底部测量值
}
})
itemFormData.value.calibratingSignal = calibratingSignalList.value.length > 0 ? 1 : 0
diff --git a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
index d7389ca..1ed033c 100644
--- a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
+++ b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
@@ -273,7 +273,6 @@
:is-multi="true"
:height="416"
:pagination="false"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
index a01ea8a..42e8192 100644
--- a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
+++ b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
@@ -180,7 +180,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="360"
- :page-sizes="props.isMulti ? [5] : [20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue b/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
index 4db85cc..6476c5a 100644
--- a/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
+++ b/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/equipement/resume/encasement/edit.vue b/src/views/equipement/resume/encasement/edit.vue
index ef61a60..2141566 100644
--- a/src/views/equipement/resume/encasement/edit.vue
+++ b/src/views/equipement/resume/encasement/edit.vue
@@ -216,15 +216,6 @@
$router.back()
}
-// 导出word
-const exportWord = () => { ElMessage.info('敬请期待') }
-
-// 导出pdf
-const exportPdf = () => { ElMessage.info('敬请期待') }
-
-// 打印
-const print = () => { ElMessage.info('敬请期待') }
-
// 点击编辑按钮
const edit = () => {
pageType.value = 'edit'
@@ -265,6 +256,7 @@
addResumeEncasementList(params).then((res) => {
ElMessage.success('保存成功')
form.value.formNo = res.data // 记录表单号
+ infoId.value = res.data.id // id
pageType.value = 'detail'
loading.close()
}).catch(() => {
diff --git a/src/views/equipement/resume/week/components/templateDetail.vue b/src/views/equipement/resume/week/components/templateDetail.vue
index 8884fbc..fcd41fe 100644
--- a/src/views/equipement/resume/week/components/templateDetail.vue
+++ b/src/views/equipement/resume/week/components/templateDetail.vue
@@ -281,126 +281,128 @@
-
-
-
-
- 导出word
-
-
- 导出pdf
-
-
- 打印
-
-
- 保存
-
-
- 编辑
-
-
- 关闭
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+ 导出word
+
+
+ 导出pdf
+
+
+ 打印
+
+
+ 保存
+
+
+ 编辑
+
+
+ 关闭
+
+
+
-
- *{{ item.text }}
-
-
-
-
- 正常
-
-
- 不正常
-
-
- {{ scope.row.result === '1' ? '正常' : scope.row.result === '0' ? '不正常' : '未知' }}
- {{ scope.row.normalContent }}
-
- {{ scope.row[item.value] }}
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *{{ item.text }}
+
+
+
+
+ 正常
+
+
+ 不正常
+
+
+ {{ scope.row.result === '1' ? '正常' : scope.row.result === '0' ? '不正常' : '未知' }}
+ {{ scope.row.normalContent }}
+
+ {{ scope.row[item.value] }}
+
+
+
+
+
+
+
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/views/business/measure/item/components/fourth/templateDetail.vue b/src/views/business/measure/item/components/fourth/templateDetail.vue
index 9b85352..a704e94 100644
--- a/src/views/business/measure/item/components/fourth/templateDetail.vue
+++ b/src/views/business/measure/item/components/fourth/templateDetail.vue
@@ -419,61 +419,7 @@
零位漂移
-
- 设定点偏差及切换差
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
示值误差、回程误差、轻敲位移
@@ -725,6 +671,61 @@
-->
+
+ 设定点偏差及切换差
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
index cb2d28e..865ba05 100644
--- a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
+++ b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
@@ -240,7 +240,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/directories/components/ability.vue b/src/views/business/subpackage/directories/components/ability.vue
index f23def0..ebcae74 100644
--- a/src/views/business/subpackage/directories/components/ability.vue
+++ b/src/views/business/subpackage/directories/components/ability.vue
@@ -163,7 +163,7 @@
diff --git a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
index 9cd49f5..06b125e 100644
--- a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
@@ -166,7 +166,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
index aacec5f..df575a8 100644
--- a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
@@ -175,7 +175,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
index 78e20a6..11d3076 100644
--- a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
+++ b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
@@ -429,8 +429,8 @@
params: '校准信号',
itemType: item.itemType, // 项目
nominalValueDefineFront: item.nominalValue + item.nominalValueUnit, // 标称值
- topMeasureValue: item.itemType === '频率' ? '-' : '', // 顶部测量值
- bottomMeasureValue: item.itemType === '频率' ? '-' : '', // 底部测量值
+ topMeasureValue: item.itemType === '频率' ? '-' : item.topMeasureValue, // 顶部测量值
+ bottomMeasureValue: item.itemType === '频率' ? '-' : item.bottomMeasureValue, // 底部测量值
}
})
itemFormData.value.calibratingSignal = calibratingSignalList.value.length > 0 ? 1 : 0
diff --git a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
index d7389ca..1ed033c 100644
--- a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
+++ b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
@@ -273,7 +273,6 @@
:is-multi="true"
:height="416"
:pagination="false"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
index a01ea8a..42e8192 100644
--- a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
+++ b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
@@ -180,7 +180,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="360"
- :page-sizes="props.isMulti ? [5] : [20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue b/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
index 4db85cc..6476c5a 100644
--- a/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
+++ b/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/equipement/resume/encasement/edit.vue b/src/views/equipement/resume/encasement/edit.vue
index ef61a60..2141566 100644
--- a/src/views/equipement/resume/encasement/edit.vue
+++ b/src/views/equipement/resume/encasement/edit.vue
@@ -216,15 +216,6 @@
$router.back()
}
-// 导出word
-const exportWord = () => { ElMessage.info('敬请期待') }
-
-// 导出pdf
-const exportPdf = () => { ElMessage.info('敬请期待') }
-
-// 打印
-const print = () => { ElMessage.info('敬请期待') }
-
// 点击编辑按钮
const edit = () => {
pageType.value = 'edit'
@@ -265,6 +256,7 @@
addResumeEncasementList(params).then((res) => {
ElMessage.success('保存成功')
form.value.formNo = res.data // 记录表单号
+ infoId.value = res.data.id // id
pageType.value = 'detail'
loading.close()
}).catch(() => {
diff --git a/src/views/equipement/resume/week/components/templateDetail.vue b/src/views/equipement/resume/week/components/templateDetail.vue
index 8884fbc..fcd41fe 100644
--- a/src/views/equipement/resume/week/components/templateDetail.vue
+++ b/src/views/equipement/resume/week/components/templateDetail.vue
@@ -281,126 +281,128 @@
-
-
-
-
- 导出word
-
-
- 导出pdf
-
-
- 打印
-
-
- 保存
-
-
- 编辑
-
-
- 关闭
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+ 导出word
+
+
+ 导出pdf
+
+
+ 打印
+
+
+ 保存
+
+
+ 编辑
+
+
+ 关闭
+
+
+
-
- *{{ item.text }}
-
-
-
-
- 正常
-
-
- 不正常
-
-
- {{ scope.row.result === '1' ? '正常' : scope.row.result === '0' ? '不正常' : '未知' }}
- {{ scope.row.normalContent }}
-
- {{ scope.row[item.value] }}
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *{{ item.text }}
+
+
+
+
+ 正常
+
+
+ 不正常
+
+
+ {{ scope.row.result === '1' ? '正常' : scope.row.result === '0' ? '不正常' : '未知' }}
+ {{ scope.row.normalContent }}
+
+ {{ scope.row[item.value] }}
+
+
+
+
+
+
+
diff --git a/src/views/equipement/source/plan/dialog/selectSourceDialog.vue b/src/views/equipement/source/plan/dialog/selectSourceDialog.vue
index 4e35d83..bbb4578 100644
--- a/src/views/equipement/source/plan/dialog/selectSourceDialog.vue
+++ b/src/views/equipement/source/plan/dialog/selectSourceDialog.vue
@@ -164,7 +164,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/views/business/measure/item/components/fourth/templateDetail.vue b/src/views/business/measure/item/components/fourth/templateDetail.vue
index 9b85352..a704e94 100644
--- a/src/views/business/measure/item/components/fourth/templateDetail.vue
+++ b/src/views/business/measure/item/components/fourth/templateDetail.vue
@@ -419,61 +419,7 @@
零位漂移
-
- 设定点偏差及切换差
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
示值误差、回程误差、轻敲位移
@@ -725,6 +671,61 @@
-->
+
+ 设定点偏差及切换差
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
index cb2d28e..865ba05 100644
--- a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
+++ b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
@@ -240,7 +240,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/directories/components/ability.vue b/src/views/business/subpackage/directories/components/ability.vue
index f23def0..ebcae74 100644
--- a/src/views/business/subpackage/directories/components/ability.vue
+++ b/src/views/business/subpackage/directories/components/ability.vue
@@ -163,7 +163,7 @@
diff --git a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
index 9cd49f5..06b125e 100644
--- a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
@@ -166,7 +166,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
index aacec5f..df575a8 100644
--- a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
@@ -175,7 +175,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
index 78e20a6..11d3076 100644
--- a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
+++ b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
@@ -429,8 +429,8 @@
params: '校准信号',
itemType: item.itemType, // 项目
nominalValueDefineFront: item.nominalValue + item.nominalValueUnit, // 标称值
- topMeasureValue: item.itemType === '频率' ? '-' : '', // 顶部测量值
- bottomMeasureValue: item.itemType === '频率' ? '-' : '', // 底部测量值
+ topMeasureValue: item.itemType === '频率' ? '-' : item.topMeasureValue, // 顶部测量值
+ bottomMeasureValue: item.itemType === '频率' ? '-' : item.bottomMeasureValue, // 底部测量值
}
})
itemFormData.value.calibratingSignal = calibratingSignalList.value.length > 0 ? 1 : 0
diff --git a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
index d7389ca..1ed033c 100644
--- a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
+++ b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
@@ -273,7 +273,6 @@
:is-multi="true"
:height="416"
:pagination="false"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
index a01ea8a..42e8192 100644
--- a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
+++ b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
@@ -180,7 +180,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="360"
- :page-sizes="props.isMulti ? [5] : [20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue b/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
index 4db85cc..6476c5a 100644
--- a/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
+++ b/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/equipement/resume/encasement/edit.vue b/src/views/equipement/resume/encasement/edit.vue
index ef61a60..2141566 100644
--- a/src/views/equipement/resume/encasement/edit.vue
+++ b/src/views/equipement/resume/encasement/edit.vue
@@ -216,15 +216,6 @@
$router.back()
}
-// 导出word
-const exportWord = () => { ElMessage.info('敬请期待') }
-
-// 导出pdf
-const exportPdf = () => { ElMessage.info('敬请期待') }
-
-// 打印
-const print = () => { ElMessage.info('敬请期待') }
-
// 点击编辑按钮
const edit = () => {
pageType.value = 'edit'
@@ -265,6 +256,7 @@
addResumeEncasementList(params).then((res) => {
ElMessage.success('保存成功')
form.value.formNo = res.data // 记录表单号
+ infoId.value = res.data.id // id
pageType.value = 'detail'
loading.close()
}).catch(() => {
diff --git a/src/views/equipement/resume/week/components/templateDetail.vue b/src/views/equipement/resume/week/components/templateDetail.vue
index 8884fbc..fcd41fe 100644
--- a/src/views/equipement/resume/week/components/templateDetail.vue
+++ b/src/views/equipement/resume/week/components/templateDetail.vue
@@ -281,126 +281,128 @@
-
-
-
-
- 导出word
-
-
- 导出pdf
-
-
- 打印
-
-
- 保存
-
-
- 编辑
-
-
- 关闭
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+ 导出word
+
+
+ 导出pdf
+
+
+ 打印
+
+
+ 保存
+
+
+ 编辑
+
+
+ 关闭
+
+
+
-
- *{{ item.text }}
-
-
-
-
- 正常
-
-
- 不正常
-
-
- {{ scope.row.result === '1' ? '正常' : scope.row.result === '0' ? '不正常' : '未知' }}
- {{ scope.row.normalContent }}
-
- {{ scope.row[item.value] }}
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *{{ item.text }}
+
+
+
+
+ 正常
+
+
+ 不正常
+
+
+ {{ scope.row.result === '1' ? '正常' : scope.row.result === '0' ? '不正常' : '未知' }}
+ {{ scope.row.normalContent }}
+
+ {{ scope.row[item.value] }}
+
+
+
+
+
+
+
diff --git a/src/views/equipement/source/plan/dialog/selectSourceDialog.vue b/src/views/equipement/source/plan/dialog/selectSourceDialog.vue
index 4e35d83..bbb4578 100644
--- a/src/views/equipement/source/plan/dialog/selectSourceDialog.vue
+++ b/src/views/equipement/source/plan/dialog/selectSourceDialog.vue
@@ -164,7 +164,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/equipement/source/resultComplete/detail.vue b/src/views/equipement/source/resultComplete/detail.vue
index 51fa0e6..65566e5 100644
--- a/src/views/equipement/source/resultComplete/detail.vue
+++ b/src/views/equipement/source/resultComplete/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
@@ -52,9 +93,8 @@
-
-
- 敬请期待
+
+
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/views/business/measure/item/components/fourth/templateDetail.vue b/src/views/business/measure/item/components/fourth/templateDetail.vue
index 9b85352..a704e94 100644
--- a/src/views/business/measure/item/components/fourth/templateDetail.vue
+++ b/src/views/business/measure/item/components/fourth/templateDetail.vue
@@ -419,61 +419,7 @@
零位漂移
-
- 设定点偏差及切换差
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
示值误差、回程误差、轻敲位移
@@ -725,6 +671,61 @@
-->
+
+ 设定点偏差及切换差
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
index cb2d28e..865ba05 100644
--- a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
+++ b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
@@ -240,7 +240,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/directories/components/ability.vue b/src/views/business/subpackage/directories/components/ability.vue
index f23def0..ebcae74 100644
--- a/src/views/business/subpackage/directories/components/ability.vue
+++ b/src/views/business/subpackage/directories/components/ability.vue
@@ -163,7 +163,7 @@
diff --git a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
index 9cd49f5..06b125e 100644
--- a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
@@ -166,7 +166,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
index aacec5f..df575a8 100644
--- a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
@@ -175,7 +175,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
index 78e20a6..11d3076 100644
--- a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
+++ b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
@@ -429,8 +429,8 @@
params: '校准信号',
itemType: item.itemType, // 项目
nominalValueDefineFront: item.nominalValue + item.nominalValueUnit, // 标称值
- topMeasureValue: item.itemType === '频率' ? '-' : '', // 顶部测量值
- bottomMeasureValue: item.itemType === '频率' ? '-' : '', // 底部测量值
+ topMeasureValue: item.itemType === '频率' ? '-' : item.topMeasureValue, // 顶部测量值
+ bottomMeasureValue: item.itemType === '频率' ? '-' : item.bottomMeasureValue, // 底部测量值
}
})
itemFormData.value.calibratingSignal = calibratingSignalList.value.length > 0 ? 1 : 0
diff --git a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
index d7389ca..1ed033c 100644
--- a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
+++ b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
@@ -273,7 +273,6 @@
:is-multi="true"
:height="416"
:pagination="false"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
index a01ea8a..42e8192 100644
--- a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
+++ b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
@@ -180,7 +180,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="360"
- :page-sizes="props.isMulti ? [5] : [20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue b/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
index 4db85cc..6476c5a 100644
--- a/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
+++ b/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/equipement/resume/encasement/edit.vue b/src/views/equipement/resume/encasement/edit.vue
index ef61a60..2141566 100644
--- a/src/views/equipement/resume/encasement/edit.vue
+++ b/src/views/equipement/resume/encasement/edit.vue
@@ -216,15 +216,6 @@
$router.back()
}
-// 导出word
-const exportWord = () => { ElMessage.info('敬请期待') }
-
-// 导出pdf
-const exportPdf = () => { ElMessage.info('敬请期待') }
-
-// 打印
-const print = () => { ElMessage.info('敬请期待') }
-
// 点击编辑按钮
const edit = () => {
pageType.value = 'edit'
@@ -265,6 +256,7 @@
addResumeEncasementList(params).then((res) => {
ElMessage.success('保存成功')
form.value.formNo = res.data // 记录表单号
+ infoId.value = res.data.id // id
pageType.value = 'detail'
loading.close()
}).catch(() => {
diff --git a/src/views/equipement/resume/week/components/templateDetail.vue b/src/views/equipement/resume/week/components/templateDetail.vue
index 8884fbc..fcd41fe 100644
--- a/src/views/equipement/resume/week/components/templateDetail.vue
+++ b/src/views/equipement/resume/week/components/templateDetail.vue
@@ -281,126 +281,128 @@
-
-
-
-
- 导出word
-
-
- 导出pdf
-
-
- 打印
-
-
- 保存
-
-
- 编辑
-
-
- 关闭
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+ 导出word
+
+
+ 导出pdf
+
+
+ 打印
+
+
+ 保存
+
+
+ 编辑
+
+
+ 关闭
+
+
+
-
- *{{ item.text }}
-
-
-
-
- 正常
-
-
- 不正常
-
-
- {{ scope.row.result === '1' ? '正常' : scope.row.result === '0' ? '不正常' : '未知' }}
- {{ scope.row.normalContent }}
-
- {{ scope.row[item.value] }}
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *{{ item.text }}
+
+
+
+
+ 正常
+
+
+ 不正常
+
+
+ {{ scope.row.result === '1' ? '正常' : scope.row.result === '0' ? '不正常' : '未知' }}
+ {{ scope.row.normalContent }}
+
+ {{ scope.row[item.value] }}
+
+
+
+
+
+
+
diff --git a/src/views/equipement/source/plan/dialog/selectSourceDialog.vue b/src/views/equipement/source/plan/dialog/selectSourceDialog.vue
index 4e35d83..bbb4578 100644
--- a/src/views/equipement/source/plan/dialog/selectSourceDialog.vue
+++ b/src/views/equipement/source/plan/dialog/selectSourceDialog.vue
@@ -164,7 +164,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/equipement/source/resultComplete/detail.vue b/src/views/equipement/source/resultComplete/detail.vue
index 51fa0e6..65566e5 100644
--- a/src/views/equipement/source/resultComplete/detail.vue
+++ b/src/views/equipement/source/resultComplete/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
@@ -52,9 +93,8 @@
-
-
- 敬请期待
+
+
diff --git a/src/views/equipement/source/resultComplete/dialog/selectResultConfirmDialog.vue b/src/views/equipement/source/resultComplete/dialog/selectResultConfirmDialog.vue
index ff90780..456018a 100644
--- a/src/views/equipement/source/resultComplete/dialog/selectResultConfirmDialog.vue
+++ b/src/views/equipement/source/resultComplete/dialog/selectResultConfirmDialog.vue
@@ -167,7 +167,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- 外观及功能检查
-
-
-
-
-
-
-
-
-
-
+
+
+ 外观及功能检查
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/manager/sendReceive/dialog/selectStaff.vue b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
index d6b473d..3dc2153 100644
--- a/src/views/business/manager/sendReceive/dialog/selectStaff.vue
+++ b/src/views/business/manager/sendReceive/dialog/selectStaff.vue
@@ -188,7 +188,6 @@
:query="listQuery"
:list-loading="loading"
:is-showmulti-select="multi"
- :page-sizes="[5]"
@change="changePage"
@multi-select="multiSelect"
>
diff --git a/src/views/business/measure/item/components/fourth/templateDetail.vue b/src/views/business/measure/item/components/fourth/templateDetail.vue
index 9b85352..a704e94 100644
--- a/src/views/business/measure/item/components/fourth/templateDetail.vue
+++ b/src/views/business/measure/item/components/fourth/templateDetail.vue
@@ -419,61 +419,7 @@
零位漂移
-
- 设定点偏差及切换差
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
示值误差、回程误差、轻敲位移
@@ -725,6 +671,61 @@
-->
+
+ 设定点偏差及切换差
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
index cb2d28e..865ba05 100644
--- a/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
+++ b/src/views/business/measure/item/dialog/quoteTemplateListDialog.vue
@@ -240,7 +240,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/directories/components/ability.vue b/src/views/business/subpackage/directories/components/ability.vue
index f23def0..ebcae74 100644
--- a/src/views/business/subpackage/directories/components/ability.vue
+++ b/src/views/business/subpackage/directories/components/ability.vue
@@ -163,7 +163,7 @@
diff --git a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
index 9cd49f5..06b125e 100644
--- a/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectOutsourcerNoDialog.vue
@@ -166,7 +166,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
index aacec5f..df575a8 100644
--- a/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
+++ b/src/views/business/subpackage/review/dialog/selectReceivedEquipmentDialog.vue
@@ -175,7 +175,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
index 78e20a6..11d3076 100644
--- a/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
+++ b/src/views/business/taskMeasure/measureData/components/thirteenth/templateDetail.vue
@@ -429,8 +429,8 @@
params: '校准信号',
itemType: item.itemType, // 项目
nominalValueDefineFront: item.nominalValue + item.nominalValueUnit, // 标称值
- topMeasureValue: item.itemType === '频率' ? '-' : '', // 顶部测量值
- bottomMeasureValue: item.itemType === '频率' ? '-' : '', // 底部测量值
+ topMeasureValue: item.itemType === '频率' ? '-' : item.topMeasureValue, // 顶部测量值
+ bottomMeasureValue: item.itemType === '频率' ? '-' : item.bottomMeasureValue, // 底部测量值
}
})
itemFormData.value.calibratingSignal = calibratingSignalList.value.length > 0 ? 1 : 0
diff --git a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
index d7389ca..1ed033c 100644
--- a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
+++ b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog.vue
@@ -273,7 +273,6 @@
:is-multi="true"
:height="416"
:pagination="false"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
index a01ea8a..42e8192 100644
--- a/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
+++ b/src/views/business/taskMeasure/measureData/dialog/selectStandardDialog2.vue
@@ -180,7 +180,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="360"
- :page-sizes="props.isMulti ? [5] : [20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue b/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
index 4db85cc..6476c5a 100644
--- a/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
+++ b/src/views/equipement/info/book/dialog/selectUnpackRecordDialog.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/equipement/resume/encasement/edit.vue b/src/views/equipement/resume/encasement/edit.vue
index ef61a60..2141566 100644
--- a/src/views/equipement/resume/encasement/edit.vue
+++ b/src/views/equipement/resume/encasement/edit.vue
@@ -216,15 +216,6 @@
$router.back()
}
-// 导出word
-const exportWord = () => { ElMessage.info('敬请期待') }
-
-// 导出pdf
-const exportPdf = () => { ElMessage.info('敬请期待') }
-
-// 打印
-const print = () => { ElMessage.info('敬请期待') }
-
// 点击编辑按钮
const edit = () => {
pageType.value = 'edit'
@@ -265,6 +256,7 @@
addResumeEncasementList(params).then((res) => {
ElMessage.success('保存成功')
form.value.formNo = res.data // 记录表单号
+ infoId.value = res.data.id // id
pageType.value = 'detail'
loading.close()
}).catch(() => {
diff --git a/src/views/equipement/resume/week/components/templateDetail.vue b/src/views/equipement/resume/week/components/templateDetail.vue
index 8884fbc..fcd41fe 100644
--- a/src/views/equipement/resume/week/components/templateDetail.vue
+++ b/src/views/equipement/resume/week/components/templateDetail.vue
@@ -281,126 +281,128 @@
-
-
-
-
- 导出word
-
-
- 导出pdf
-
-
- 打印
-
-
- 保存
-
-
- 编辑
-
-
- 关闭
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+ 导出word
+
+
+ 导出pdf
+
+
+ 打印
+
+
+ 保存
+
+
+ 编辑
+
+
+ 关闭
+
+
+
-
- *{{ item.text }}
-
-
-
-
- 正常
-
-
- 不正常
-
-
- {{ scope.row.result === '1' ? '正常' : scope.row.result === '0' ? '不正常' : '未知' }}
- {{ scope.row.normalContent }}
-
- {{ scope.row[item.value] }}
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *{{ item.text }}
+
+
+
+
+ 正常
+
+
+ 不正常
+
+
+ {{ scope.row.result === '1' ? '正常' : scope.row.result === '0' ? '不正常' : '未知' }}
+ {{ scope.row.normalContent }}
+
+ {{ scope.row[item.value] }}
+
+
+
+
+
+
+
diff --git a/src/views/equipement/source/plan/dialog/selectSourceDialog.vue b/src/views/equipement/source/plan/dialog/selectSourceDialog.vue
index 4e35d83..bbb4578 100644
--- a/src/views/equipement/source/plan/dialog/selectSourceDialog.vue
+++ b/src/views/equipement/source/plan/dialog/selectSourceDialog.vue
@@ -164,7 +164,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/equipement/source/resultComplete/detail.vue b/src/views/equipement/source/resultComplete/detail.vue
index 51fa0e6..65566e5 100644
--- a/src/views/equipement/source/resultComplete/detail.vue
+++ b/src/views/equipement/source/resultComplete/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
@@ -52,9 +93,8 @@
-
-
- 敬请期待
+
+
diff --git a/src/views/equipement/source/resultComplete/dialog/selectResultConfirmDialog.vue b/src/views/equipement/source/resultComplete/dialog/selectResultConfirmDialog.vue
index ff90780..456018a 100644
--- a/src/views/equipement/source/resultComplete/dialog/selectResultConfirmDialog.vue
+++ b/src/views/equipement/source/resultComplete/dialog/selectResultConfirmDialog.vue
@@ -167,7 +167,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/equipement/standard/book/dialog/selectBuildStandardDialog.vue b/src/views/equipement/standard/book/dialog/selectBuildStandardDialog.vue
index 2478758..3d659d1 100644
--- a/src/views/equipement/standard/book/dialog/selectBuildStandardDialog.vue
+++ b/src/views/equipement/standard/book/dialog/selectBuildStandardDialog.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/api/business/fieldTest/record.ts b/src/api/business/fieldTest/record.ts
index d23976c..67f1afc 100644
--- a/src/api/business/fieldTest/record.ts
+++ b/src/api/business/fieldTest/record.ts
@@ -59,3 +59,13 @@
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/business/siteExecutive/log/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/business/manager/order.ts b/src/api/business/manager/order.ts
index 759aba9..fd338e3 100644
--- a/src/api/business/manager/order.ts
+++ b/src/api/business/manager/order.ts
@@ -6,7 +6,7 @@
const prefix = '/business/order'
// 列表查询
-export function getOrderList(data: IListQuery) {
+export function getOrderList(data: any) {
return request({
url: `${prefix}/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/equipment/source/resultComplete.ts b/src/api/equipment/source/resultComplete.ts
index 6040996..2116380 100644
--- a/src/api/equipment/source/resultComplete.ts
+++ b/src/api/equipment/source/resultComplete.ts
@@ -111,3 +111,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/equipment/trace/resultCompleteSituation/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/equipment/standard/book.ts b/src/api/equipment/standard/book.ts
index d746da7..bbec9b0 100644
--- a/src/api/equipment/standard/book.ts
+++ b/src/api/equipment/standard/book.ts
@@ -2,11 +2,10 @@
* 标准装置台账管理接口
*/
import request from '../../index'
-import type { IListQuery } from '@/views/equipement/standard/book/book-interface'
const prefix = 'standard'
// 列表查询
-export function getStandardList(data: IListQuery) {
+export function getStandardList(data: any) {
return request({
url: `${prefix}/approval/listPage?offset=${data.offset}&limit=${data.limit}`,
method: 'post',
diff --git a/src/api/resource/environment.ts b/src/api/resource/environment.ts
index 853e5f5..c191484 100644
--- a/src/api/resource/environment.ts
+++ b/src/api/resource/environment.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/environment/require/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/environmentTest.ts b/src/api/resource/environmentTest.ts
index cf2bab0..3eef69e 100644
--- a/src/api/resource/environmentTest.ts
+++ b/src/api/resource/environmentTest.ts
@@ -92,6 +92,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamResistance(data: any) {
+ return request({
+ url: '/resource/environment/resistance/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- 供电电压测试记录 -------------------------------- */
// 查询供电电压测试记录
export function getVoltageRecordList(data: any) {
@@ -183,6 +193,16 @@
})
}
+// 导出word/pdf/打印--
+export function getStreamVoltage(data: any) {
+ return request({
+ url: '/resource/environment/voltage/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
/* -------------------------------- UPS蓄电池内阻测试记录 -------------------------------- */
// 查询UPS蓄电池内阻测试记录
export function getUpsResistanceRecordList(data: any) {
@@ -273,3 +293,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStreamUpsResistance(data: any) {
+ return request({
+ url: '/resource/environment/ups/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/examine.ts b/src/api/resource/examine.ts
index f260482..2c6f0bb 100644
--- a/src/api/resource/examine.ts
+++ b/src/api/resource/examine.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--要求、委托书及合同评审表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/examine/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileArchive.ts b/src/api/resource/fileArchive.ts
index dadffa9..6749e80 100644
--- a/src/api/resource/fileArchive.ts
+++ b/src/api/resource/fileArchive.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/recallArchive/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/fileChange.ts b/src/api/resource/fileChange.ts
index ccadd16..6377803 100644
--- a/src/api/resource/fileChange.ts
+++ b/src/api/resource/fileChange.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/change/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileGrantNotice.ts b/src/api/resource/fileGrantNotice.ts
index 4e0f059..7cb7444 100644
--- a/src/api/resource/fileGrantNotice.ts
+++ b/src/api/resource/fileGrantNotice.ts
@@ -88,3 +88,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/grantNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/fileNovelty.ts b/src/api/resource/fileNovelty.ts
index 16bcfa0..399de03 100644
--- a/src/api/resource/fileNovelty.ts
+++ b/src/api/resource/fileNovelty.ts
@@ -88,3 +88,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/file/methodNoveltySearch/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/reviewNotice.ts b/src/api/resource/reviewNotice.ts
index 47874ea..60ebca8 100644
--- a/src/api/resource/reviewNotice.ts
+++ b/src/api/resource/reviewNotice.ts
@@ -115,3 +115,13 @@
data,
})
}
+
+// 导出word/pdf/打印--监测结果复查通知
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/reviewNotice/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/situationReport.ts b/src/api/resource/situationReport.ts
index 959e767..aea65b9 100644
--- a/src/api/resource/situationReport.ts
+++ b/src/api/resource/situationReport.ts
@@ -44,3 +44,13 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/situationReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/softwareReport.ts b/src/api/resource/softwareReport.ts
index 0ce1e9c..4058135 100644
--- a/src/api/resource/softwareReport.ts
+++ b/src/api/resource/softwareReport.ts
@@ -90,3 +90,14 @@
data,
})
}
+
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/reviewReport/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/softwareRevision.ts b/src/api/resource/softwareRevision.ts
index 8923e11..683b4b4 100644
--- a/src/api/resource/softwareRevision.ts
+++ b/src/api/resource/softwareRevision.ts
@@ -90,3 +90,12 @@
data,
})
}
+// 导出word/pdf/打印
+export function getStream(data: any) {
+ return request({
+ url: '/resource/software/revisionApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/suggestForm.ts b/src/api/resource/suggestForm.ts
index ce83b27..9893873 100644
--- a/src/api/resource/suggestForm.ts
+++ b/src/api/resource/suggestForm.ts
@@ -117,3 +117,13 @@
data,
})
}
+
+// 导出word/pdf/打印--委托方意见登记表
+export function getStream(data: any) {
+ return request({
+ url: '/resource/customer/suggestForm/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/supplierConsumable.ts b/src/api/resource/supplierConsumable.ts
index 1143e9c..3c0b4fd 100644
--- a/src/api/resource/supplierConsumable.ts
+++ b/src/api/resource/supplierConsumable.ts
@@ -504,3 +504,66 @@
data,
})
}
+
+// -------------------------------导出word、导出pdf、打印------------------------------------
+// 导出word/pdf/打印--易耗物资申请单
+export function getStreamConsumableApply(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsApply/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资验收记录
+export function getStreamConsumableCheck(data: any) {
+ return request({
+ url: '/resource/supplier/goodsAcceptanceRecord/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--物资入库单
+export function getStreamConsumableStore(data: any) {
+ return request({
+ url: '/resource/supplier/goodsWarehouse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资使用记录
+export function getStreamConsumableUse(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsUse/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--废弃物资处理交接记录
+export function getStreamConsumableHandover(data: any) {
+ return request({
+ url: '/resource/supplier/abandonGoodsHandle/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// 导出word/pdf/打印--易耗物资供方评价表
+export function getStreamConsumableEvaluate(data: any) {
+ return request({
+ url: '/resource/supplier/consumableGoodsEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
+// -----------------------------------------------------------------------------------------
diff --git a/src/api/resource/supplierEquipment.ts b/src/api/resource/supplierEquipment.ts
index 0cd6231..147f387 100644
--- a/src/api/resource/supplierEquipment.ts
+++ b/src/api/resource/supplierEquipment.ts
@@ -1,3 +1,4 @@
+// 设备供方评价表
import request from '../index'
const prefix = 'resource/supplier/evaluate'
@@ -90,3 +91,14 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/evaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
+
diff --git a/src/api/resource/supplierService.ts b/src/api/resource/supplierService.ts
index 07dbf3e..bc62d2b 100644
--- a/src/api/resource/supplierService.ts
+++ b/src/api/resource/supplierService.ts
@@ -90,3 +90,13 @@
data,
})
}
+
+// 导出word/pdf/打印--
+export function getStream(data: any) {
+ return request({
+ url: '/resource/supplier/serviceEvaluate/exportFile',
+ method: 'post',
+ responseType: 'blob',
+ data,
+ })
+}
diff --git a/src/api/resource/train.ts b/src/api/resource/train.ts
index 582a078..d66ed24 100644
--- a/src/api/resource/train.ts
+++ b/src/api/resource/train.ts
@@ -108,3 +108,13 @@
data,
})
}
+
+// 导出列表
+export function exportTrainList(data: any) {
+ return request({
+ url: '/resource/registration/form/listExport',
+ method: 'post',
+ data,
+ responseType: 'blob',
+ })
+}
diff --git a/src/router/modules/resource.ts b/src/router/modules/resource.ts
index ee63b06..0b4c77e 100644
--- a/src/router/modules/resource.ts
+++ b/src/router/modules/resource.ts
@@ -376,6 +376,18 @@
activeMenu: '/technology/noveltySearchList',
},
},
+ {
+ path: 'noveltySearch/approved/:id',
+ name: 'FileNoveltySearchDetailApproved',
+ component: () => import('@/views/resource/file/noveltySearch/approvedDetail.vue'),
+ meta: {
+ title: '测试校准检定方法查新记录表',
+ icon: 'ep:key',
+ sidebar: false,
+ breadcrumb: true,
+ activeMenu: '/technology/noveltySearchList',
+ },
+ },
],
},
{
@@ -585,7 +597,7 @@
{
path: 'revision/approved/:id?',
name: 'RevisionApplyDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/revision/approvedDetail.vue'),
meta: {
title: '软件修订申请详情',
icon: 'ep:key',
@@ -619,7 +631,7 @@
{
path: 'review/approved/:id?',
name: 'ReviewReportDetailApproved',
- component: () => import('@/views/resource/software/approvedDetail.vue'),
+ component: () => import('@/views/resource/software/review/approvedDetail.vue'),
meta: {
title: '软件评审报告详情',
icon: 'ep:key',
@@ -660,7 +672,7 @@
icon: 'ep:key',
sidebar: false,
breadcrumb: true,
- activeMenu: '/environment/recordList',
+ activeMenu: '/environment/requireList',
},
},
{
@@ -688,7 +700,7 @@
{
path: 'resistance/approved/:type?/:id?',
name: 'EnvironmentResistanceDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/resistance/approvedDetail.vue'),
meta: {
title: '实验室接地电阻记录详情',
icon: 'ep:key',
@@ -722,7 +734,7 @@
{
path: 'voltage/approved/:type?/:id?',
name: 'EnvironmentVoltageDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/voltage/approvedDetail.vue'),
meta: {
title: '工作间供电电压记录详情',
icon: 'ep:key',
@@ -756,7 +768,7 @@
{
path: 'ups/approved/:type?/:id?',
name: 'EnvironmentUpsDetailApproved',
- component: () => import('@/views/resource/environment/approvedDetail.vue'),
+ component: () => import('@/views/resource/environment/ups/approvedDetail.vue'),
meta: {
title: 'UPS蓄电池内阻测试记录详情',
icon: 'ep:key',
@@ -765,16 +777,16 @@
activeMenu: '/environment/upsResistanceList',
},
},
- {
- path: 'recordList',
- name: 'EnvironmentRecordList',
- component: () => import('@/views/resource/environment/record/list.vue'),
- meta: {
- title: '环境记录单',
- auth: '/resource/environment/record',
- icon: 'ep:key',
- },
- },
+ // {
+ // path: 'recordList',
+ // name: 'EnvironmentRecordList',
+ // component: () => import('@/views/resource/environment/record/list.vue'),
+ // meta: {
+ // title: '环境记录单',
+ // auth: '/resource/environment/record',
+ // icon: 'ep:key',
+ // },
+ // },
{
path: 'setting',
name: 'EnvironmentSetting',
@@ -857,7 +869,7 @@
{
path: 'service/approved/:id?',
name: 'ServiceEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/service/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/serviceEvaluate.vue'),
meta: {
title: '外部服务评价表详情',
icon: 'ep:key',
@@ -891,7 +903,7 @@
{
path: 'equipment/approved/:id?',
name: 'EquipmentEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/equipment/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/equipmentEvaluate.vue'),
meta: {
title: '设备供方评价表详情',
icon: 'ep:key',
@@ -925,7 +937,7 @@
{
path: 'consumableApply/approved/:type?/:id?',
name: 'ConsumableApplyDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableApply.vue'),
meta: {
title: '易耗物资申请单详情',
icon: 'ep:key',
@@ -959,7 +971,7 @@
{
path: 'consumableCheck/approved/:id?',
name: 'ConsumableCheckDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableCheck.vue'),
meta: {
title: '物资验收记录详情',
icon: 'ep:key',
@@ -993,7 +1005,7 @@
{
path: 'consumableStore/approved/:type?/:id?',
name: 'ConsumableStoreDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableStore.vue'),
meta: {
title: '物资入库单详情',
icon: 'ep:key',
@@ -1027,7 +1039,7 @@
{
path: 'consumable/approved/:id?',
name: 'ConsumableUseDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableUse.vue'),
meta: {
title: '易耗物资使用记录详情',
icon: 'ep:key',
@@ -1083,7 +1095,7 @@
{
path: 'consumable/supplier/approved/:id?',
name: 'ConsumableEvaluateDetailApproved',
- component: () => import('@/views/resource/outsideService/consumable/approvedDetail.vue'),
+ component: () => import('@/views/resource/outsideService/approvedDetail/consumableEvaluate.vue'),
meta: {
title: '易耗物资供方评价表详情',
icon: 'ep:key',
diff --git a/src/views/business/certManage/apply/dialog/selectCertDialog.vue b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
index c3e9141..acb39ee 100644
--- a/src/views/business/certManage/apply/dialog/selectCertDialog.vue
+++ b/src/views/business/certManage/apply/dialog/selectCertDialog.vue
@@ -195,7 +195,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
index 370d9cd..e2b5f02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectCustomerDialog.vue
@@ -168,7 +168,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
index 3a10299..e9a33b2 100644
--- a/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectEquipmentDialog.vue
@@ -228,7 +228,6 @@
:list-loading="loadingTable"
:is-multi="props.isMulti"
:height="260"
- :page-sizes="[5, 10, 20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
index 000e558..e6a7e02 100644
--- a/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
+++ b/src/views/business/fieldTest/approve/dialog/selectStaffDialog.vue
@@ -123,7 +123,6 @@
is-showmulti-select
:list-loading="loadingTable"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/fieldTest/record/detail.vue b/src/views/business/fieldTest/record/detail.vue
index f0b64af..f8e2a78 100644
--- a/src/views/business/fieldTest/record/detail.vue
+++ b/src/views/business/fieldTest/record/detail.vue
@@ -1,12 +1,20 @@
-
-
-
+
-
+
导出word
-
+
导出pdf
-
+
打印
-
- 编辑
-
关闭
-
-
- 敬请期待
+
+
diff --git a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
index c826380..332b35a 100644
--- a/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
+++ b/src/views/business/fieldTest/record/dialog/selectFieldTestApprove.vue
@@ -157,7 +157,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[20]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
index d57d8fc..c8b6440 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectEquipment.vue
@@ -188,7 +188,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [10, 20, 30, 50, 100, 150, 200, 300] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
index 1a950e1..33a7daa 100644
--- a/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
+++ b/src/views/business/manager/interchangeReceipt/dialog/selectOrderDialog.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectCustomer.vue b/src/views/business/manager/order/dialog/selectCustomer.vue
index c348275..ee9508d 100644
--- a/src/views/business/manager/order/dialog/selectCustomer.vue
+++ b/src/views/business/manager/order/dialog/selectCustomer.vue
@@ -160,7 +160,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectEquipment.vue b/src/views/business/manager/order/dialog/selectEquipment.vue
index d67834c..7169582 100644
--- a/src/views/business/manager/order/dialog/selectEquipment.vue
+++ b/src/views/business/manager/order/dialog/selectEquipment.vue
@@ -174,7 +174,6 @@
:list-loading="loadingTable"
:is-multi="isMulti"
:height="260"
- :page-sizes="isMulti ? [20] : [5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
index 8d66562..a874326 100644
--- a/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
+++ b/src/views/business/manager/order/dialog/selectFieldTestApprovalDialog.vue
@@ -158,7 +158,6 @@
:list-loading="loadingTable"
:is-multi="false"
:height="260"
- :page-sizes="[5]"
@change="changePage"
@multi-select="handleSelectionChange"
>
diff --git a/src/views/business/manager/sendReceive/components/certificate.vue b/src/views/business/manager/sendReceive/components/certificate.vue
index 4a3b0d5..4dc2332 100644
--- a/src/views/business/manager/sendReceive/components/certificate.vue
+++ b/src/views/business/manager/sendReceive/components/certificate.vue
@@ -101,7 +101,7 @@
diff --git a/src/views/business/manager/sendReceive/components/measureItem.vue b/src/views/business/manager/sendReceive/components/measureItem.vue
index 754334a..6e5568b 100644
--- a/src/views/business/manager/sendReceive/components/measureItem.vue
+++ b/src/views/business/manager/sendReceive/components/measureItem.vue
@@ -254,6 +254,9 @@
loading.close()
})
}
+ else {
+ loading.close()
+ }
})
})
}
@@ -270,265 +273,268 @@
-
-
-
-
-
-
-