diff --git a/public/home.jpg b/public/home.jpg deleted file mode 100644 index c458c73..0000000 Binary files a/public/home.jpg and /dev/null differ diff --git a/public/home.png b/public/home.png deleted file mode 100644 index e889ca5..0000000 Binary files a/public/home.png and /dev/null differ diff --git a/src/api/news/index.js b/src/api/news/index.js index aeaf52d..ee02d89 100644 --- a/src/api/news/index.js +++ b/src/api/news/index.js @@ -24,3 +24,11 @@ export const review = (ids,status,type) => { } }) } +export const importTemplate = (data) => { + return request({ + url: '/api/'+moduleName+'/ui/news/importTemplate', + headers:{'Content-Type': 'multipart/form-data'}, + method: 'post', + data: data + }) +} diff --git a/src/api/remoteSensingSourceData/remoteSensingSourceData.js b/src/api/remoteSensingSourceData/remoteSensingSourceData.js index c69fdea..9272eff 100644 --- a/src/api/remoteSensingSourceData/remoteSensingSourceData.js +++ b/src/api/remoteSensingSourceData/remoteSensingSourceData.js @@ -29,3 +29,11 @@ export const getPagesRemoteSensingSourceData = (param) => { params: param, }); }; + +export const approval = (data) => { + return request({ + url: '/api/' + moduleName + '/ui/remoteSensing/approval', + method: 'post', + data: data + }); +}; \ No newline at end of file diff --git a/src/api/websites/websites.js b/src/api/websites/websites.js new file mode 100644 index 0000000..531d5ff --- /dev/null +++ b/src/api/websites/websites.js @@ -0,0 +1,50 @@ +import request from '/@/utils/request'; +import { moduleName } from '/@/utils/request'; + +export function websitesPage(current, size, params) { + return request({ + url: '/api/' + moduleName + '/ui/websites/websitesPage', + method: 'get', + params: { + current, + size, + ...params + }, + }); +}; + +export function saveWebsites(data) { + return request({ + url: '/api/' + moduleName + '/ui/websites/saveWebsites', + method: 'post', + data: data + }); +}; + +export function updateWebsites(data) { + return request({ + url: '/api/' + moduleName + '/ui/websites/updateWebsites', + method: 'post', + data: data + }); +}; + +export const delWebsites = (id) => { + return request({ + url: '/api/' + moduleName + '/ui/websites/remove', + method: 'delete', + params: { + id + } + }); +}; + +export const getWebsitesById = (id) => { + return request({ + url: '/api/' + moduleName + '/ui/websites/getWebsitesById', + method: 'get', + params: { + id + } + }); +}; \ No newline at end of file diff --git a/src/layout/navBars/breadcrumb/user.vue b/src/layout/navBars/breadcrumb/user.vue index feb0fe5..2982b2e 100644 --- a/src/layout/navBars/breadcrumb/user.vue +++ b/src/layout/navBars/breadcrumb/user.vue @@ -7,7 +7,7 @@ @command="onComponentSizeChange">
+ title="component size">
- \ No newline at end of file + \ No newline at end of file diff --git a/src/views/dataService/multimediaData/component/uploadData.vue b/src/views/dataService/multimediaData/component/uploadData.vue new file mode 100644 index 0000000..797e1fb --- /dev/null +++ b/src/views/dataService/multimediaData/component/uploadData.vue @@ -0,0 +1,104 @@ + + + + + \ No newline at end of file diff --git a/src/views/dataService/multimediaData/index.vue b/src/views/dataService/multimediaData/index.vue index c87a161..bbc16eb 100644 --- a/src/views/dataService/multimediaData/index.vue +++ b/src/views/dataService/multimediaData/index.vue @@ -16,7 +16,7 @@ -
+
- - - - - Batch operation - +
+ + + + + Batch operation + + + + + + Upload + +
+ @@ -107,33 +116,28 @@ +