index.js 400 B

1234567891011121314151617181920212223
  1. // index.js
  2. import {
  3. ajax
  4. } from "../../utils/util";
  5. Page({
  6. data: {
  7. ori: {},
  8. video_height: 0,
  9. },
  10. onLoad(options) {
  11. ajax({
  12. urlType: "fileurl",
  13. api: "/topic/tool/img/%E5%B0%91%E5%84%BF%E4%B9%A6%E7%94%BB%E5%A4%A7%E8%B5%9B/home.json?data=" +
  14. Date.now()
  15. }).then(res => {
  16. console.log(res)
  17. this.setData({
  18. ori: res || {}
  19. })
  20. })
  21. }
  22. })