diff --git a/.env.development b/.env.development index 15fe17d..752d0c2 100644 --- a/.env.development +++ b/.env.development @@ -2,6 +2,6 @@ ENV='development' # base api -VUE_APP_BASE_API=http://yikangyang.ali251.langye.net -VUE_APP_UPLOAD_API=http://yikangyang.ali251.langye.net/api/admin/upload-file +VUE_APP_BASE_API=https://yikangyang.ali251.langye.net +VUE_APP_UPLOAD_API=https://yikangyang.ali251.langye.net/api/admin/upload-file VUE_APP_PREVIEW_API=http://view.ali251.langye.net:8012/onlinePreview diff --git a/src/api/accompany-order/accompany-order.js b/src/api/accompany-order/accompany-order.js new file mode 100644 index 0000000..50adfd2 --- /dev/null +++ b/src/api/accompany-order/accompany-order.js @@ -0,0 +1,37 @@ +import request from '@/utils/request' + +export function index(params, isLoading = true) { + return request({ + method: 'get', + url: '/api/admin/accompany-order/index', + params, + isLoading + }) +} + +export function show(params, isLoading = true) { + return request({ + method: 'get', + url: '/api/admin/accompany-order/show', + params, + isLoading + }) +} + +export function save(data, isLoading = true) { + return request({ + method: 'post', + url: '/api/admin/accompany-order/save', + data, + isLoading + }) +} + +export function destroy(params, isLoading = true) { + return request({ + method: 'get', + url: '/api/admin/accompany-order/destroy', + params, + isLoading + }) +} diff --git a/src/api/undefined/undefined.js b/src/api/undefined/undefined.js deleted file mode 100644 index e69de29..0000000 diff --git a/src/styles/sidebar.scss b/src/styles/sidebar.scss index d203d30..19e8627 100644 --- a/src/styles/sidebar.scss +++ b/src/styles/sidebar.scss @@ -11,7 +11,7 @@ transition: width 0.28s; width: $sideBarWidth !important; //background-color: $menuBg; - background: transparent; + background: #f0f2f8; box-shadow: 1px 1px 15px 0px rgba(17, 76, 157, 0.2); height: 100%; position: fixed; diff --git a/src/views/AccompanyOrder/AccompanyOrder.vue b/src/views/AccompanyOrder/AccompanyOrder.vue new file mode 100644 index 0000000..ce9e290 --- /dev/null +++ b/src/views/AccompanyOrder/AccompanyOrder.vue @@ -0,0 +1,424 @@ + + + + + +