diff --git a/src/api/system/param.js b/src/api/system/param.js new file mode 100644 index 0000000..a12fc1a --- /dev/null +++ b/src/api/system/param.js @@ -0,0 +1,13 @@ +import request from '@/utils/request' + +export function verifyMaintenance(code) { + const params = { + code + } + return request({ + url: 'api/dictionary/maintenanceVerification', + method: 'get', + params + }) +} +export default { verifyMaintenance } diff --git a/src/views/home.vue b/src/views/home.vue index d47ac99..43899ac 100644 --- a/src/views/home.vue +++ b/src/views/home.vue @@ -15,7 +15,7 @@ 全部任务({{ flowableData.length !==0? flowableData.length: 0 }}) 进行中({{ flowableData.length !==0? flowableData.length: 0 }}) 已完成({{ flowableData.length !==0? flowableData.length: 0 }}) - 更多流程 + 更多任务
{{ item + '架' }}
+