1234567891011121314151617181920212223242526272829 |
- var app = getApp();
- var that;
- import 'dingtalk-jsapi/entry/mobile';
- import openLink from 'dingtalk-jsapi/api/biz/util/openLink';
- Page({
- data: {
- imgs:[
- 'https://img.zcool.cn/community/0109d161691b1311013f22cf803ae0.jpg@1280w_1l_2o_100sh.jpg',
- 'https://img.zcool.cn/community/0109d161691b1311013f22cf803ae0.jpg@1280w_1l_2o_100sh.jpg',
- 'https://img.zcool.cn/community/0109d161691b1311013f22cf803ae0.jpg@1280w_1l_2o_100sh.jpg'
- ]
- },
- onLoad() {
- that = this;
- dd.setNavigationBar({ title: "vip" });
- dd.setStorage({
- key: 'isShowNew',
- data: true,
- });
- },
- //跳转
- openView(e) {
- app.$get("api/order/goods/sku", { callback: "pages/deploy/sku/sku", goods_code: 'DT_GOODS_881634105565156' }).then((res) => {
- openLink({
- url: res.data.data.url
- })
- })
- },
- });
|