forked from github/dataease
Merge branch 'dev' into pr@dev@fixextratdata
This commit is contained in:
commit
f4d76efd13
4
backend/src/main/resources/db/migration/V54__1.18.7.sql
Normal file
4
backend/src/main/resources/db/migration/V54__1.18.7.sql
Normal file
@ -0,0 +1,4 @@
|
||||
UPDATE `my_plugin`
|
||||
SET `version` = '1.18.7'
|
||||
where `plugin_id` > 0
|
||||
and `version` = '1.18.6';
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "dataease",
|
||||
"version": "1.18.6",
|
||||
"version": "1.18.7",
|
||||
"description": "dataease front",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
@ -29,6 +29,6 @@ export function starStatus(panelId) {
|
||||
return request({
|
||||
url: '/api/store/status/' + panelId,
|
||||
method: 'post',
|
||||
loading: true
|
||||
loading: false
|
||||
})
|
||||
}
|
||||
|
@ -33,6 +33,7 @@ export function queryTargetPanelJumpInfo(requestInfo) {
|
||||
export function queryPanelJumpInfo(panelId) {
|
||||
return request({
|
||||
url: '/linkJump/queryPanelJumpInfo/' + panelId,
|
||||
method: 'get'
|
||||
method: 'get',
|
||||
loading: false
|
||||
})
|
||||
}
|
||||
|
@ -21,6 +21,7 @@ export function saveLinkage(requestInfo) {
|
||||
export function getPanelAllLinkageInfo(panelId) {
|
||||
return request({
|
||||
url: '/linkage/getPanelAllLinkageInfo/' + panelId,
|
||||
method: 'get'
|
||||
method: 'get',
|
||||
loading: false
|
||||
})
|
||||
}
|
||||
|
@ -97,7 +97,7 @@ export function viewPanelLog(data) {
|
||||
return request({
|
||||
url: 'panel/group/viewLog',
|
||||
method: 'post',
|
||||
loading: true,
|
||||
loading: false,
|
||||
data
|
||||
})
|
||||
}
|
||||
|
@ -4,6 +4,6 @@ export function queryAll() {
|
||||
return request({
|
||||
url: '/pdf-template/queryAll',
|
||||
method: 'get',
|
||||
loading: true
|
||||
loading: false
|
||||
})
|
||||
}
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 16 KiB |
Binary file not shown.
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "dataease-mobile",
|
||||
"version": "1.18.6",
|
||||
"version": "1.18.7",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"serve": "npm run dev:h5",
|
||||
|
Loading…
Reference in New Issue
Block a user