获取员工列表

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">
<uni-icons type="right" size="14"></uni-icons>
</view>
</view>
<!-- 底部 -->
@ -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
})
}
}
}