qualityTesting.js 745 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // pages/qualityTesting/qualityTesting.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. tabList: [{
  8. id: 0,
  9. title: "手机质检"
  10. },
  11. {
  12. id: 1,
  13. title: "耳机质检"
  14. }
  15. ],
  16. equiInfo:{
  17. onlyIndex:'djikdjuodjojd',
  18. model:'iPhone 11pro',
  19. color:'黑色',
  20. memory:'64G',
  21. },
  22. nowIndex: 0,
  23. status:1,
  24. },
  25. /**
  26. * 生命周期函数--监听页面加载
  27. */
  28. onLoad(options) {
  29. },
  30. /**
  31. * 生命周期函数--监听页面初次渲染完成
  32. */
  33. onReady() {
  34. },
  35. onChangeTab(e) {
  36. this.setData({
  37. nowIndex: e.currentTarget.dataset.index
  38. })
  39. },
  40. onceshi() {
  41. wx.navigateTo({
  42. url: '/pages/home/home',
  43. })
  44. }
  45. })