Commit d107982b authored by caimeng's avatar caimeng

新增首页和我的页面的埋点

parent 041cfa7f
<script> <script>
import { switchShowTabbar,loadDevice,loadLocation,loadNetwork,loadUuid } from '@/utils/index.js' import { switchShowTabbar, loadDevice, loadLocation, loadNetwork, loadUuid } from '@/utils/index.js'
export default { export default {
onLaunch: function () { onLaunch: function () {
// 手机型号 // 手机型号
...@@ -26,6 +26,20 @@ export default { ...@@ -26,6 +26,20 @@ export default {
} }
} }
// 当前版本号
plus.runtime.getProperty(plus.runtime.appid, function (wgtinfo) {
let versionNumber
if (wgtinfo.version) {
versionNumber = wgtinfo.version;
} else {
versionNumber = plus.runtime.version;
}
// 存储所有请求的头部信息
uni.setStorage({key: 'm-header-version',data: versionNumber});
})
/*** tabbar*/ /*** tabbar*/
switchShowTabbar() switchShowTabbar()
}, },
......
...@@ -6,23 +6,23 @@ ...@@ -6,23 +6,23 @@
const BASE = { const BASE = {
development: { development: {
common: "http://portal.cloudsmake.cn", common: "http://portal.cloudsmake.cn",
event: 'http://118.31.124.88:21111',
h5: 'http://192.168.0.23:8080/index.html#/loan' h5: 'http://192.168.0.23:8080/index.html#/loan'
}, },
stest: { stest: {
common: "http://portal.cloudsmake.cn", common: "http://portal.cloudsmake.cn",
event: 'http://118.31.124.88:21111',
h5: 'http://ddang-h5-s.rockstect.cn/index.html#/' h5: 'http://ddang-h5-s.rockstect.cn/index.html#/'
}, },
ltest: {
common: "https://dell-common-l.meimeiyouxin.com",
h5: ''
},
gray: { gray: {
common: "https://dell-common.meimeiyouxin.com", common: "https://api.yyhock.com",
h5: 'https://mmyx-h5-g.rockstect.com/index.html#/' event: 'https://event.jqtianxia.com',
h5: 'https://ddang-h5-g.rockstect.cn/index.html#/'
}, },
prod: { prod: {
common: "https://api.yyhock.com", common: "https://api.yyhock.com",
h5: 'https://mmyx-h5.rockstect.com/index.html#/' event: 'https://event.jqtianxia.com',
h5: 'https://ddang.rockstect.com/index.html#/'
} }
} }
let env = process.env.VUE_APP_BASE_NODE_ENV let env = process.env.VUE_APP_BASE_NODE_ENV
...@@ -32,7 +32,6 @@ let env = process.env.VUE_APP_BASE_NODE_ENV ...@@ -32,7 +32,6 @@ let env = process.env.VUE_APP_BASE_NODE_ENV
* APP打包运行需自定义环境env * * APP打包运行需自定义环境env *
* development 开发环境 * * development 开发环境 *
* stest S测试环境 * * stest S测试环境 *
* ltest L测试环境
* gray 灰度环境 * * gray 灰度环境 *
* prod 生产环境 * * prod 生产环境 *
* ========================== * ==========================
...@@ -44,7 +43,7 @@ env = "stest"; ...@@ -44,7 +43,7 @@ env = "stest";
const api = { const api = {
common: BASE[env].common, common: BASE[env].common,
buyer: BASE[env].buyer, event: BASE[env].event,
h5: BASE[env].h5 h5: BASE[env].h5
} }
......
...@@ -9,7 +9,9 @@ import Modal from './components/modal/modal' ...@@ -9,7 +9,9 @@ import Modal from './components/modal/modal'
import goodsItem from './components/goodsItem/index' import goodsItem from './components/goodsItem/index'
import upgradePopup from './components/showModal/upgradePopup' import upgradePopup from './components/showModal/upgradePopup'
import request from './utils/request.js' import request from './utils/request.js'
import * as utils from "./utils/index.js";
uni.$util = utils;
Vue.component('view-modal', Modal); Vue.component('view-modal', Modal);
Vue.component('view-goods', goodsItem); Vue.component('view-goods', goodsItem);
Vue.component('upgrade-Popup', upgradePopup); Vue.component('upgrade-Popup', upgradePopup);
......
import {Jump} from "../utils/route.js"; import { Jump } from "@/utils/route.js";
import api from '@/config/api.js'
export default { export default {
data() { data() {
return { return {
isInitOk:false, isInitOk: false,
// 如果页面开启了下拉刷新,用来判断关闭下拉刷新的 // 如果页面开启了下拉刷新,用来判断关闭下拉刷新的
isPullDownRefresh:false isPullDownRefresh: false
} }
}, },
onTabItemTap(e) {
const { text } = e;
switch (text) {
case "贷款":
this.buryingPoint('app:loan_index_tab_click')
break;
case "首页":
this.buryingPoint('app:index_tab_click')
break;
case "分类":
this.buryingPoint('app:category_tab_click')
break;
case "我的":
this.buryingPoint('app:my_tab_click')
break;
}
},
methods: { methods: {
/** 埋点 */
buryingPoint(des, val) {
const mobile = uni.getStorageSync('d-mobile')
const BaseUrl = api.event
try {
const data = {
id: mobile ? mobile : val,
event: des,
type: "DDH-APP",
};
uni.request({
url: `${BaseUrl}/event`,
method: 'POST',
data: {
...data
},
success: (res) => {
console.log(res, '埋点返回')
},
fail: (err) => {
console.log(err, '埋点报错')
}
})
} catch (err) {
console.log(err, "埋点请求报错");
}
},
// 检查是否开启了下拉刷新 // 检查是否开启了下拉刷新
checkPullDownRefresh(){ checkPullDownRefresh() {
if(this.isPullDownRefresh){ if (this.isPullDownRefresh) {
uni.stopPullDownRefresh() uni.stopPullDownRefresh()
} }
}, },
...@@ -32,6 +79,11 @@ export default { ...@@ -32,6 +79,11 @@ export default {
} }
return t.split('').reverse().join('') + '.' + r return t.split('').reverse().join('') + '.' + r
}, },
// 跳转到登录页面
JumpToLogin() {
console.log('调到登录页面')
return this.Go('uni:/pages/login/login')
},
// 页面跳转 // 页面跳转
...@@ -39,7 +91,7 @@ export default { ...@@ -39,7 +91,7 @@ export default {
Jump(url, type) Jump(url, type)
}, },
// 返回 // 返回
Back(num=1) { Back(num = 1) {
uni.navigateBack({ uni.navigateBack({
delta: num delta: num
}) })
......
.i-page {
width: 100%;
height: 100vh;
min-height: 1624rpx;
background: #F7FAFF;
}
.i-page .i-header {
position: sticky;
top: 0;
z-index: 9988;
padding-top: 98rpx;
width: 100%;
height: 88rpx;
background: #FFFFFF;
font-family: PingFangSC, PingFang SC;
font-weight: 500;
font-size: 36rpx;
color: #333333;
line-height: 88rpx;
text-align: center;
font-style: normal;
}
.i-page .i-boxs .i-banner {
margin: 20rpx 22rpx 32rpx;
width: 706rpx;
height: 359rpx;
}
.i-page .i-boxs .i-banner .swiper-item-i {
width: 706rpx;
height: 359rpx;
}
.i-page .i-boxs .i-banner .swiper-item-i .banner-item {
width: 706rpx;
height: 359rpx;
background-size: 690rpx 359rpx;
}
.i-page .i-boxs .i-list {
margin: 0 50rpx;
display: flex;
flex-wrap: wrap;
}
.i-page .i-boxs .i-list .mian-item {
margin-right: 67rpx;
}
.i-page .i-boxs .i-list .mian-item .item-img {
margin: 0 16rpx;
width: 80rpx;
height: 80rpx;
background-size: 100%;
}
.i-page .i-boxs .i-list .mian-item .item-text {
height: 40rpx;
font-family: PingFangSC, PingFang SC;
font-weight: 400;
font-size: 28rpx;
color: #333333;
line-height: 40rpx;
text-align: center;
font-style: normal;
}
.i-page .i-boxs .i-list .mian-item:nth-of-type(4n) {
margin-right: 0;
}
.i-page .i-boxs .i-malll .hot-tab {
margin: 50rpx 36rpx 16rpx;
height: 86rpx;
display: flex;
align-items: center;
font-size: 28rpx;
line-height: 40rpx;
}
.i-page .i-boxs .i-malll .hot-tab .hot-header-text {
width: 160rpx;
display: flex;
font-family: PingFangSC-Regular, PingFang SC;
color: #999999;
text-align: center;
}
.i-page .i-boxs .i-malll .hot-tab .hot-header-text .hot-ative {
position: relative;
z-index: 1;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
font-size: 30rpx;
color: #333333;
}
.i-page .i-boxs .i-malll .hot-tab .hot-header-text .hot-ative::after {
content: '';
position: absolute;
top: 30%;
left: 0;
width: 100%;
height: 6px;
/* 背景色的高度 */
background-color: #CDE0FE;
/* 背景色 */
z-index: -1;
}
.i-page .i-boxs .i-malll .hot-tab .hot-header-text .hot-icon-show {
margin-top: 10rpx;
margin-left: 10rpx;
width: 22rpx;
height: 22rpx;
background: url('https://ddh.yyhock.com/ddhMall/hot-active-show.png') 0 0 no-repeat;
background-size: 100%;
}
.i-page .i-boxs .i-malll .hot-tab .hot-header-text .hot-icon-show-down {
margin-top: 10rpx;
margin-left: 10rpx;
width: 22rpx;
height: 22rpx;
background: url('https://ddh.yyhock.com/ddhMall/hot-active-show-down.png') 0 0 no-repeat;
background-size: 100%;
}
.i-page .i-boxs .i-malll .hot-tab .hot-icon {
margin-top: 36rpx;
margin-left: 10rpx;
width: 22rpx;
height: 22rpx;
background: url('https://ddh.yyhock.com/ddhMall/hot-active.png') 0 0 no-repeat;
background-size: 100%;
}
.i-page .i-boxs .i-malll .hot-tab .hot-show {
width: 160rpx;
display: flex;
color: #999999;
line-height: 90rpx;
text-align: center;
}
.i-page .i-boxs .i-malll .hot-fixed-show {
position: sticky;
top: 0;
left: 0;
width: 100%;
z-index: 99;
height: 86rpx;
background: #FFFFFF;
font-size: 28rpx;
line-height: 40rpx;
margin-bottom: 220rpx;
}
.i-page .i-boxs .i-malll .hot-fixed-show .hot-text {
padding-top: 108rpx;
width: 100%;
height: 98rpx;
background: #FFFFFF;
font-family: PingFangSC, PingFang SC;
font-weight: 500;
font-size: 36rpx;
color: #333333;
line-height: 50rpx;
text-align: center;
font-style: normal;
}
.i-page .i-boxs .i-malll .hot-fixed-show .hot-tab-fixed {
height: 86rpx;
display: flex;
align-items: center;
background: #FFFFFF;
font-size: 28rpx;
line-height: 40rpx;
}
.i-page .i-boxs .i-malll .hot-fixed-show .hot-tab-fixed .hot-text {
width: 100%;
height: 98rpx;
background: #FFFFFF;
font-family: PingFangSC, PingFang SC;
font-weight: 500;
font-size: 36rpx;
color: #333333;
line-height: 50rpx;
text-align: center;
font-style: normal;
}
.i-page .i-boxs .i-malll .hot-fixed-show .hot-tab-fixed .hot-header-text {
margin-left: 30rpx;
width: 160rpx;
display: flex;
font-family: PingFangSC-Regular, PingFang SC;
color: #999999;
text-align: center;
}
.i-page .i-boxs .i-malll .hot-fixed-show .hot-tab-fixed .hot-header-text .hot-ative {
position: relative;
z-index: 1;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
font-size: 30rpx;
color: #333333;
}
.i-page .i-boxs .i-malll .hot-fixed-show .hot-tab-fixed .hot-header-text .hot-ative::after {
content: '';
position: absolute;
top: 30%;
left: 0;
width: 100%;
height: 6px;
/* 背景色的高度 */
background-color: #CDE0FE;
/* 背景色 */
z-index: -1;
}
.i-page .i-boxs .i-malll .hot-fixed-show .hot-tab-fixed .hot-header-text .hot-icon-show {
margin-top: 10rpx;
margin-left: 10rpx;
width: 22rpx;
height: 22rpx;
background: url('https://ddh.yyhock.com/ddhMall/hot-active-show.png') 0 0 no-repeat;
background-size: 100%;
}
.i-page .i-boxs .i-malll .hot-fixed-show .hot-tab-fixed .hot-header-text .hot-icon-show-down {
margin-top: 10rpx;
margin-left: 10rpx;
width: 22rpx;
height: 22rpx;
background: url('https://ddh.yyhock.com/ddhMall/hot-active-show-down.png') 0 0 no-repeat;
background-size: 100%;
}
.i-page .i-boxs .i-malll .hot-fixed-show .hot-tab-fixed .hot-icon {
margin-top: 36rpx;
margin-left: 10rpx;
width: 22rpx;
height: 22rpx;
background: url('https://ddh.yyhock.com/ddhMall/hot-active.png') 0 0 no-repeat;
background-size: 100%;
}
.i-page .i-boxs .i-malll .hot-fixed-show .hot-tab-fixed .hot-show {
margin-left: 36rpx;
width: 160rpx;
display: flex;
color: #999999;
line-height: 90rpx;
text-align: center;
}
.i-page .i-boxs .i-malll .box-at-home .main-box {
display: flex;
flex-wrap: wrap;
align-items: center;
margin: 0 30rpx;
}
.i-page .i-boxs .i-malll .box-at-home .main-box .box-item {
margin-bottom: 24rpx;
width: 333rpx;
height: 426rpx;
background: #FFFFFF;
box-shadow: 0rpx 0rpx 10rpx 0rpx rgba(232, 232, 232, 0.49);
border-radius: 10rpx;
}
.i-page .i-boxs .i-malll .box-at-home .main-box .box-item .item-top {
display: flex;
width: 333rpx;
height: 272rpx;
position: relative;
}
.i-page .i-boxs .i-malll .box-at-home .main-box .box-item .item-top .top-img {
width: 333rpx;
height: 272rpx;
background-size: 333rpx 272rpx;
border-radius: 10rpx;
}
.i-page .i-boxs .i-malll .box-at-home .main-box .box-item .item-top .top-icon {
position: absolute;
top: 0;
margin-left: 215rpx;
display: inline-block;
width: 118rpx;
height: 110rpx;
background: url('https://ddh.yyhock.com/ddhMall/goods-sale.png') 0 0 no-repeat;
background-size: 118rpx 110rpx ;
}
.i-page .i-boxs .i-malll .box-at-home .main-box .box-item .item-footer {
padding: 9rpx 16rpx 21rpx 0rpx;
}
.i-page .i-boxs .i-malll .box-at-home .main-box .box-item .item-footer .footer-des {
width: 160rpx;
font-family: PingFangSC, PingFang SC;
font-weight: 400;
font-size: 26rpx;
color: #333333;
line-height: 37rpx;
text-align: left;
font-style: normal;
white-space: nowrap;
/* 确保文本在一行内显示 */
overflow: hidden;
/* 隐藏超出容器的内容 */
text-overflow: ellipsis;
/* 使用省略号表示被截断的文本 */
word-break: break-all;
/* 允许在单词内换行 */
}
.i-page .i-boxs .i-malll .box-at-home .main-box .box-item .item-footer .footer-box {
display: flex;
margin: 9rpx 0 16rpx;
}
.i-page .i-boxs .i-malll .box-at-home .main-box .box-item .item-footer .footer-box .box-num {
display: flex;
font-family: PingFangSC, PingFang SC;
font-weight: 400;
font-size: 28rpx;
color: #FC4D3E;
line-height: 28rpx;
text-align: left;
font-style: normal;
}
.i-page .i-boxs .i-malll .box-at-home .main-box .box-item .item-footer .footer-box .box-num .num-icon {
margin-top: 4rpx;
font-size: 20rpx;
}
.i-page .i-boxs .i-malll .box-at-home .main-box .box-item .item-footer .footer-line {
display: flex;
align-items: center;
justify-content: space-between;
}
.i-page .i-boxs .i-malll .box-at-home .main-box .box-item .item-footer .footer-line .box-btn {
width: 76rpx;
height: 38rpx;
border-radius: 5rpx;
border: 1rpx solid #2263E6;
font-family: PingFangSC, PingFang SC;
font-weight: 400;
font-size: 20rpx;
color: #2263E6;
line-height: 38rpx;
text-align: center;
font-style: normal;
}
.i-page .i-boxs .i-malll .box-at-home .main-box .box-item .item-footer .footer-line .box-last {
font-family: PingFangSC, PingFang SC;
font-weight: 400;
font-size: 20rpx;
color: #999999;
line-height: 38rpx;
text-align: right;
font-style: normal;
}
.i-page .i-boxs .i-malll .box-at-home .main-box :nth-child(2n) {
margin-left: 24rpx;
}
<template> <template>
<view class="i-page"> <view class="i-page">
<view class='i-header' v-show='isFixed!=true'> <view class='i-header' v-show='isFixed != true'>
多典花 <text>多典花</text>
</view> </view>
<view class='i-boxs'> <view class='i-boxs'>
<!-- Banner 位 -->
<view class='i-banner'> <view class='i-banner'>
<!-- :indicator-dots="true" -->
<swiper :autoplay="true" :interval="3000" :duration="1000" style="height: 359rpx;"> <swiper :autoplay="true" :interval="3000" :duration="1000" style="height: 359rpx;">
<swiper-item class='swiper-item-i' v-for="item in bannerList" :key="item.id" <swiper-item class='swiper-item-i' v-for="(item, index) in bannerList" :key="item.id"
@click='bannerItem(item)'> @click='jump(item, index, "banner")'>
<image :src='item.url' class='banner-item'></image> <image :src='item.url' class='banner-item'></image>
</swiper-item> </swiper-item>
</swiper> </swiper>
</view> </view>
<!-- 金刚位 -->
<view class="i-list"> <view class="i-list">
<view class='mian-item' v-for="item in list" :key="item.id" @click="goItem(item)"> <view class='mian-item' v-for="(item, index) in list" :key="item.id"
@click="jump(item, index, 'diamond')">
<image class='item-img' :src='item.url'></image> <image class='item-img' :src='item.url'></image>
<view class='item-text'>{{item.name}}</view> <view class='item-text'>{{ item.name }}</view>
</view> </view>
</view> </view>
<view class="i-malll"> <view class="i-malll">
<view v-if='isFixed!=true' class="hot-tab"> <!-- 根据滚动条的高度显示隐藏内容 -->
<view :class="hotIndex==item.id ?'hot-header-text':'hot-show'" v-for="item in hotList" :key='item.id' > <view v-if='isFixed != true' class="hot-tab">
<view class='hot-ative' @click="hotShow(item)">{{item.title}}</view> <view :class="hotIndex == item.id ? 'hot-header-text' : 'hot-show'" v-for="item in hotList"
<view v-show="hotIndex!=item.id" class='hot-icon'></view> :key='item.id'>
<view v-show='hotIndex==item.id' :class="showUP==false ?'hot-icon-show-down':'hot-icon-show'" @click="goUP(item.id)"></view> <view class='hot-ative' @click="hotShow(item)">{{ item.title }}</view>
<view v-show="hotIndex != item.id" class='hot-icon'></view>
<view v-show='hotIndex == item.id'
:class="showUP == false ? 'hot-icon-show-down' : 'hot-icon-show'" @click="goUP(item.id)">
</view>
</view> </view>
</view> </view>
<view v-else class="hot-fixed-show"> <view v-else class="hot-fixed-show">
<view class="hot-text">多典花</view> <view class="hot-text">多典花</view>
<view class="hot-tab-fixed"> <view class="hot-tab-fixed">
<view :class="hotIndex==item.id ?'hot-header-text':'hot-show'" v-for="item in hotList" :key='item.id'> <view :class="hotIndex == item.id ? 'hot-header-text' : 'hot-show'" v-for="item in hotList"
<view class='hot-ative' @click="hotShow(item)">{{item.title}}</view> :key='item.id'>
<view v-show="hotIndex!=item.id" class='hot-icon'></view> <view class='hot-ative' @click="hotShow(item)">{{ item.title }}</view>
<view v-show='hotIndex==item.id' :class="showUP==false ?'hot-icon-show-down':'hot-icon-show'" @click="goUP(item.id)"></view> <view v-show="hotIndex != item.id" class='hot-icon'></view>
<view v-show='hotIndex == item.id'
:class="showUP == false ? 'hot-icon-show-down' : 'hot-icon-show'"
@click="goUP(item.id)">
</view> </view>
</view> </view>
</view> </view>
<scroll-view </view>
class='box-at-home'
scroll-y="true" <!-- 商品列表 -->
refresher-default-style="none" <scroll-view class='box-at-home' scroll-y="true" refresher-default-style="none"
@scrolltoupper="toupperTop" @scrolltoupper="toupperTop" @scrolltolower="lowerMore">
@scrolltolower="lowerMore"> <view class='main-box' v-show="IndexList && IndexList.length > 0">
<view class='main-box' v-show="IndexList && IndexList.length>0">
<view class='box-item' v-for="item in IndexList" :key="item.id" @click="goDetail(item)"> <view class='box-item' v-for="item in IndexList" :key="item.id" @click="goDetail(item)">
<view class='item-top'> <view class='item-top'>
<image :src="item.goodsImage" class='top-img'></image> <image :src="item.goodsImage" class='top-img'></image>
<i class='top-icon'></i> <i class='top-icon'></i>
</view> </view>
<view class='item-footer'> <view class='item-footer'>
<view class='footer-des'>{{item.goodsName}}</view> <view class='footer-des'>{{ item.goodsName }}</view>
<view class='footer-box'> <view class='footer-box'>
<view class='box-num'> <view class='box-num'>
<view class='num-icon'>¥</view> <view class='num-icon'>¥</view>
{{item.goodsMoney}} {{ item.goodsMoney }}
</view> </view>
</view> </view>
<view class='footer-line'> <view class='footer-line'>
<view class='box-btn'>可置换</view> <view class='box-btn'>可置换</view>
<view class="box-last">{{item.lookSum}}次浏览</view> <view class="box-last">{{ item.lookSum }}次浏览</view>
</view> </view>
</view> </view>
</view> </view>
</view> </view>
</scroll-view> </scroll-view>
</view> </view>
</view> </view>
<upgrade-Popup :app-upgeade-obj="appUpgeadeObj"
v-if="appUpgeadeObj.downloadUrl" @pause='pauseClick'></upgrade-Popup> <!-- 更新 -->
<upgrade-Popup :app-upgeade-obj="appUpgeadeObj" v-if="appUpgeadeObj.downloadUrl"
@pause='pauseClick'></upgrade-Popup>
</view> </view>
</template> </template>
<script> <script>
import {loadDevice,loadNetwork,loadUuid,loadLocation} from '../../utils/deviceInfo.js' import { switchShowTabbar, isLogin } from '@/utils/index'
import silentlyAppUpdate from '@/pages/app-update/js-sdk/silentlyAppUpdate' export default {
export default {
data() { data() {
return { return {
list:[], list: [],
hotList:[ hotList: [
{title:'浏览量',id:0}, { title: '浏览量', id: 0 },
{title:'价格',id:1}, { title: '价格', id: 1 },
], ],
hotIndex:0, hotIndex: 0,
isFixed: false, isFixed: false,
showUP:false, showUP: false,
headerHeight: 0, headerHeight: 0,
scrollTop:0, scrollTop: 0,
IndexList:[], IndexList: [],
bannerList:[], bannerList: [],
pageNum: 1, pageNum: 1,
pageSize: 50, pageSize: 50,
total: 0, total: 0,
hasNextText:'上拉加载更多', hasNextText: '上拉加载更多',
loadFlag:true, loadFlag: true,
hasNextPage:false, hasNextPage: false,
sort:'look_sum desc', sort: 'look_sum desc',
token:'', token: '',
appUpgeadeObj:{},
appUpgeadeObj: {},
isFirstShow: true isFirstShow: true
} }
}, },
onPageScroll(e) { onPageScroll(e) {
// 页面滚动时设置isFixed和scrollTop
console.log(e.scrollTop,'876')
this.scrollTop = e.scrollTop; this.scrollTop = e.scrollTop;
if( e.scrollTop > 220){ if (e.scrollTop > 220) {
this.isFixed = true; this.isFixed = true;
}else{ } else {
this.isFixed = false; this.isFixed = false;
} }
}, },
onReady() { onReady() {
const systemInfo = uni.getSystemInfoSync(); const systemInfo = uni.getSystemInfoSync();
if(systemInfo.platform === 'ios'){ if (systemInfo.platform === 'ios') {
const isAgree = uni.getStorageSync('m-agreement') const isAgree = uni.getStorageSync('m-agreement')
if (!isAgree) { if (!isAgree) {
console.log(isAgree,'isAgree')
this.Go('uni:/pages/agreement/index') this.Go('uni:/pages/agreement/index')
} }
} }
this.isFirstShow=uni.getStorageSync('isFirstShow') this.isFirstShow = uni.getStorageSync('isFirstShow')
console.log(this.isFirstShow,'isFirstShow1') },
async onLoad() {
await this.initAjax();
await this.getAppVersion()
},
async onShow() {
// 首页流量埋点
this.buryingPoint('app:index_page_view')
await this.initAjax();
// 显示隐藏tabBar
switchShowTabbar()
}, },
onLoad() {
const token=uni.getStorageSync('token') methods: {
this.token=token // 初始化网络请求
this.init() async initAjax() {
await uni.$util.getNetworkException([
this.init(),
this.searchGood() this.searchGood()
this.getAppVersion() ])
}, },
methods:{ // 跳转
switchShowTabbar(){ jump(item, index, type) {
const token=uni.getStorageSync('token') // 埋点开始
if (!token) { switch (type) {
case "banner":
uni.setTabBarItem({ this.buryingPoint('app:index_banner_click')
index: 1, break;
visible: false case 'diamond':
}) const desc = `app:index_feature${index + 1}_click`
} else { this.buryingPoint(desc)
const self=this break;
self.$request('/pawn/setting/other/switch/loan','GET').then(res => { }
const {data}=res.result // 埋点结束
console.log(data,'yyydata')
if (res.code == 200 && data == true) { if (!isLogin()) this.JumpToLogin()
try { else this.Go(item.tager)
console.log(data,'显示')
uni.setTabBarItem({
index: 1,
text: '贷款',
visible: true,
})
} catch (error) {
console.log(error);
}
} else {
console.log(data,'隐藏')
uni.setTabBarItem({
index: 1,
visible: false
})
}
})
}
}, },
getAppVersion(){
const self=this // 检查版本更新
getAppVersion() {
const self = this
uni.getSystemInfo({ uni.getSystemInfo({
success: (res) => { success: (res) => {
console.log(res.appVersion,'dddd') console.log(res.appVersion, 'dddd')
const appVersion=res.appVersion const appVersion = res.appVersion
let platform = res.platform; let platform = res.platform;
// 获取本机版本号 // 获取本机版本号
let type; let type;
platform === "android" ? (type = "ANDROID") : (type = "IOS"); platform === "android" ? (type = "ANDROID") : (type = "IOS");
self.$request(`/pawn/setting/other/appVersion/${type}`,'GET').then(res => { self.$request(`/pawn/setting/other/appVersion/${type}`, 'GET').then(res => {
if (res.success==true) { if (res.success == true) {
const response = res.result.data; const response = res.result.data;
if(appVersion<response.versionName){ if (appVersion < response.versionName) {
const wgtType=self.containsWGTExtension(response.downloadUrl) const wgtType = self.containsWGTExtension(response.downloadUrl)
if(wgtType==true){ if (wgtType == true) {
let checkStatus=uni.getStorageSync('checkVersions') let checkStatus = uni.getStorageSync('checkVersions')
console.log(wgtType,'要热更新') console.log(wgtType, '要热更新')
if(checkStatus==response.versionName){ if (checkStatus == response.versionName) {
console.log('热更新过了') console.log('热更新过了')
return false return false
}else{ } else {
console.log('热更新了') console.log('热更新了')
self.updateWgt(response.downloadUrl,response.versionName) self.updateWgt(response.downloadUrl, response.versionName)
} }
}else{ } else {
console.log('强更了') console.log('强更了')
self.appUpgeadeObj=response self.appUpgeadeObj = response
} }
} }
console.log(response,'response') console.log(response, 'response')
} }
}) })
} }
}) })
}, },
pauseClick(data){
console.log(data,'ssss') // 暂停
this.appUpgeadeObj.downloadUrl='' pauseClick(data) {
console.log(data, 'ssss')
this.appUpgeadeObj.downloadUrl = ''
}, },
init(){ init() {
const self=this const self = this
self.$request('/pawn/index','GET').then(res => { self.$request('/pawn/index', 'GET').then(res => {
const {goodList,shortcutList,bannerList }=res.result const { shortcutList, bannerList } = res.result
if(shortcutList){ if (shortcutList) {
self.list=JSON.parse(shortcutList) self.list = JSON.parse(shortcutList)
} }
if(bannerList){ if (bannerList) {
self.bannerList=JSON.parse(bannerList) self.bannerList = JSON.parse(bannerList)
} }
}).catch(err=>{ }).catch(err => {
console.log(err,'请求出错') console.log(err, '请求出错')
}) })
}, },
goDetail(item){ goDetail(item) {
// console.log(item,'8766')
const params={ // 首页流量埋点
goodId:item.id this.buryingPoint('app:index_product_click')
}
uni.navigateTo({ uni.navigateTo({
url:'/pages/productDetails/productDetails?mydata='+encodeURIComponent(JSON.stringify(params)) url: '/pages/productDetails/productDetails?mydata=' + encodeURIComponent(JSON.stringify({ goodId: item.id }))
}) })
}, },
hotShow(item){ hotShow(item) {
console.log(item.id,'7766') console.log(item.id, '7766')
this.hotIndex=item.id this.hotIndex = item.id
if(item.id==0){ if (item.id == 0) {
this.sort='look_sum desc' this.sort = 'look_sum desc'
this.showUP=!this.showUP this.showUP = !this.showUP
}else{ } else {
this.sort='goods_money desc' this.sort = 'goods_money desc'
this.showUP=!this.showUP this.showUP = !this.showUP
} }
this.pageNum=1 this.pageNum = 1
this.searchGood() this.searchGood()
}, },
bannerItem(item){
if(this.token==''){
this.Go('uni:/pages/login/login')
}else{
const { tager }=item goUP(val) {
this.Go(tager) // 首页流量埋点
} this.buryingPoint('app:index_price_click')
},
goItem(item){
if(this.token==''){
this.Go('uni:/pages/login/login')
}else{
const { tager }=item
console.log(tager)
if(tager.split(',')[1]=='tab'){
console.log(1)
this.Go('uni:/pages/finance/index','tab')
}else{
console.log(2)
this.Go(tager)
}
}
}, this.showUP = !this.showUP
goUP(val){ if (val == 0) {
console.log(val,'val33')
this.showUP=!this.showUP
if(val==0){
//浏览量 //浏览量
if(this.showUP==false){ if (this.showUP == false) {
this.sort='look_sum desc' this.sort = 'look_sum desc'
}else{ } else {
this.sort='look_sum asc' this.sort = 'look_sum asc'
} }
}else{ } else {
//价格 //价格
if(this.showUP==false){ if (this.showUP == false) {
this.sort='goods_money desc' this.sort = 'goods_money desc'
}else{ } else {
//倒序 //倒序
this.sort='goods_money asc' this.sort = 'goods_money asc'
} }
} }
this.pageNum=1 this.pageNum = 1
this.searchGood() this.searchGood()
}, },
// 查询商品 // 查询商品
searchGood(){ searchGood() {
const self=this const self = this
const { sort,pageSize,pageNum}=self const { sort, pageSize, pageNum } = self
const params={ const params = {
"current":pageNum, "current": pageNum,
"size":pageSize, "size": pageSize,
"sort":sort "sort": sort
} }
console.log(params,'查询商品') try {
try{ self.$request('/pawn/category/getGoodsPage', 'POST', params).then(res => {
self.$request('/pawn/category/getGoodsPage','POST',params).then(res => { const { current, total, size, records } = res.result
const {current,total,size,records }=res.result const hasNextPage = total - self.pageSize * self.pageNum > 0 ? true : false //是否有下一页
const hasNextPage=total-self.pageSize*self.pageNum>0?true:false //是否有下一页 if (self.loadFlag) {
if(self.loadFlag){
self.IndexList = self.IndexList.concat(records)
self.IndexList=self.IndexList.concat(records) } else {
}else{ self.IndexList = records
self.IndexList=records
} }
self.hasNextPage=hasNextPage self.hasNextPage = hasNextPage
self.loadFlag=false self.loadFlag = false
}).catch(err=>{ }).catch(err => {
console.log(err,'请求出错') console.log(err, '请求出错')
}) })
}catch{ } catch {
console.log(err,'错误信息') console.log(err, '错误信息')
} }
}, },
toupperTop:function(e){ toupperTop: function (e) {
console.log(e,'到顶了'); console.log(e, '到顶了');
}, },
lowerMore:function(e){ lowerMore: function (e) {
console.log(e,'触底了'); console.log(e, '触底了');
if(!this.hasNextPage){ if (!this.hasNextPage) {
uni.showToast({ uni.showToast({
icon: 'none', icon: 'none',
title: '到底了', title: '到底了',
}) })
return false; return false;
} }
if(this.loadFlag) return; if (this.loadFlag) return;
this.loadFlag=true, this.loadFlag = true,
this.pageNum=this.pageNum+1 this.pageNum = this.pageNum + 1
this.searchGood(); this.searchGood();
}, },
//wgt更新 //wgt更新
updateWgt(downloadUrl,newVersion){ updateWgt(downloadUrl, newVersion) {
uni.showModal({ uni.showModal({
title: '已发现新版本', title: '已发现新版本',
content: '确认更新?', content: '确认更新?',
showCancel: false, showCancel: false,
success:function(res){ success: function (res) {
uni.setStorageSync('checkVersions',newVersion) uni.setStorageSync('checkVersions', newVersion)
if(res.confirm){ if (res.confirm) {
uni.downloadFile({ uni.downloadFile({
url: downloadUrl, url: downloadUrl,
success: (downloadResult) => { success: (downloadResult) => {
plus.runtime.install(downloadResult.tempFilePath,{force: true},function(){ plus.runtime.install(downloadResult.tempFilePath, { force: true }, function () {
//应用热重启,重新启动进入首页 //应用热重启,重新启动进入首页
plus.runtime.restart(); plus.runtime.restart();
uni.showModal({ uni.showModal({
title: '安装成功!', title: '安装成功!',
content: '已重新进入应用', content: '已重新进入应用',
showCancel: false, showCancel: false,
success:function(res){ success: function (res) {
if(res.confirm){ if (res.confirm) {
console.log('用户点击确定'); console.log('用户点击确定');
}else if(res.cancel){ } else if (res.cancel) {
console.log('用户点击确定'); console.log('用户点击确定');
} }
} }
}) })
}, },
function(e){ function (e) {
console.log(e,'安装失败') console.log(e, '安装失败')
uni.showModal({ uni.showModal({
title: '安装失败', title: '安装失败',
icon: 'none' icon: 'none'
...@@ -398,7 +387,7 @@ ...@@ -398,7 +387,7 @@
}) })
} }
}) })
}else if(res.cancel){ } else if (res.cancel) {
uni.showToast({ uni.showToast({
title: '已取消', title: '已取消',
icon: 'none' icon: 'none'
...@@ -411,37 +400,8 @@ ...@@ -411,37 +400,8 @@
return /\.wgt$/i.test(url); return /\.wgt$/i.test(url);
} }
}, },
onShow() {
const token=uni.getStorageSync('token')
const common = uni.getStorageSync("m-header-device")
if(!common && plus.os.name!='iOS'){
let versionNumber
plus.runtime.getProperty(plus.runtime.appid, function(wgtinfo){
if(wgtinfo.version){
versionNumber = wgtinfo.version;
}else{
versionNumber = plus.runtime.version;
}
console.log(versionNumber,'versionNumber')
// 存储所有请求的头部信息
uni.setStorage({
key: 'm-header-version',
data: versionNumber,
success: function () {
console.log('m-header-version存储成功4');
}
});
})
}
this.token=token
this.init()
this.searchGood()
this.switchShowTabbar()
}
}
}
</script> </script>
<style src='./index.less' lang="less" scoped></style> <style src='./index.less' lang="less" scoped></style>
\ No newline at end of file
...@@ -169,13 +169,13 @@ export default { ...@@ -169,13 +169,13 @@ export default {
"verifyCode": self.sendcode "verifyCode": self.sendcode
} }
self.$request('/pawn/client/login', 'POST', params).then(res => { self.$request('/pawn/client/login', 'POST', params).then(res => {
console.log(res, 'login');
const { userInfo, token } = res.result const { userInfo, token } = res.result
if (userInfo) { if (userInfo) {
const { deviceId } = userInfo const { deviceId } = userInfo
uni.setStorageSync('deviceId', deviceId) uni.setStorageSync('deviceId', deviceId)
} }
uni.setStorageSync('token', token) uni.setStorageSync('token', token)
uni.setStorageSync('d-mobile', self.mobile)
self.loginNocheck() self.loginNocheck()
// 设置 // 设置
......
...@@ -72,6 +72,16 @@ export default { ...@@ -72,6 +72,16 @@ export default {
onShow() { onShow() {
this.init(); this.init();
}, },
// 页面下拉刷新
async onPullDownRefresh() {
// 初始化设备
await this.init()
setTimeout(() => {
uni.stopPullDownRefresh();
}, 1000);
},
methods: { methods: {
// 初始化 // 初始化
init() { init() {
...@@ -149,12 +159,41 @@ export default { ...@@ -149,12 +159,41 @@ export default {
}) })
}, },
goPage(item) { goPage(item) {
switch (item.title) {
case "我的浏览":
this.buryingPoint('app:my_browsing_history_click')
break;
case "我的需求":
this.buryingPoint('app:my_requests_click')
break;
case "我的关注":
this.buryingPoint('app:my_favorites_click')
break;
case "用户反馈":
this.buryingPoint('app:my_user_feedback_click')
break;
default:
break;
}
this.Go(item.linkUrl) this.Go(item.linkUrl)
}, },
goLogin() { goLogin() {
this.Go('uni:/pages/login/login') this.Go('uni:/pages/login/login')
}, },
goBar(item) { goBar(item) {
switch (item.title) {
case "我的还款":
this.buryingPoint('app:my_repayment_click')
break;
case "申请记录":
this.buryingPoint('app:my_application_record_click')
break;
default:
break;
}
const self = this const self = this
const token = uni.getStorageSync('token') const token = uni.getStorageSync('token')
if (token != '') { if (token != '') {
...@@ -166,11 +205,27 @@ export default { ...@@ -166,11 +205,27 @@ export default {
} }
}, },
goTel() { goTel() {
this.buryingPoint('app:my_contact_us_click')
uni.makePhoneCall({ uni.makePhoneCall({
phoneNumber: this.serviceCall //仅为示例 phoneNumber: this.serviceCall //仅为示例
}); });
}, },
goItem(item) { goItem(item) {
switch (item.title) {
case "设置":
this.buryingPoint('app:my_settings_click')
break;
case "帮助中心":
this.buryingPoint('app:my_help_center_click')
break;
default:
break;
}
if (item.linkUrl != '') { if (item.linkUrl != '') {
console.log('66', item) console.log('66', item)
this.Go(item.linkUrl) this.Go(item.linkUrl)
......
...@@ -7,8 +7,9 @@ ...@@ -7,8 +7,9 @@
<view class='label-text'>描述</view> <view class='label-text'>描述</view>
</view> </view>
<view class='box-tarea'> <view class='box-tarea'>
<textarea class='box-con' placeholder="请详细描述您的问题或建议,我们将及时跟进" maxlength="100" @input="sufontnum($event)"></textarea> <textarea class='box-con' placeholder="请详细描述您的问题或建议,我们将及时跟进" maxlength="100"
<text class='contain-length'>{{fountNum}}/<text class="length-total">100</text></text> @input="sufontnum($event)"></textarea>
<text class='contain-length'>{{ fountNum }}/<text class="length-total">100</text></text>
</view> </view>
</view> </view>
</view> </view>
...@@ -19,41 +20,40 @@ ...@@ -19,41 +20,40 @@
</template> </template>
<script> <script>
export default { export default {
data() { data() {
return { return {
fountNum:0, fountNum: 0,
desQuest:'' desQuest: ''
} }
}, },
methods: { methods: {
needSubmit(){ needSubmit() {
const self=this const content = this.desQuest;
if(self.desQuest==''){ if (!content) {
self.toast('描述不能为空') return this.toast('描述不能为空')
return false
} }
const params={ this.$request('/pawn/feed/addFeed', 'POST', { content }).then(res => {
content:self.desQuest if (res.success) {
this.toast('提交成功', 'success')
setTimeout(() => {
this.Back()
}, 500)
} }
self.$request('/pawn/feed/addFeed','POST',params).then(res => { }).catch(err => {
console.log(res.result,'followGood'); console.log(err, '请求出错')
self.toast('提交成功')
self.Go('uni:/pages/index/index','tab')
}).catch(err=>{
console.log(err,'请求出错')
}) })
}, },
sufontnum(e){ sufontnum(e) {
if(e.detail.value.length>100){ if (e.detail.value.length > 100) {
self.toast('不可超过100字') self.toast('不可超过100字')
return false return false
} }
this.desQuest=e.detail.value this.desQuest = e.detail.value
this.fountNum=e.detail.value.length this.fountNum = e.detail.value.length
}, },
} }
} }
</script> </script>
<style src='./index.less' lang="less" scoped></style> <style src='./index.less' lang="less" scoped></style>
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -333,15 +333,16 @@ var render = function () { ...@@ -333,15 +333,16 @@ var render = function () {
staticClass: _vm._$g(1, "sc"), staticClass: _vm._$g(1, "sc"),
attrs: { _i: 1 }, attrs: { _i: 1 },
}, },
[_vm._v("多典花")] [_c("v-uni-text", { attrs: { _i: 2 } }, [_vm._v("多典花")])],
1
), ),
_c( _c(
"uni-view", "uni-view",
{ staticClass: _vm._$g(2, "sc"), attrs: { _i: 2 } }, { staticClass: _vm._$g(3, "sc"), attrs: { _i: 3 } },
[ [
_c( _c(
"uni-view", "uni-view",
{ staticClass: _vm._$g(3, "sc"), attrs: { _i: 3 } }, { staticClass: _vm._$g(4, "sc"), attrs: { _i: 4 } },
[ [
_c( _c(
"v-uni-swiper", "v-uni-swiper",
...@@ -351,16 +352,16 @@ var render = function () { ...@@ -351,16 +352,16 @@ var render = function () {
autoplay: true, autoplay: true,
interval: 3000, interval: 3000,
duration: 1000, duration: 1000,
_i: 4, _i: 5,
}, },
}, },
_vm._l(_vm._$g(5, "f"), function (item, $10, $20, $30) { _vm._l(_vm._$g(6, "f"), function (item, index, $20, $30) {
return _c( return _c(
"v-uni-swiper-item", "v-uni-swiper-item",
{ {
key: item, key: item,
staticClass: _vm._$g("5-" + $30, "sc"), staticClass: _vm._$g("6-" + $30, "sc"),
attrs: { _i: "5-" + $30 }, attrs: { _i: "6-" + $30 },
on: { on: {
click: function ($event) { click: function ($event) {
return _vm.$handleViewEvent($event) return _vm.$handleViewEvent($event)
...@@ -369,10 +370,10 @@ var render = function () { ...@@ -369,10 +370,10 @@ var render = function () {
}, },
[ [
_c("v-uni-image", { _c("v-uni-image", {
staticClass: _vm._$g("6-" + $30, "sc"), staticClass: _vm._$g("7-" + $30, "sc"),
attrs: { attrs: {
src: _vm._$g("6-" + $30, "a-src"), src: _vm._$g("7-" + $30, "a-src"),
_i: "6-" + $30, _i: "7-" + $30,
}, },
}), }),
], ],
...@@ -386,14 +387,14 @@ var render = function () { ...@@ -386,14 +387,14 @@ var render = function () {
), ),
_c( _c(
"uni-view", "uni-view",
{ staticClass: _vm._$g(7, "sc"), attrs: { _i: 7 } }, { staticClass: _vm._$g(8, "sc"), attrs: { _i: 8 } },
_vm._l(_vm._$g(8, "f"), function (item, $11, $21, $31) { _vm._l(_vm._$g(9, "f"), function (item, index, $21, $31) {
return _c( return _c(
"uni-view", "uni-view",
{ {
key: item, key: item,
staticClass: _vm._$g("8-" + $31, "sc"), staticClass: _vm._$g("9-" + $31, "sc"),
attrs: { _i: "8-" + $31 }, attrs: { _i: "9-" + $31 },
on: { on: {
click: function ($event) { click: function ($event) {
return _vm.$handleViewEvent($event) return _vm.$handleViewEvent($event)
...@@ -402,19 +403,19 @@ var render = function () { ...@@ -402,19 +403,19 @@ var render = function () {
}, },
[ [
_c("v-uni-image", { _c("v-uni-image", {
staticClass: _vm._$g("9-" + $31, "sc"), staticClass: _vm._$g("10-" + $31, "sc"),
attrs: { attrs: {
src: _vm._$g("9-" + $31, "a-src"), src: _vm._$g("10-" + $31, "a-src"),
_i: "9-" + $31, _i: "10-" + $31,
}, },
}), }),
_c( _c(
"uni-view", "uni-view",
{ {
staticClass: _vm._$g("10-" + $31, "sc"), staticClass: _vm._$g("11-" + $31, "sc"),
attrs: { _i: "10-" + $31 }, attrs: { _i: "11-" + $31 },
}, },
[_vm._v(_vm._$g("10-" + $31, "t0-0"))] [_vm._v(_vm._$g("11-" + $31, "t0-0"))]
), ),
], ],
1 1
...@@ -424,57 +425,57 @@ var render = function () { ...@@ -424,57 +425,57 @@ var render = function () {
), ),
_c( _c(
"uni-view", "uni-view",
{ staticClass: _vm._$g(11, "sc"), attrs: { _i: 11 } }, { staticClass: _vm._$g(12, "sc"), attrs: { _i: 12 } },
[ [
_vm._$g(12, "i") _vm._$g(13, "i")
? _c( ? _c(
"uni-view", "uni-view",
{ staticClass: _vm._$g(12, "sc"), attrs: { _i: 12 } }, { staticClass: _vm._$g(13, "sc"), attrs: { _i: 13 } },
_vm._l(_vm._$g(13, "f"), function (item, $12, $22, $32) { _vm._l(_vm._$g(14, "f"), function (item, $12, $22, $32) {
return _c( return _c(
"uni-view", "uni-view",
{ {
key: item, key: item,
class: _vm._$g("13-" + $32, "c"), class: _vm._$g("14-" + $32, "c"),
attrs: { _i: "13-" + $32 }, attrs: { _i: "14-" + $32 },
}, },
[ [
_c( _c(
"uni-view", "uni-view",
{ {
staticClass: _vm._$g("14-" + $32, "sc"), staticClass: _vm._$g("15-" + $32, "sc"),
attrs: { _i: "14-" + $32 }, attrs: { _i: "15-" + $32 },
on: { on: {
click: function ($event) { click: function ($event) {
return _vm.$handleViewEvent($event) return _vm.$handleViewEvent($event)
}, },
}, },
}, },
[_vm._v(_vm._$g("14-" + $32, "t0-0"))] [_vm._v(_vm._$g("15-" + $32, "t0-0"))]
), ),
_c("uni-view", { _c("uni-view", {
directives: [ directives: [
{ {
name: "show", name: "show",
rawName: "v-show", rawName: "v-show",
value: _vm._$g("15-" + $32, "v-show"), value: _vm._$g("16-" + $32, "v-show"),
expression: "_$g((\"15-\"+$32),'v-show')", expression: "_$g((\"16-\"+$32),'v-show')",
}, },
], ],
staticClass: _vm._$g("15-" + $32, "sc"), staticClass: _vm._$g("16-" + $32, "sc"),
attrs: { _i: "15-" + $32 }, attrs: { _i: "16-" + $32 },
}), }),
_c("uni-view", { _c("uni-view", {
directives: [ directives: [
{ {
name: "show", name: "show",
rawName: "v-show", rawName: "v-show",
value: _vm._$g("16-" + $32, "v-show"), value: _vm._$g("17-" + $32, "v-show"),
expression: "_$g((\"16-\"+$32),'v-show')", expression: "_$g((\"17-\"+$32),'v-show')",
}, },
], ],
class: _vm._$g("16-" + $32, "c"), class: _vm._$g("17-" + $32, "c"),
attrs: { _i: "16-" + $32 }, attrs: { _i: "17-" + $32 },
on: { on: {
click: function ($event) { click: function ($event) {
return _vm.$handleViewEvent($event) return _vm.$handleViewEvent($event)
...@@ -489,63 +490,63 @@ var render = function () { ...@@ -489,63 +490,63 @@ var render = function () {
) )
: _c( : _c(
"uni-view", "uni-view",
{ staticClass: _vm._$g(17, "sc"), attrs: { _i: 17 } }, { staticClass: _vm._$g(18, "sc"), attrs: { _i: 18 } },
[ [
_c( _c(
"uni-view", "uni-view",
{ staticClass: _vm._$g(18, "sc"), attrs: { _i: 18 } }, { staticClass: _vm._$g(19, "sc"), attrs: { _i: 19 } },
[_vm._v("多典花")] [_vm._v("多典花")]
), ),
_c( _c(
"uni-view", "uni-view",
{ staticClass: _vm._$g(19, "sc"), attrs: { _i: 19 } }, { staticClass: _vm._$g(20, "sc"), attrs: { _i: 20 } },
_vm._l( _vm._l(
_vm._$g(20, "f"), _vm._$g(21, "f"),
function (item, $13, $23, $33) { function (item, $13, $23, $33) {
return _c( return _c(
"uni-view", "uni-view",
{ {
key: item, key: item,
class: _vm._$g("20-" + $33, "c"), class: _vm._$g("21-" + $33, "c"),
attrs: { _i: "20-" + $33 }, attrs: { _i: "21-" + $33 },
}, },
[ [
_c( _c(
"uni-view", "uni-view",
{ {
staticClass: _vm._$g("21-" + $33, "sc"), staticClass: _vm._$g("22-" + $33, "sc"),
attrs: { _i: "21-" + $33 }, attrs: { _i: "22-" + $33 },
on: { on: {
click: function ($event) { click: function ($event) {
return _vm.$handleViewEvent($event) return _vm.$handleViewEvent($event)
}, },
}, },
}, },
[_vm._v(_vm._$g("21-" + $33, "t0-0"))] [_vm._v(_vm._$g("22-" + $33, "t0-0"))]
), ),
_c("uni-view", { _c("uni-view", {
directives: [ directives: [
{ {
name: "show", name: "show",
rawName: "v-show", rawName: "v-show",
value: _vm._$g("22-" + $33, "v-show"), value: _vm._$g("23-" + $33, "v-show"),
expression: "_$g((\"22-\"+$33),'v-show')", expression: "_$g((\"23-\"+$33),'v-show')",
}, },
], ],
staticClass: _vm._$g("22-" + $33, "sc"), staticClass: _vm._$g("23-" + $33, "sc"),
attrs: { _i: "22-" + $33 }, attrs: { _i: "23-" + $33 },
}), }),
_c("uni-view", { _c("uni-view", {
directives: [ directives: [
{ {
name: "show", name: "show",
rawName: "v-show", rawName: "v-show",
value: _vm._$g("23-" + $33, "v-show"), value: _vm._$g("24-" + $33, "v-show"),
expression: "_$g((\"23-\"+$33),'v-show')", expression: "_$g((\"24-\"+$33),'v-show')",
}, },
], ],
class: _vm._$g("23-" + $33, "c"), class: _vm._$g("24-" + $33, "c"),
attrs: { _i: "23-" + $33 }, attrs: { _i: "24-" + $33 },
on: { on: {
click: function ($event) { click: function ($event) {
return _vm.$handleViewEvent($event) return _vm.$handleViewEvent($event)
...@@ -565,11 +566,11 @@ var render = function () { ...@@ -565,11 +566,11 @@ var render = function () {
_c( _c(
"v-uni-scroll-view", "v-uni-scroll-view",
{ {
staticClass: _vm._$g(24, "sc"), staticClass: _vm._$g(25, "sc"),
attrs: { attrs: {
"scroll-y": "true", "scroll-y": "true",
"refresher-default-style": "none", "refresher-default-style": "none",
_i: 24, _i: 25,
}, },
on: { on: {
scrolltoupper: function ($event) { scrolltoupper: function ($event) {
...@@ -588,20 +589,20 @@ var render = function () { ...@@ -588,20 +589,20 @@ var render = function () {
{ {
name: "show", name: "show",
rawName: "v-show", rawName: "v-show",
value: _vm._$g(25, "v-show"), value: _vm._$g(26, "v-show"),
expression: "_$g(25,'v-show')", expression: "_$g(26,'v-show')",
}, },
], ],
staticClass: _vm._$g(25, "sc"), staticClass: _vm._$g(26, "sc"),
attrs: { _i: 25 }, attrs: { _i: 26 },
}, },
_vm._l(_vm._$g(26, "f"), function (item, $14, $24, $34) { _vm._l(_vm._$g(27, "f"), function (item, $14, $24, $34) {
return _c( return _c(
"uni-view", "uni-view",
{ {
key: item, key: item,
staticClass: _vm._$g("26-" + $34, "sc"), staticClass: _vm._$g("27-" + $34, "sc"),
attrs: { _i: "26-" + $34 }, attrs: { _i: "27-" + $34 },
on: { on: {
click: function ($event) { click: function ($event) {
return _vm.$handleViewEvent($event) return _vm.$handleViewEvent($event)
...@@ -612,20 +613,20 @@ var render = function () { ...@@ -612,20 +613,20 @@ var render = function () {
_c( _c(
"uni-view", "uni-view",
{ {
staticClass: _vm._$g("27-" + $34, "sc"), staticClass: _vm._$g("28-" + $34, "sc"),
attrs: { _i: "27-" + $34 }, attrs: { _i: "28-" + $34 },
}, },
[ [
_c("v-uni-image", { _c("v-uni-image", {
staticClass: _vm._$g("28-" + $34, "sc"), staticClass: _vm._$g("29-" + $34, "sc"),
attrs: { attrs: {
src: _vm._$g("28-" + $34, "a-src"), src: _vm._$g("29-" + $34, "a-src"),
_i: "28-" + $34, _i: "29-" + $34,
}, },
}), }),
_c("i", { _c("i", {
staticClass: _vm._$g("29-" + $34, "sc"), staticClass: _vm._$g("30-" + $34, "sc"),
attrs: { _i: "29-" + $34 }, attrs: { _i: "30-" + $34 },
}), }),
], ],
1 1
...@@ -633,44 +634,44 @@ var render = function () { ...@@ -633,44 +634,44 @@ var render = function () {
_c( _c(
"uni-view", "uni-view",
{ {
staticClass: _vm._$g("30-" + $34, "sc"), staticClass: _vm._$g("31-" + $34, "sc"),
attrs: { _i: "30-" + $34 }, attrs: { _i: "31-" + $34 },
}, },
[ [
_c( _c(
"uni-view", "uni-view",
{ {
staticClass: _vm._$g("31-" + $34, "sc"), staticClass: _vm._$g("32-" + $34, "sc"),
attrs: { _i: "31-" + $34 }, attrs: { _i: "32-" + $34 },
}, },
[_vm._v(_vm._$g("31-" + $34, "t0-0"))] [_vm._v(_vm._$g("32-" + $34, "t0-0"))]
), ),
_c( _c(
"uni-view", "uni-view",
{ {
staticClass: _vm._$g("32-" + $34, "sc"), staticClass: _vm._$g("33-" + $34, "sc"),
attrs: { _i: "32-" + $34 }, attrs: { _i: "33-" + $34 },
}, },
[ [
_c( _c(
"uni-view", "uni-view",
{ {
staticClass: _vm._$g("33-" + $34, "sc"), staticClass: _vm._$g("34-" + $34, "sc"),
attrs: { _i: "33-" + $34 }, attrs: { _i: "34-" + $34 },
}, },
[ [
_c( _c(
"uni-view", "uni-view",
{ {
staticClass: _vm._$g( staticClass: _vm._$g(
"34-" + $34, "35-" + $34,
"sc" "sc"
), ),
attrs: { _i: "34-" + $34 }, attrs: { _i: "35-" + $34 },
}, },
[_vm._v("¥")] [_vm._v("¥")]
), ),
_vm._v(_vm._$g("33-" + $34, "t1-0")), _vm._v(_vm._$g("34-" + $34, "t1-0")),
], ],
1 1
), ),
...@@ -680,27 +681,27 @@ var render = function () { ...@@ -680,27 +681,27 @@ var render = function () {
_c( _c(
"uni-view", "uni-view",
{ {
staticClass: _vm._$g("35-" + $34, "sc"), staticClass: _vm._$g("36-" + $34, "sc"),
attrs: { _i: "35-" + $34 }, attrs: { _i: "36-" + $34 },
}, },
[ [
_c( _c(
"uni-view", "uni-view",
{ {
staticClass: _vm._$g("36-" + $34, "sc"), staticClass: _vm._$g("37-" + $34, "sc"),
attrs: { _i: "36-" + $34 }, attrs: { _i: "37-" + $34 },
}, },
[_vm._v("可置换")] [_vm._v("可置换")]
), ),
_c( _c(
"uni-view", "uni-view",
{ {
staticClass: _vm._$g("37-" + $34, "sc"), staticClass: _vm._$g("38-" + $34, "sc"),
attrs: { _i: "37-" + $34 }, attrs: { _i: "38-" + $34 },
}, },
[ [
_vm._v( _vm._v(
_vm._$g("37-" + $34, "t0-0") + "次浏览" _vm._$g("38-" + $34, "t0-0") + "次浏览"
), ),
] ]
), ),
...@@ -725,9 +726,9 @@ var render = function () { ...@@ -725,9 +726,9 @@ var render = function () {
], ],
1 1
), ),
_vm._$g(38, "i") _vm._$g(39, "i")
? _c("upgrade-Popup", { ? _c("upgrade-Popup", {
attrs: { _i: 38 }, attrs: { _i: 39 },
on: { on: {
pause: function ($event) { pause: function ($event) {
return _vm.$handleViewEvent($event) return _vm.$handleViewEvent($event)
...@@ -9142,7 +9143,7 @@ if(false) {} ...@@ -9142,7 +9143,7 @@ if(false) {}
var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/runtime/api.js */ 10); var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/runtime/api.js */ 10);
exports = ___CSS_LOADER_API_IMPORT___(false); exports = ___CSS_LOADER_API_IMPORT___(false);
// Module // Module
exports.push([module.i, "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/*每个页面公共css */\n", ""]); exports.push([module.i, "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n/*每个页面公共css */\n", ""]);
// Exports // Exports
module.exports = exports; module.exports = exports;
...@@ -4,6 +4,47 @@ import Permission from '@/js_sdk/wa-permission/permission' ...@@ -4,6 +4,47 @@ import Permission from '@/js_sdk/wa-permission/permission'
import { SelectLocation } from "./authPerission"; import { SelectLocation } from "./authPerission";
import API from '@/server/common' import API from '@/server/common'
// 异步请求
export function getNetworkException(requestList) {
return Promise.all(requestList)
.then((res) => {
// console.log('getNetworkException-res----------', res)
})
.catch((err) => {
if (err.code != "20001") return;
uni.$util.showToast("网络有点忙, 请刷新试试~");
})
.finally(() => {
// uni.hideLoading()
// complete()
});
}
// toast 提示框
export function showToast(title = "", duration = 2000, icon = "none") {
return new Promise((resolve, reject) =>
uni.showToast({
title,
duration,
icon,
success: () => setTimeout(() => resolve(), duration),
fail: () => reject(),
})
);
}
// 切换tabBar的显示和隐藏
export const isLogin = () => {
let flag = false
const token = uni.getStorageSync('token')
token ? flag = true : flag = false
return flag
}
// 切换tabBar的显示和隐藏 // 切换tabBar的显示和隐藏
export const switchShowTabbar = async () => { export const switchShowTabbar = async () => {
const token = uni.getStorageSync('token') const token = uni.getStorageSync('token')
......
...@@ -39,45 +39,28 @@ const request = async (url, type, data) => { ...@@ -39,45 +39,28 @@ const request = async (url, type, data) => {
Author: token, //多典花 Author: token, //多典花
}, },
success: (res) => { success: (res) => {
// console.log(res,'333') // #ifdef APP
const { // console.log(res, 'response')
data, // #endif
statusCode const { data, statusCode } = res;
} = res;
if (statusCode === 200) { if (statusCode === 200) {
if (data.success == true) { if (data.success == true) {
return resolve(data) return resolve(data)
} else { } else {
if (data.code == '403') { if (data.code == '403') uni.removeStorageSync('token')
console.log(res, '402'); return reject(data)
uni.showToast({
title: data.message,
icon: "none",
duration: 2000
})
uni.removeStorageSync('token')
} else {
uni.showToast({
title: data.message,
icon: "none",
duration: 2000
})
return false
}
} }
} else { } else {
console.log(res.errMsg, '!200'); return reject({ ...data, message: res.errMsg })
return reject({
data,
message: res.errMsg
})
} }
}, },
fail: (err) => { fail: (err) => {
console.log(err, "AJAX请求报错") uni.showToast({
title: err.message ? err.message : '服务器开小差了~',
icon: "none",
duration: 2000
})
reject(err) reject(err)
} }
}); });
......
...@@ -7,7 +7,6 @@ ...@@ -7,7 +7,6 @@
export const Jump = function (url, type='navigate') { export const Jump = function (url, type='navigate') {
console.log(url,type,'路径1')
if (!url) return; if (!url) return;
const index = url.indexOf(":"); const index = url.indexOf(":");
...@@ -28,7 +27,6 @@ export const Jump = function (url, type='navigate') { ...@@ -28,7 +27,6 @@ export const Jump = function (url, type='navigate') {
console.log("跳转到其它APP 或者 小程序 或者其它的内容") console.log("跳转到其它APP 或者 小程序 或者其它的内容")
break; break;
} }
console.log(targetPath,'路径')
switch (type) { switch (type) {
case 'redirect': case 'redirect':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment