diff --git a/src/api/harmonic-boot/luckyexcel.ts b/src/api/harmonic-boot/luckyexcel.ts index b5c5f14..209e63b 100644 --- a/src/api/harmonic-boot/luckyexcel.ts +++ b/src/api/harmonic-boot/luckyexcel.ts @@ -103,6 +103,14 @@ export function getTemplateByDept(params) { params }) } +// 获取模版 +export function querySysExcel(params) { + return createAxios({ + url: '/cs-harmonic-boot/sysExcel/querySysExcel', + method: 'post', + params + }) +} //资源管理 查询数据 export function queryData(data) { return createAxios({ @@ -168,3 +176,43 @@ export function terminalChooseTree() { method: 'get' }) } +//新增模版 +export function addSysExcel(data:any) { + return createAxios({ + url: '/cs-harmonic-boot/sysExcel/addSysExcel', + method: 'post', + data + }) +} +//修改模版 +export function updateSysExcel(data:any) { + return createAxios({ + url: '/cs-harmonic-boot/sysExcel/updateSysExcel', + method: 'post', + data + }) +} +//删除模版 +export function deleteSysExcel(params:any) { + return createAxios({ + url: '/cs-harmonic-boot/sysExcel/deleteSysExcel', + method: 'post', + params + }) +} +//查詢綁定 +export function queryList(params:any) { + return createAxios({ + url: '/cs-harmonic-boot/sysExcelRelation/queryList', + method: 'post', + params + }) +} +//綁定 +export function bandRelation(data:any) { + return createAxios({ + url: '/cs-harmonic-boot/sysExcelRelation/bandRelation', + method: 'post', + data + }) +} diff --git a/src/components/cockpit/F47Curve/index.vue b/src/components/cockpit/F47Curve/index.vue index 49aa85d..edb4af8 100644 --- a/src/components/cockpit/F47Curve/index.vue +++ b/src/components/cockpit/F47Curve/index.vue @@ -116,8 +116,8 @@ const tableStore: any = new TableStore({ loadCallback: () => { const gongData = gongfunction(tableStore.table.data) data.gs = tableStore.table.data.length - data.krr = gongData.pointI.length - data.bkrr = gongData.pointIun.length + data.krr = gongData.pointF.length + data.bkrr = gongData.pointFun.length echartList.value = { title: { text: `F47曲线` @@ -215,15 +215,7 @@ const tableStore: any = new TableStore({ // [0.4, 50, '2023-01-01 11:00:00'] // ], legendSymbol: 'circle', - emphasis: { - focus: 'series', - itemStyle: { - borderColor: '#fff', - borderWidth: 2, - shadowBlur: 10, - shadowColor: 'rgba(0, 0, 0, 0.5)' - } - }, + tooltip: { show: true, trigger: 'item', diff --git a/src/components/cockpit/governanceReport/index.vue b/src/components/cockpit/governanceReport/index.vue index 12f7a22..993a89b 100644 --- a/src/components/cockpit/governanceReport/index.vue +++ b/src/components/cockpit/governanceReport/index.vue @@ -3,9 +3,9 @@