problemList.js 558 B

123456789101112131415161718
  1. // problemList.js
  2. var proList = [
  3. { id: 1, protitle: "常见问题", url: "/pages/problemListCont1/problemListCont1"},
  4. { id: 2, protitle: "管家服务", url: "/pages/problemListCont2/problemListCont2"},
  5. { id: 3, protitle: "关于定制", url: "/pages/problemListCont3/problemListCont3"},
  6. { id: 4, protitle: "售后服务", url: "/pages/problemListCont4/problemListCont4"},
  7. { id: 5, protitle: "商务合作", url: "/pages/problemListCont6/problemListCont6"}
  8. ];
  9. Page({
  10. /**
  11. * 页面的初始数据
  12. */
  13. data: {
  14. proList: proList
  15. }
  16. })