获取员工列表

This commit is contained in:
齐天大圣 2023-12-08 15:34:38 +08:00
parent 116141d547
commit 2b1888b719

View File

@ -91,7 +91,6 @@
<view class="" @click="show = true"> <view class="" @click="show = true">
<uni-icons type="right" size="14"></uni-icons> <uni-icons type="right" size="14"></uni-icons>
</view> </view>
</view> </view>
<!-- 底部 --> <!-- 底部 -->
@ -172,9 +171,7 @@
show: false, show: false,
shuomingList: [], shuomingList: [],
shuomingFList: [], shuomingFList: [],
columns: [ columns: [],
['员工一', '员工二', '员工三']
],
taplist: [{ taplist: [{
title: '储值充值' title: '储值充值'
}, },
@ -315,6 +312,15 @@
}).then(res=>{ }).then(res=>{
console.log(res) console.log(res)
}) })
},
//
getStaffList(){
request({
url:'/business/member/staff/list',
method:'get',
}).then(res=>{
this.columns = res.data.records
})
} }
} }
} }