vue2-client 1.2.4 → 1.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/docs/notice.md +22 -22
- package/package.json +1 -1
- package/src/base-client/components/iot/DataAnalysisView/DataAnalysisView.vue +244 -244
- package/src/base-client/components/ticket/TicketSubmitSuccessView/TicketSubmitSuccessView.vue +2 -2
- package/src/config/default/setting.config.js +1 -0
- package/src/pages/login/Login.vue +6 -2
- package/src/pages/system/ticket/index.vue +427 -0
- package/src/pages/system/ticket/submitTicketSuccess.vue +249 -0
- package/src/router/async/config.async.js +1 -0
- package/src/router/async/router.map.js +2 -2
- package/src/services/api/EmployeeDetailsViewApi.js +0 -4
- package/src/utils/routerUtil.js +366 -366
- package/vue.config.js +0 -10
- package/src/pages/system/applyInstallView/Core.vue +0 -570
- package/src/pages/system/applyInstallView/LFComponents/AddPanel.vue +0 -52
- package/src/pages/system/applyInstallView/LFComponents/Control.vue +0 -78
- package/src/pages/system/applyInstallView/LFComponents/DataDialog.vue +0 -24
- package/src/pages/system/applyInstallView/LFComponents/NodePanel.vue +0 -103
- package/src/pages/system/applyInstallView/PropertySetting/Base.vue +0 -124
- package/src/pages/system/applyInstallView/PropertySetting/CommonProperty.vue +0 -104
- package/src/pages/system/applyInstallView/PropertySetting/PropertyDialog.vue +0 -43
- package/src/pages/system/applyInstallView/background/base.png +0 -0
- package/src/pages/system/applyInstallView/background/click.png +0 -0
- package/src/pages/system/applyInstallView/background/download.png +0 -0
- package/src/pages/system/applyInstallView/background/end.png +0 -0
- package/src/pages/system/applyInstallView/background/push.png +0 -0
- package/src/pages/system/applyInstallView/background/start.png +0 -0
- package/src/pages/system/applyInstallView/background/step.png +0 -0
- package/src/pages/system/applyInstallView/background/time.png +0 -0
- package/src/pages/system/applyInstallView/config.js +0 -22
- package/src/pages/system/applyInstallView/data.json +0 -1284
- package/src/pages/system/applyInstallView/index.vue +0 -34
- package/src/pages/system/applyInstallView/registerNode/Connect.vue +0 -43
- package/src/pages/system/applyInstallView/registerNode/index.js +0 -16
- package/src/pages/system/applyInstallView/registerNode/registerBackEdge.js +0 -44
- package/src/pages/system/applyInstallView/registerNode/registerBase.js +0 -139
- package/src/pages/system/applyInstallView/registerNode/registerConnect.js +0 -60
- package/src/pages/system/applyInstallView/registerNode/registerDownload.js +0 -92
- package/src/pages/system/applyInstallView/registerNode/registerEnd.js +0 -110
- package/src/pages/system/applyInstallView/registerNode/registerPolyline.js +0 -14
- package/src/pages/system/applyInstallView/registerNode/registerPush.js +0 -127
- package/src/pages/system/applyInstallView/registerNode/registerStart.js +0 -105
- package/src/pages/system/applyInstallView/registerNode/registerStep.js +0 -209
- package/src/pages/system/applyInstallView/registerNode/registerTask.js +0 -29
|
@@ -7,10 +7,6 @@ const EmployeeDetailsViewApi = {
|
|
|
7
7
|
getFinishedTicketsCountWeekly: '/webmeterapi/getFinishedTicketsCountWeekly',
|
|
8
8
|
// 查询:是否存在此员工
|
|
9
9
|
findEmpName: '/webmeterapi/findEmpName',
|
|
10
|
-
// 查询:获取部门名字典
|
|
11
|
-
getDepartmentDictionary: '/webmeterapi/getDepartmentDictionary',
|
|
12
|
-
// 查询:获取模块名字典
|
|
13
|
-
getModelDictionary: '/webmeterapi/getModelDictionary',
|
|
14
10
|
// 查询:获取所有员工名,供前端展示备选项
|
|
15
11
|
getAllEmployeeName: '/webmeterapi/getAllEmployeeName'
|
|
16
12
|
}
|