personnel.js 516 B

12345678910111213141516171819202122232425262728
  1. // pages/personnel/personnel.js
  2. var app = getApp()
  3. Page({
  4. data: {
  5. workList: '',
  6. },
  7. onLoad: function(options) {
  8. this.getWorker();
  9. },
  10. getWorker() {
  11. wx.showLoading({
  12. title: '加载中...',
  13. })
  14. app.request('personal/workerList', '', 'POST').then(res => {
  15. wx.hideLoading();
  16. console.log(res.data)
  17. if (res.data) {
  18. this.setData({
  19. workList: res.data,
  20. })
  21. }else {
  22. this.setData({
  23. workList:''
  24. })
  25. }
  26. })
  27. },
  28. })