diff --git a/src/api/standbook/index.js b/src/api/standbook/index.js new file mode 100644 index 0000000..1983e29 --- /dev/null +++ b/src/api/standbook/index.js @@ -0,0 +1,45 @@ +import request from '@/utils/request' + +export function listtask(params) { + return request({ + url: '/api/admin/stand-book/index', + method: 'get', + params:params + }) +} + +export function store(data) { + return request({ + url: '/api/admin/stand-book/store', + method: 'post', + data + }) +} + +export function save(data) { + return request({ + url: '/api/admin/stand-book/save', + method: 'post', + data + }) +} + +export function del(id) { + return request({ + url: '/api/admin/stand-book/destroy', + method: 'get', + params: { + id + } + }) +} + +export function get(id) { + return request({ + url: '/api/admin/stand-book/show', + method: 'get', + params: { + id + } + }) +} diff --git a/src/views/standbook/index.vue b/src/views/standbook/index.vue new file mode 100644 index 0000000..c531c3a --- /dev/null +++ b/src/views/standbook/index.vue @@ -0,0 +1,379 @@ + + + + + diff --git a/src/views/target/targetindex.vue b/src/views/target/targetindex.vue index f7e66b6..cff6ee4 100644 --- a/src/views/target/targetindex.vue +++ b/src/views/target/targetindex.vue @@ -56,7 +56,7 @@ - +