mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-08-10 12:01:57 +08:00
20 lines
429 B
JavaScript
20 lines
429 B
JavaScript
/**
|
|
* Process State
|
|
* @author Edwin Betancourt <EdwinBetanc0urt@outlook.com>
|
|
*/
|
|
export default {
|
|
inExecution: [], // process not response from server
|
|
isVisibleDialog: false,
|
|
reportObject: {},
|
|
reportList: [],
|
|
metadata: {},
|
|
process: [], // process to run finish
|
|
notificationProcess: [],
|
|
reportViewList: [],
|
|
totalResponse: 0,
|
|
totalRequest: 0,
|
|
totalSelection: 0,
|
|
errorSelection: 0,
|
|
successSelection: 0
|
|
}
|