diff --git a/src/api/brand.js b/src/api/brand.js
index 6c62b7e..86998d1 100644
--- a/src/api/brand.js
+++ b/src/api/brand.js
@@ -1,53 +1,64 @@
import request from '@/utils/request'
export function fetchList(params) {
- return request({
- url:'/pms/PmsBrand/list',
- method:'get',
- params:params
- })
+ return request({
+ url: '/pms/PmsBrand/list',
+ method: 'get',
+ params: params
+ })
}
export function createBrand(data) {
- return request({
- url:'/pms/PmsBrand/create',
- method:'post',
- data:data
- })
+ return request({
+ url: '/pms/PmsBrand/create',
+ method: 'post',
+ data: data
+ })
}
+
+export function updateDelivery(data) {
+ return request({
+ url: '/pms/PmsBrand/update/delivery',
+ method: 'post',
+ params: data,
+ headers: {
+ 'Content-Type': 'application/json'
+ }
+ })
+}
+
export function updateShowStatus(data) {
- return request({
- url:'/pms/PmsBrand/update/showStatus',
- method:'post',
- data:data
- })
+ return request({
+ url: '/pms/PmsBrand/update/showStatus',
+ method: 'post',
+ data: data
+ })
}
export function updateFactoryStatus(data) {
- return request({
- url:'/pms/PmsBrand/update/factoryStatus',
- method:'post',
- data:data
- })
+ return request({
+ url: '/pms/PmsBrand/update/factoryStatus',
+ method: 'post',
+ data: data
+ })
}
export function deleteBrand(id) {
- return request({
- url:'/pms/PmsBrand/delete/'+id,
- method:'get',
- })
+ return request({
+ url: '/pms/PmsBrand/delete/' + id,
+ method: 'get',
+ })
}
export function getBrand(id) {
- return request({
- url:'/pms/PmsBrand/'+id,
- method:'get',
- })
-}
-
-export function updateBrand(id,data) {
- return request({
- url:'/pms/PmsBrand/update/'+id,
- method:'post',
- data:data
- })
+ return request({
+ url: '/pms/PmsBrand/' + id,
+ method: 'get',
+ })
}
+export function updateBrand(id, data) {
+ return request({
+ url: '/pms/PmsBrand/update/' + id,
+ method: 'post',
+ data: data
+ })
+}
\ No newline at end of file
diff --git a/src/api/invoiceReview/invoiceReview.js b/src/api/invoiceReview/invoiceReview.js
index 30be512..5ec13c5 100644
--- a/src/api/invoiceReview/invoiceReview.js
+++ b/src/api/invoiceReview/invoiceReview.js
@@ -1,30 +1,31 @@
import request from '@/utils/request'
export default {
-
- // 查询分页列表
- listPage: function(params) {
- return request({
- url: '/invoicerecords/listPage',
- method: 'post',
- data: params,
- })
- },
-
- // 获取订单详情
- getOrderDetails: function(params) {
- return request({
- url: '/empsreservoorder/OrderDetailsNew/'+params,
- method: 'get'
- })
- },
-
- // 审核发票
- toExamine: function(params) {
- return request({
- url: '/invoicerecords/toExamine',
- method: 'post',
- data: params,
- })
- },
+
+ // 查询分页列表
+ listPage: function(params) {
+ return request({
+ url: '/invoicerecords/listPage',
+ method: 'post',
+ data: params,
+ })
+ },
+
+ // 获取订单详情
+ getOrderDetails: function(params) {
+ return request({
+ // url: '/empsreservoorder/OrderDetailsNew/'+params,
+ url: '/order/OrderDetailsNew/' + params,
+ method: 'get'
+ })
+ },
+
+ // 审核发票
+ toExamine: function(params) {
+ return request({
+ url: '/invoicerecords/toExamine',
+ method: 'post',
+ data: params,
+ })
+ },
}
\ No newline at end of file
diff --git a/src/assets/home/bj_new.jpg b/src/assets/home/bj_new.jpg
new file mode 100644
index 0000000..e0d6f27
Binary files /dev/null and b/src/assets/home/bj_new.jpg differ
diff --git a/src/views/appletBanner/appletBannerAdd.vue b/src/views/appletBanner/appletBannerAdd.vue
index 7009bf4..bf38be8 100644
--- a/src/views/appletBanner/appletBannerAdd.vue
+++ b/src/views/appletBanner/appletBannerAdd.vue
@@ -1,281 +1,299 @@
-