bindingOutlook.js 306 Bytes
import { getOutlookUrl } from "../../api/request";
Page({
  data: {
    url: ''
  },
  onLoad() {
    setTimeout(() => {
      let data = `0968162722860917,${dd.corpId}`;
      getOutlookUrl(data).then(res => {
        this.setData({
          url: res.data.data
        })
      }, 2000);
    });
  }
});