123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- // pages/qualityTesting/qualityTesting.js
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- tabList: [{
- id: 0,
- title: "手机质检"
- },
- {
- id: 1,
- title: "耳机质检"
- }
- ],
- equiInfo:{
- onlyIndex:'djikdjuodjojd',
- model:'iPhone 11pro',
- color:'黑色',
- memory:'64G',
- },
- nowIndex: 0,
- status:1,
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad(options) {
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady() {
- },
- onChangeTab(e) {
- this.setData({
- nowIndex: e.currentTarget.dataset.index
- })
- },
- onceshi() {
- wx.navigateTo({
- url: '/pages/home/home',
- })
- }
- })
|