diff --git a/src/api/index.js b/src/api/index.js
index 3f24f13..a2bdc6d 100644
--- a/src/api/index.js
+++ b/src/api/index.js
@@ -797,6 +797,14 @@ export const getCustomerPhoneSetting = (params) => {
export const saveCustomerPhoneSetting = (params) => {
return postBodyRequest('/mall/admin/seckillGroup/customerPhone/save', params)
}
+// 查询区域基础配送费
+export const getBaseDeliveryFeeSetting = (params) => {
+ return getRequest('/mall/admin/seckillGroup/baseDeliveryFee/get', params)
+}
+// 保存区域基础配送费
+export const saveBaseDeliveryFeeSetting = (params) => {
+ return postBodyRequest('/mall/admin/seckillGroup/baseDeliveryFee/save', params)
+}
// 查询i/e审核管理配置
export const getIeAuditSetting = (params) => {
return getRequest('/app/ie/admin/audit-setting', params)
diff --git a/src/views/app/business/deliverytruck/deliveryTruck.vue b/src/views/app/business/deliverytruck/deliveryTruck.vue
index b0ec2e8..30ac74c 100644
--- a/src/views/app/business/deliverytruck/deliveryTruck.vue
+++ b/src/views/app/business/deliverytruck/deliveryTruck.vue
@@ -290,8 +290,7 @@ export default {
{ title: '状态', key: 'status', width: 90, render: (h, p) => h('Tag', { props: { color: p.row.status === 1 ? 'green' : 'default' } }, p.row.status === 1 ? '启用' : '停用') },
{ title: '操作', width: 220, fixed: 'right', render: (h, p) => h('div', [
h('Button', { props: { size: 'small' }, on: { click: () => this.openCategory(p.row) } }, '编辑'),
- h('Button', { props: { size: 'small', type: p.row.status === 1 ? 'warning' : 'success' }, style: { marginLeft: '6px' }, on: { click: () => this.updateCategoryStatus(p.row) } }, p.row.status === 1 ? '停用' : '启用'),
- h('Button', { props: { size: 'small', type: 'error' }, style: { marginLeft: '6px' }, on: { click: () => this.deleteCategory(p.row) } }, '删除')
+ h('Button', { props: { size: 'small', type: p.row.status === 1 ? 'warning' : 'success' }, style: { marginLeft: '6px' }, on: { click: () => this.updateCategoryStatus(p.row) } }, p.row.status === 1 ? '停用' : '启用')
]) }
],
postColumns: [
diff --git a/src/views/app/business/logistics/logistics.vue b/src/views/app/business/logistics/logistics.vue
index 7428eca..8c40cf9 100644
--- a/src/views/app/business/logistics/logistics.vue
+++ b/src/views/app/business/logistics/logistics.vue
@@ -78,6 +78,7 @@