123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- Page({
- data: {
- contact_tel: "",
- show_customer_service: 0
- },
- onLoad: function(e) {
- getApp().page.onLoad(this, e)
- },
- dis: function () {
- wx.redirectTo({
- url: '/pages/index/index?go='+'nd',
- })
- },
- loadData: function(e) {
- var t = this;
- t.setData({
- store: getApp().core.getStorageSync(getApp().const.STORE)
- }), getApp().request({
- url: getApp().api.user.index,
- success: function(o) {
- if (0 == o.code) {
- if ("my" == t.data.__platform) o.data.menus.forEach(function(e, t, a) {
- "bangding" === e.id && o.data.menus.splice(t, 1, 0)
- });
- t.setData(o.data), getApp().core.setStorageSync(getApp().const.PAGES_USER_USER, o.data), getApp().core.setStorageSync(getApp().const.SHARE_SETTING, o.data.share_setting), getApp().core.setStorageSync(getApp().const.USER_INFO, o.data.user_info)
- }
- }
- })
- },
- onReady: function(e) {
- getApp().page.onReady(this)
- },
- onShow: function(e) {
- getApp().page.onShow(this);
- this.loadData()
- },
- callTel: function(e) {
- var t = e.currentTarget.dataset.tel;
- getApp().core.makePhoneCall({
- phoneNumber: t
- })
- },
- apply: function(t) {
- var a = getApp().core.getStorageSync(getApp().const.SHARE_SETTING),
- o = getApp().getUser();
- 1 == a.share_condition ? getApp().core.navigateTo({
- url: "/pages/add-share/index"
- }) : 0 != a.share_condition && 2 != a.share_condition || (0 == o.is_distributor ? getApp().core.showModal({
- title: "申请成为" + this.data.store.share_custom_data.words.share_name.name,
- content: "是否申请?",
- success: function(e) {
- e.confirm && (getApp().core.showLoading({
- title: "正在加载",
- mask: !0
- }), getApp().request({
- url: getApp().api.share.join,
- method: "POST",
- data: {
- form_id: t.detail.formId
- },
- success: function(e) {
- 0 == e.code && (0 == a.share_condition ? (o.is_distributor = 2, getApp().core.navigateTo({
- url: "/pages/add-share/index"
- })) : (o.is_distributor = 1, getApp().core.navigateTo({
- url: "/pages/share/index"
- })), getApp().core.setStorageSync(getApp().const.USER_INFO, o))
- },
- complete: function() {
- getApp().core.hideLoading()
- }
- }))
- }
- }) : getApp().core.navigateTo({
- url: "/pages/add-share/index"
- }))
- },
- verify: function(e) {
- getApp().core.scanCode({
- onlyFromCamera: !1,
- success: function(e) {
- getApp().core.navigateTo({
- url: "/" + e.path
- })
- },
- fail: function(e) {
- getApp().core.showToast({
- title: "失败"
- })
- }
- })
- },
- member: function() {
- getApp().core.navigateTo({
- url: "/pages/member/member"
- })
- },
- integral_mall: function(e) {
- var t, a;
- getApp().permission_list && getApp().permission_list.length && (t = getApp().permission_list, a = "integralmall", -1 != ("," + t.join(",") + ",").indexOf("," + a + ",")) && getApp().core.navigateTo({
- url: "/pages/integral-mall/index/index"
- })
- },
- clearCache: function() {
- wx.showActionSheet({
- itemList: ["清除缓存"],
- success: function(e) {
- if (0 === e.tapIndex) {
- wx.showLoading({
- title: "清除中..."
- });
- getApp().getStoreData();
- setInterval(function() {
- wx.hideLoading()
- }, 1e3)
- }
- }
- })
- },
- completemessage: function(e) {
- var t = this.data.__wxapp_img.cell,
- a = [t.cell_1.url, t.cell_2.url, t.cell_3.url, t.cell_4.url, t.cell_5.url];
- getApp().core.previewImage({
- current: a[0],
- urls: a
- })
- }
- });
|