diff --git a/gasStation-uni/pagesHome/oilRecharge/oilRecharge.vue b/gasStation-uni/pagesHome/oilRecharge/oilRecharge.vue index 4c94d7185..1014215fb 100644 --- a/gasStation-uni/pagesHome/oilRecharge/oilRecharge.vue +++ b/gasStation-uni/pagesHome/oilRecharge/oilRecharge.vue @@ -91,7 +91,6 @@ - @@ -172,9 +171,7 @@ show: false, shuomingList: [], shuomingFList: [], - columns: [ - ['员工一', '员工二', '员工三'] - ], + columns: [], taplist: [{ title: '储值充值' }, @@ -315,6 +312,15 @@ }).then(res=>{ console.log(res) }) + }, + //获取本店员工列表 + getStaffList(){ + request({ + url:'/business/member/staff/list', + method:'get', + }).then(res=>{ + this.columns = res.data.records + }) } } }