添加节点
This commit is contained in:
0
src/api/firmware/firmware.js
Normal file
0
src/api/firmware/firmware.js
Normal file
@ -41,4 +41,12 @@ export function del(ids) {
|
|||||||
url: '/system/product/' + ids,
|
url: '/system/product/' + ids,
|
||||||
method: 'delete'
|
method: 'delete'
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
// 新增节点
|
||||||
|
export function addNode(data) {
|
||||||
|
return request({
|
||||||
|
url: '/system/product/saveNode',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
}
|
}
|
13
src/views/firmware/firmwareList/index.vue
Normal file
13
src/views/firmware/firmwareList/index.vue
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<template>
|
||||||
|
<div></div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
</style>
|
13
src/views/firmware/firmwareUpdate/index.vue
Normal file
13
src/views/firmware/firmwareUpdate/index.vue
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<template>
|
||||||
|
<div>1111</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
</style>
|
Reference in New Issue
Block a user