From 2b1888b7196c0a9f9b8bbb6008b0c0d42007d0e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BD=90=E5=A4=A9=E5=A4=A7=E5=9C=A3?= <17615834396@163.com> Date: Fri, 8 Dec 2023 15:34:38 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E5=91=98=E5=B7=A5=E5=88=97?= =?UTF-8?q?=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pagesHome/oilRecharge/oilRecharge.vue | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) 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 + }) } } }