diff --git a/canvas-container/assets/font_icon/iconfont.json b/canvas-container/assets/font_icon/iconfont.json
index bd266cc..5352d51 100644
--- a/canvas-container/assets/font_icon/iconfont.json
+++ b/canvas-container/assets/font_icon/iconfont.json
@@ -1,6 +1,6 @@
{
"id": "2224733",
- "name": "cereshop",
+ "name": "Thee",
"font_family": "iconfont",
"css_prefix_text": "icon-",
"description": "",
diff --git a/src/api/commodity.js b/src/api/commodity.js
index 5b06f98..ebc8821 100644
--- a/src/api/commodity.js
+++ b/src/api/commodity.js
@@ -28,6 +28,14 @@ export function getClassifyGetAll(data) {
})
}
+export function getClassifyGetList(data) {
+ return request({
+ url: '/product/getList',
+ method: 'post',
+ data
+ })
+}
+
// 修改商品查询
export function getClassifyGetById(data) {
return request({
diff --git a/src/api/shopSys.js b/src/api/shopSys.js
index f37ad27..db99173 100644
--- a/src/api/shopSys.js
+++ b/src/api/shopSys.js
@@ -19,6 +19,16 @@ export function shopSysUpdate(data) {
})
}
+// 支付认证
+export function registerByXs(data) {
+ return request({
+ url: '/shop/registerByXs',
+ method: 'post',
+ data
+ })
+}
+
+
//* ******************** 物流方案 *********************
// 物流方案查询
export function logisticsGetAll(data) {
@@ -68,6 +78,15 @@ export function logisticsDelete(data) {
//* ******************** 仓库 *********************
// 仓库查询
+export function storehouseGetList(data) {
+ return request({
+ url: '/storehouse/getList',
+ method: 'post',
+ data
+ })
+}
+
+
export function storehouseGetAll(data) {
return request({
url: '/storehouse/getAll',
diff --git a/src/api/stockNote.js b/src/api/stockNote.js
new file mode 100644
index 0000000..9e60ae4
--- /dev/null
+++ b/src/api/stockNote.js
@@ -0,0 +1,48 @@
+import request from '@/utils/request'
+
+//* ******************** 出入库记录 *********************
+// 出入库记录查询
+export function stocknoteGetAll(data) {
+ return request({
+ url: '/stocknote/getAll',
+ method: 'post',
+ data
+ })
+}
+
+// 出入库记录详情
+export function stocknoteGetById(data) {
+ return request({
+ url: '/stocknote/getById',
+ method: 'post',
+ data
+ })
+}
+
+// 添加出入库记录
+export function stocknoteAdd(data) {
+ return request({
+ url: '/stocknote/save',
+ method: 'post',
+ data
+ })
+}
+
+// 修改出入库记录
+export function stocknoteUpdate(data) {
+ return request({
+ url: '/stocknote/update',
+ method: 'post',
+ data
+ })
+}
+
+// 删除仓库
+export function stocknoteDelete(data) {
+ return request({
+ url: '/stocknote/delete',
+ method: 'post',
+ data
+ })
+}
+
diff --git a/src/styles/elDialog.scss b/src/styles/elDialog.scss
index efda26b..c87a2db 100644
--- a/src/styles/elDialog.scss
+++ b/src/styles/elDialog.scss
@@ -10,6 +10,10 @@
color: #FFFFFF;
}
+.el-dialog__headerbtn .el-dialog__close {
+ color: #FFFFFF;
+}
+
.fenye {
padding-top: 20px;
}
diff --git a/src/views/active/index.vue b/src/views/active/index.vue
index ae2c7f5..61d0b9f 100644
--- a/src/views/active/index.vue
+++ b/src/views/active/index.vue
@@ -40,7 +40,7 @@