diff --git a/PC/UI.WinIn.FasterZ.Store/src/api/wms-api.js b/PC/UI.WinIn.FasterZ.Store/src/api/wms-api.js
index f753ffe..dbe79a6 100644
--- a/PC/UI.WinIn.FasterZ.Store/src/api/wms-api.js
+++ b/PC/UI.WinIn.FasterZ.Store/src/api/wms-api.js
@@ -2,6 +2,7 @@ import request from '@/utils/request'
import store from '@/store'
// let baseURL = process.env.VUE_APP_BASE_API + '/'
+let baseAPI = localStorage.getItem('baseApi') + '/'
let baseURL = localStorage.getItem('baseApi') + '/api/'
//新建
@@ -147,4 +148,31 @@ export function getVsersion() {
url: window.SITE_CONFIG['versionUrl'] + `/version.json?t=${new Date().getTime()}`,
method: 'get'
})
+}
+
+// fast-new
+//API-POST
+export function ApiTypePost(data, url) {
+ return request({
+ url: baseAPI + url,
+ method: 'post',
+ data
+ })
+}
+//API-PUT
+export function ApiTypePut(data, id, url) {
+ return request({
+ url: baseAPI + url,
+ method: 'put',
+ data,
+ params:{id:id}
+ })
+}
+//API-DELETE
+export function ApiTypeDelete(id, url) {
+ return request({
+ url: baseAPI + url,
+ method: 'delete',
+ params:{id:id}
+ })
}
\ No newline at end of file
diff --git a/PC/UI.WinIn.FasterZ.Store/src/components/addEditFromApiPop/index.vue b/PC/UI.WinIn.FasterZ.Store/src/components/addEditFromApiPop/index.vue
index c276e69..ec8858d 100644
--- a/PC/UI.WinIn.FasterZ.Store/src/components/addEditFromApiPop/index.vue
+++ b/PC/UI.WinIn.FasterZ.Store/src/components/addEditFromApiPop/index.vue
@@ -125,10 +125,9 @@
+
\ No newline at end of file
diff --git a/PC/UI.WinIn.FasterZ.Store/src/views/demo/demo_base_handle.vue b/PC/UI.WinIn.FasterZ.Store/src/views/demo/demo_base_handle.vue
new file mode 100644
index 0000000..8c860cf
--- /dev/null
+++ b/PC/UI.WinIn.FasterZ.Store/src/views/demo/demo_base_handle.vue
@@ -0,0 +1,196 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
(displayDialog.detailsDialog = val)"
+ @drawerbutton="drawerbutton"
+ @handleCommand="drawerHandle"
+ @close-value="closeValue"
+ :firstTabs="firstTabs"
+ :totalCount="totalCountDetails"
+ :currentPage="oldSkipCountDetails"
+ :MaxResultCount="MaxResultCountDetails"
+ @alterResultCountDetails="alterResultCountDetails"
+ @alertoldSkipCountDetails="alertoldSkipCountDetails"
+ :buttonOperationList_left="operationButtonsDetail"
+ >
+
+
+
+
\ No newline at end of file