diff --git a/src/utils/request.js b/src/utils/request.js index 2818f46..2871214 100644 --- a/src/utils/request.js +++ b/src/utils/request.js @@ -8,7 +8,7 @@ let loading; const service = axios.create({ baseURL: process.env.VUE_APP_BASE_API, // url = base url + request url // withCredentials: true, // send cookies when cross-domain requests - timeout: 5000, // request timeout + timeout: 10000, // request timeout isLoading:true }) diff --git a/src/views/activity/activityList.vue b/src/views/activity/activityList.vue index d3602c8..ff4fa7d 100644 --- a/src/views/activity/activityList.vue +++ b/src/views/activity/activityList.vue @@ -45,9 +45,10 @@ export default { table:[ { label:"活动名称", - width: 200, + width: 220, prop:'active_name', - align:'left' + align:'left', + fixed:'left', }, { label:"活动发布方", @@ -100,7 +101,7 @@ export default { }, { label:"活动地址", - width: 260, + minWidth: 260, align:'left', prop:'address' }, diff --git a/src/views/business/merchantManage.vue b/src/views/business/merchantManage.vue index 2f90ed8..4f193e5 100644 --- a/src/views/business/merchantManage.vue +++ b/src/views/business/merchantManage.vue @@ -106,7 +106,14 @@ export default { }, { prop:"state", - label: "状态" + label: "状态", + customFn:(row)=>{ + if(row.state == 1 || row.state === 'active'){ + return (
启用
) + }else{ + return (
禁用
) + } + } } ] diff --git a/src/views/finance/flow.vue b/src/views/finance/flow.vue index b7eae98..e383862 100644 --- a/src/views/finance/flow.vue +++ b/src/views/finance/flow.vue @@ -4,25 +4,43 @@
- - + + - - + - +
- + @@ -33,88 +51,91 @@ diff --git a/src/views/order/orderList.vue b/src/views/order/orderList.vue index ef8d665..3ac19ff 100644 --- a/src/views/order/orderList.vue +++ b/src/views/order/orderList.vue @@ -77,7 +77,7 @@