|
|
@@ -17,15 +17,15 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankOverview
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
- <view class="mid uni-column">
|
|
|
+ <view v-if="configParam.midType == 0" class="midType0 uni-column">
|
|
|
<view class="mid-0 uni-row uni-jcc">
|
|
|
- <view class="mid-0-select">
|
|
|
+ <view class="midType0-select">
|
|
|
<e-select v-model="ocaId" :options="mapList" :search="false" :inputClick="true"
|
|
|
maxHeight="300px" :clearable="false" @change="eSelectChange"></e-select>
|
|
|
</view>
|
|
|
<text v-if="popupHelpList.length > 0" class="mid-0-help" @click="btnHelp">帮助</text>
|
|
|
</view>
|
|
|
- <view class="mid-1 uni-row uni-jcsa">
|
|
|
+ <view class="midType0-mid-1 uni-row uni-jcsa">
|
|
|
<view class="uni-row">
|
|
|
<image v-if="popupWarnList.length > 0" class="mid-1-yellowCard" mode="aspectFit"
|
|
|
@click="btnWarn" src="/static/common/card_yellow.gif"></image>
|
|
|
@@ -55,6 +55,43 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankOverview
|
|
|
|
|
|
</view>
|
|
|
</view>
|
|
|
+
|
|
|
+ <view v-if="configParam.midType == 1" class="midType1 uni-column">
|
|
|
+ <view class="midType1-mid-1 uni-row uni-jcsb">
|
|
|
+ <text class="mid-1-name">{{nickName}}asdfasdfasdf</text>
|
|
|
+ <view class="midType1-select">
|
|
|
+ <e-select v-model="ocaId" :options="mapList" :search="false" :inputClick="true"
|
|
|
+ maxHeight="300px" :clearable="false" @change="eSelectChange"></e-select>
|
|
|
+ </view>
|
|
|
+ <text class="uni-nowrap">总场次:{{regionTotalNum}}</text>
|
|
|
+ </view>
|
|
|
+ <view class="mid-2 uni-row uni-jcsa">
|
|
|
+ <view class="uni-column">
|
|
|
+ <text class="mid-2-value" style="color: #ff0045;">{{regionTotalSysPoint}}</text>
|
|
|
+ <text class="mid-2-text">百味豆(个)</text>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="mid-line"></view>
|
|
|
+
|
|
|
+ <view class="uni-column">
|
|
|
+ <text class="mid-2-value">{{fmtDistanct(regionTotalDictance)}}</text>
|
|
|
+ <text class="mid-2-text">总里程km</text>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="mid-line"></view>
|
|
|
+ <view class="uni-column">
|
|
|
+ <text class="mid-2-value">{{regionTotalCp}}</text>
|
|
|
+ <text class="mid-2-text">打点数(个)</text>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="mid-line"></view>
|
|
|
+
|
|
|
+ <view class="uni-column">
|
|
|
+ <text class="mid-2-value">{{fmtPace(regionFastPace)}}</text>
|
|
|
+ <text class="mid-2-text">最快配速</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
|
|
|
<view class="main uni-column">
|
|
|
<text class="main-title">选择比赛路线</text>
|
|
|
@@ -127,6 +164,9 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankOverview
|
|
|
regionTotalNum: null, // 地图内总场次
|
|
|
regionTotalCp: null, // 地图内打点数
|
|
|
regionTotalCpRankNum: null, // 地图内个人打点排名
|
|
|
+ regionTotalSysPoint: null, // 地图内积分(百味豆)
|
|
|
+ regionTotalDictance: null, // 地图内里程(单位米)
|
|
|
+ regionFastPace: null, // 地图内最快配速
|
|
|
ocaRs: [], // 卡片对应活动集合
|
|
|
|
|
|
mapList: [], // 地图列表
|
|
|
@@ -149,7 +189,8 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankOverview
|
|
|
popupWarnList: [],
|
|
|
navPoint: {},
|
|
|
configParam: {
|
|
|
- subTitle: ""
|
|
|
+ subTitle: "",
|
|
|
+ midType: 0
|
|
|
},
|
|
|
}
|
|
|
},
|
|
|
@@ -377,6 +418,9 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankOverview
|
|
|
if (param.subTitle != undefined && param.subTitle.length > 0) {
|
|
|
this.configParam.subTitle = param.subTitle;
|
|
|
}
|
|
|
+ if (param.midType != undefined && param.midType >= 0) {
|
|
|
+ this.configParam.midType = param.midType;
|
|
|
+ }
|
|
|
}
|
|
|
// console.log("[loadConfig] param:", this.configParam);
|
|
|
},
|
|
|
@@ -399,7 +443,11 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankOverview
|
|
|
},
|
|
|
// 格式化 距离
|
|
|
fmtDistanct(val) {
|
|
|
- return Math.round(val * 100 / 1000) / 100;
|
|
|
+ if (val >= 0) {
|
|
|
+ return Math.round(val * 100 / 1000) / 100;
|
|
|
+ } else {
|
|
|
+ return '--';
|
|
|
+ }
|
|
|
/* if (val < 1000)
|
|
|
return Math.round(val * 10 / 1000) / 10;
|
|
|
else
|
|
|
@@ -407,7 +455,11 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankOverview
|
|
|
},
|
|
|
// 格式化 配速
|
|
|
fmtPace(val) {
|
|
|
- return tools.convertSecondsToHMS(val, 2);
|
|
|
+ if (val >= 0) {
|
|
|
+ return tools.convertSecondsToHMS(val, 2);
|
|
|
+ } else {
|
|
|
+ return '--';
|
|
|
+ }
|
|
|
},
|
|
|
fmtMcTime(timestamp) {
|
|
|
return tools.fmtMcTime(timestamp);
|
|
|
@@ -445,339 +497,222 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankOverview
|
|
|
height: 220px;
|
|
|
padding-top: 36px;
|
|
|
justify-content: space-between;
|
|
|
- background-image: url('static/backgroud/top_bg_sddx.png');
|
|
|
+ background-image: url('static/backgroud/top_bg_dengshanjie.png');
|
|
|
background-repeat: no-repeat;
|
|
|
background-position-x: center;
|
|
|
background-position-y: center;
|
|
|
background-size: cover;
|
|
|
}
|
|
|
- .logo{
|
|
|
- background-image: url('static/logo/sddx.png');
|
|
|
- }
|
|
|
- .top-acttime{
|
|
|
- display: flex !important;
|
|
|
+ .topcontent {
|
|
|
+ display: none !important;
|
|
|
}
|
|
|
.topbar-color{
|
|
|
- color: #ffffff;
|
|
|
+ color: #333333;
|
|
|
}
|
|
|
.mid{
|
|
|
margin-top: -40px !important;
|
|
|
}
|
|
|
.btnStartGame{
|
|
|
- background-color: #a43a07 !important;
|
|
|
+ background-color: #ff870e !important;
|
|
|
}
|
|
|
.e-select{
|
|
|
- background-color: #a43a07 !important;
|
|
|
+ background-color: #ff870e !important;
|
|
|
}
|
|
|
.swiper-item-button{
|
|
|
- background-color: #a43a07 !important;
|
|
|
+ background-color: #ff870e !important;
|
|
|
}
|
|
|
.uni-swiper-dot-active{
|
|
|
- background: #a43a07 !important;
|
|
|
+ background: #ff870e !important;
|
|
|
}
|
|
|
`,
|
|
|
"pathList": {
|
|
|
- "row1": [
|
|
|
- {
|
|
|
+ "row1": [{
|
|
|
"type": 3,
|
|
|
- "pathImg": "/static/common/sdzxxq.png",
|
|
|
+ "pathImg": "/static/common/lingxiucheng.png",
|
|
|
"path": {
|
|
|
- "ocaId": 9,
|
|
|
+ "ocaId": 1,
|
|
|
"mcType": 3
|
|
|
},
|
|
|
"navImg": "/static/common/nav.png",
|
|
|
"point": {
|
|
|
- "longitude": 117.05842197272015,
|
|
|
- "latitude": 36.6773045110179,
|
|
|
- "name": "山大中心校区起始点"
|
|
|
+ "longitude": 117.022194,
|
|
|
+ "latitude": 36.661612,
|
|
|
+ "name": "领秀城起始点"
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
"type": 3,
|
|
|
- "pathImg": "/static/common/sdbtqxq.png",
|
|
|
+ "pathImg": "/static/common/quanchenggongyuan.png",
|
|
|
"path": {
|
|
|
- "ocaId": 19,
|
|
|
+ "ocaId": 1,
|
|
|
"mcType": 3
|
|
|
},
|
|
|
"navImg": "/static/common/nav.png",
|
|
|
"point": {
|
|
|
- "longitude": 117.01808165974633,
|
|
|
- "latitude": 36.651520245517816,
|
|
|
- "name": "山大趵突泉校区起始点"
|
|
|
+ "longitude": 117.022194,
|
|
|
+ "latitude": 36.661612,
|
|
|
+ "name": "泉城公园起始点"
|
|
|
}
|
|
|
}
|
|
|
],
|
|
|
- "row2": [
|
|
|
- {
|
|
|
+ "row2": [{
|
|
|
"type": 3,
|
|
|
- "pathImg": "/static/common/sdhjlxq.png",
|
|
|
+ "pathImg": "/static/common/baihuagongyuan.png",
|
|
|
"path": {
|
|
|
- "ocaId": 10,
|
|
|
+ "ocaId": 1,
|
|
|
"mcType": 3
|
|
|
},
|
|
|
"navImg": "/static/common/nav.png",
|
|
|
"point": {
|
|
|
- "longitude": 117.06584701149195,
|
|
|
- "latitude": 36.68711365814297,
|
|
|
- "name": "山大洪家楼校区起始点"
|
|
|
+ "longitude": 117.022194,
|
|
|
+ "latitude": 36.661612,
|
|
|
+ "name": "百花公园起始点"
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
"type": 3,
|
|
|
- "pathImg": "/static/common/sdrjyxq.png",
|
|
|
+ "pathImg": "/static/common/aotizhongxin.png",
|
|
|
"path": {
|
|
|
- "ocaId": 21,
|
|
|
+ "ocaId": 1,
|
|
|
"mcType": 3
|
|
|
},
|
|
|
"navImg": "/static/common/nav.png",
|
|
|
"point": {
|
|
|
- "longitude": 117.1434547046918,
|
|
|
- "latitude": 36.66680223258383,
|
|
|
- "name": "山大软件园校区起始点"
|
|
|
+ "longitude": 117.022194,
|
|
|
+ "latitude": 36.661612,
|
|
|
+ "name": "奥体中心起始点"
|
|
|
}
|
|
|
}
|
|
|
],
|
|
|
- "row3": [
|
|
|
- {
|
|
|
- "type": 3,
|
|
|
- "pathImg": "/static/common/sdxlsxq.png",
|
|
|
- "path": {
|
|
|
- "ocaId": 11,
|
|
|
- "mcType": 3
|
|
|
- },
|
|
|
- "navImg": "/static/common/nav.png",
|
|
|
- "point": {
|
|
|
- "longitude": 117.0517531094238,
|
|
|
- "latitude": 36.598365483441846,
|
|
|
- "name": "山大兴隆校区起始点"
|
|
|
- }
|
|
|
+ "row3": [{
|
|
|
+ "type": 3,
|
|
|
+ "pathImg": "/static/common/muniushan.png",
|
|
|
+ "path": {
|
|
|
+ "ocaId": 1,
|
|
|
+ "mcType": 3
|
|
|
},
|
|
|
- {
|
|
|
- "type": 3,
|
|
|
- "pathImg": "/static/common/sdqfsxq.png",
|
|
|
- "path": {
|
|
|
- "ocaId": 20,
|
|
|
- "mcType": 3
|
|
|
- },
|
|
|
- "navImg": "/static/common/nav.png",
|
|
|
- "point": {
|
|
|
- "longitude": 117.0281052458668,
|
|
|
- "latitude": 36.64736827526403,
|
|
|
- "name": "山大千佛山校区起始点"
|
|
|
- }
|
|
|
+ "navImg": "/static/common/nav.png",
|
|
|
+ "point": {
|
|
|
+ "longitude": 117.022194,
|
|
|
+ "latitude": 36.661612,
|
|
|
+ "name": "牧牛山起始点"
|
|
|
}
|
|
|
- ]
|
|
|
+ }]
|
|
|
},
|
|
|
- "pathListStyle": {
|
|
|
- "showLine": true,
|
|
|
+ "pathListStyle" : {
|
|
|
+ "showLine" : true,
|
|
|
"style": "justify-content: flex-start;"
|
|
|
},
|
|
|
"popupRuleConfig": {
|
|
|
- "height": "500px"
|
|
|
+ "height": "530px"
|
|
|
},
|
|
|
"popupDataList": [
|
|
|
- {
|
|
|
- "type": 1,
|
|
|
- "data": {
|
|
|
- "title": "山大24级新生校园定向赛",
|
|
|
- "img": "/static/logo/sddx.png",
|
|
|
- "content": " 开学季来袭!山大24级新生校园定向赛燃情启幕!探索校园每一个角落,挑战智慧与体能,全校师生共同开启新学期活力篇章!等你来挑战!"
|
|
|
- }
|
|
|
- },
|
|
|
{
|
|
|
"type": 7,
|
|
|
"data": {
|
|
|
- "topLogo": {
|
|
|
- "src": "/static/logo/sddx.png",
|
|
|
- "width": "80px",
|
|
|
- "height": "80px"
|
|
|
- },
|
|
|
- "bottomLogo": {
|
|
|
- "src": "/static/logo/inzone.png",
|
|
|
- "width": "150px",
|
|
|
- "height": "30px"
|
|
|
- },
|
|
|
- "title": "活动流程",
|
|
|
- "content": "<br>① 起点打点 → ② 依次打点 → ③ 接受挑战 <br><br>④ 终点打点 → ⑤ 查看成绩 → ⑥ 赢取奖励",
|
|
|
- "imageList": []
|
|
|
+ "title": "活动规则",
|
|
|
+ "content": "<br>① 任何人、任何时间均可体验参赛。<br><br>② 6个场地任意选,比赛时间内,不限次数参赛。<br><br>③ 1次成功打点,获取1个百味豆。<br><br>④ 1次正确答题,获取1个百味豆。"
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
"type": 7,
|
|
|
"data": {
|
|
|
- "topLogo": {
|
|
|
- "src": "/static/logo/sddx.png",
|
|
|
- "width": "80px",
|
|
|
- "height": "80px"
|
|
|
- },
|
|
|
- "bottomLogo": {
|
|
|
- "src": "/static/logo/inzone.png",
|
|
|
- "width": "150px",
|
|
|
- "height": "30px"
|
|
|
- },
|
|
|
- "title": "赛事规则",
|
|
|
- "content": "<p style='margin-bottom:12px;'>① 选择所在校区,参赛时间自由、路线随机</p> <p style='margin-bottom:12px;'>② 准确填报院系,共筑个人与院系荣耀</p> <p style='margin-bottom:12px;'>③ 打点1次1积分,途经点正确答题1积分,多次完赛,点数累加</p> <p style='margin-bottom:12px;'>④ 正常完赛累计积分,未完赛积分不计入</p>",
|
|
|
- "imageList": []
|
|
|
+ "title": "活动奖励",
|
|
|
+ "content": "<br><li>活动: 20个百味豆兑换一个鸡蛋<br><span style='font-size: 12px; color:#999999;'>(限本次活动百味豆,兑换以“蛋叔券”为准)</style><li>百味豆越多,“蛋叔”给你的鸡蛋 越多,上不封顶!<li>随时可以兑换哦~<li>能不能吃上自己挣的鸡蛋,就看你的了!<li style='color:#FF870E;'><span style='color:#FF870E;'>同时,参赛即可获取合作机构的奖励!</span><br><br>",
|
|
|
+ "imageList": [{
|
|
|
+ "src": "/static/common/danshu.png",
|
|
|
+ "width": "183px",
|
|
|
+ "height": "81px"
|
|
|
+ }]
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
"type": 7,
|
|
|
"data": {
|
|
|
- "topLogo": {
|
|
|
- "src": "/static/logo/sddx.png",
|
|
|
- "width": "80px",
|
|
|
- "height": "80px"
|
|
|
- },
|
|
|
- "bottomLogo": {
|
|
|
- "src": "/static/logo/inzone.png",
|
|
|
- "width": "150px",
|
|
|
- "height": "30px"
|
|
|
+ "title": "合作机构",
|
|
|
+ "logo": {
|
|
|
+ "src": "/static/logo/xxhpgy.png",
|
|
|
+ "width": "120px",
|
|
|
+ "height": "120px",
|
|
|
+ "memo": "星星和蒲公英双语阅读馆"
|
|
|
},
|
|
|
- "title": "赛事奖励1",
|
|
|
- "content": "团队奖:<br>院系累计积分前8名; <text style='color:red;'>奖励</text>:团队奖杯 <br><br>个人奖:<br>各校区累计积分前10名;<text style='color:red;'>奖励</text>:荣誉证书完赛者均可获得参赛证书。<br> <text style='color:#A6A6A6;'>(赛事结束后体育委员会自APP颁发)</text>",
|
|
|
- "imageList": []
|
|
|
+ "content": "星星和蒲公英双语阅读馆,济南儿童阅读网红圣地!馆藏2W+册正版图书,涵盖中英文大奖绘本、桥梁书、自然科学与文学社科名著,以及艺术画册和摄影图集。开展面向4-12岁孩子的中文阅读读书会&中英双语阅读课。<br><br><span style='color:#FF870E;'>礼品一:到店阅读权限一年<br>礼品二:店内饮品五折券一张</span>",
|
|
|
+ "pointList": [
|
|
|
+ {
|
|
|
+ "name": "电话:<a href='tel:18765812082' style='color: #333333;'>18765812082</a>",
|
|
|
+ "longitude": 117.075174,
|
|
|
+ "latitude": 36.654108
|
|
|
+ }
|
|
|
+ ]
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
"type": 7,
|
|
|
"data": {
|
|
|
- "topLogo": {
|
|
|
- "src": "/static/logo/sddx.png",
|
|
|
- "width": "80px",
|
|
|
- "height": "80px"
|
|
|
+ "title": "合作机构",
|
|
|
+ "logo": {
|
|
|
+ "src": "/static/logo/wensiyu.png",
|
|
|
+ "width": "120px",
|
|
|
+ "height": "120px",
|
|
|
+ "memo": "文思语少年读书会"
|
|
|
},
|
|
|
- "bottomLogo": {
|
|
|
- "src": "/static/logo/inzone.png",
|
|
|
- "width": "150px",
|
|
|
- "height": "30px"
|
|
|
- },
|
|
|
- "title": "赛事奖励2",
|
|
|
- "content": "<p style='margin-bottom:12px;'>外部奖励:<br>各校区前10名获银座集团价值<text style='color:red;'>200元</text>进阶宠爱大礼。</p> <p style='margin-bottom:12px;'>完赛一次,可获银座价值<text style='color:red;'>50元</text>新生宠爱盲盒。<text style='color:#A6A6A6;'>(数量有限,发完为止)</text></p>每获25积分,可获银座<text style='color:red;'>100减10</text>优惠券1张。封顶5张,可与店内优惠叠加使用。<br><text style='color:#A6A6A6;'>(部分商品、特殊特例商品除外)</text>",
|
|
|
- "imageList": []
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- "type": 7,
|
|
|
- "data": {
|
|
|
- "title": "安全提示",
|
|
|
- "content": "<br><text style='color:#FFBA99; font-size: 20px; margin-right: 5px;'>●</text> 避免聚集,注意安全<br><br> <text style='color:#FFBA99; font-size: 20px; margin-right: 5px;'>●</text> 评估自身健康,适时参与<br><br> <text style='color:#FFBA99; font-size: 20px; margin-right: 5px;'>●</text> 注意交通与场地安全",
|
|
|
- "imageList": [{
|
|
|
- "src": "/static/backgroud/shanda.png",
|
|
|
- "width": "300px",
|
|
|
- "height": "150px"
|
|
|
- }]
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- "type": 2,
|
|
|
- "data": {
|
|
|
- "title": "基本图例",
|
|
|
- "img": "/static/common/jbtl.png"
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- "type": 2,
|
|
|
- "data": {
|
|
|
- "title": "基本标识",
|
|
|
- "img": "/static/common/jbbs2.png"
|
|
|
+ "content": "文思语少年读书会,专注于为4-15岁儿童和家庭提供阅读素养发展解决方案和产品。读书会以整本书精读伴读为核心,塑造良好的读书习惯,训练阅读理解能力,培养创意作文能力。<br><br><span style='color:#FF870E;'>礼品:《山海经》精装套系书<br>书籍原价158元,仅需19.9元/套,不限领取次数,多余权限可赠送他人使用!</span>",
|
|
|
+ "pointList": [
|
|
|
+ {
|
|
|
+ "name": "电话:<a href='tel:17663733631' style='color: #333333;'>17663733631</a>",
|
|
|
+ "longitude": 117.075174,
|
|
|
+ "latitude": 36.654108
|
|
|
+ }
|
|
|
+ ]
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
"type": 7,
|
|
|
"data": {
|
|
|
- "topLogo": {
|
|
|
- "src": "/static/logo/sddx.png",
|
|
|
- "width": "80px",
|
|
|
- "height": "80px"
|
|
|
+ "title": "合作机构",
|
|
|
+ "logo": {
|
|
|
+ "src": "/static/logo/lezhigu.png",
|
|
|
+ "width": "120px",
|
|
|
+ "height": "120px",
|
|
|
+ "memo": "乐知谷"
|
|
|
},
|
|
|
- "bottomLogo": {
|
|
|
- "src": "/static/logo/inzone.png",
|
|
|
- "width": "150px",
|
|
|
- "height": "30px"
|
|
|
- },
|
|
|
- "title": "山大定向赛咨询群",
|
|
|
- "content": "",
|
|
|
- "imageList": [{
|
|
|
- "src": "/static/common/qrcode_sddxszxq.png",
|
|
|
- "width": "116px",
|
|
|
- "height": "116px"
|
|
|
- }],
|
|
|
- "memo": "<view style='display:block; text-align:center;'>赛事规程、流程、奖励咨询 <br><view style='color:#808080; font-size:12px'>(7*24小时解答)</view></view>"
|
|
|
+ "content": "乐知谷是济南科学类口碑最好的机构,主做面向4-12岁儿童,内容涵盖工程科技、自然科学、生命科学、地球太空、PBL综合项目等五大板块,室内&户外相结合,真正将实验、动手、探究融于生活,培养独立思考、永存好奇、敢于创造的未来型孩子。<br><span style='color:#FF870E;'>礼品:乐知谷经典工程体验课《建造一座斜拉桥》一堂,感受力学结构的科技含量课程每人限参与1次,多余权限可赠送他人使用</span>",
|
|
|
+ "pointList": [
|
|
|
+ {
|
|
|
+ "name": "电话:<a href='tel:19100652564' style='color: #333333;'>19100652564</a>",
|
|
|
+ "longitude": 117.075174,
|
|
|
+ "latitude": 36.654108
|
|
|
+ }
|
|
|
+ ]
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
- "type": 8,
|
|
|
+ "type": 7,
|
|
|
"data": {
|
|
|
- "title": "兑换地点",
|
|
|
- "topImg": {
|
|
|
- "src": "/static/logo/inzone2.png",
|
|
|
- "width": "72px",
|
|
|
- "height": "72px"
|
|
|
+ "title": "合作机构",
|
|
|
+ "logo": {
|
|
|
+ "src": "/static/logo/kusentiyu.png",
|
|
|
+ "width": "120px",
|
|
|
+ "height": "120px",
|
|
|
+ "memo": "酷森体育俱乐部"
|
|
|
},
|
|
|
- "topMemo": "<view style='color:#E60012;font-size:14px;'>品质消费引领者 美好生活推荐官</view>",
|
|
|
- "bottomMemo": "<view style='display: flex; align-items: center; justify-content: center; margin-top: 20px; color: #E67300; font-weight: 500; font-size: 15px; text-decoration-line: underline;'><image src='static/common/bulb.png' style='width: 22px; height: 26px; margin-right: 6px;'></image>点击查看《优惠券使用说明》</view>",
|
|
|
- "bottomMemoUrl": "https://oss-mbh5.colormaprun.com/page/explanation/inzone.html",
|
|
|
+ "content": "酷森体育俱乐部包含少儿篮球、体能训练、跳绳,三大课程。拥有二十年以上资深学院派专家教练团队,制定系统的少儿运动训练体系,结合不同年龄及能力的孩子进行定制化教学,使其更符合不同孩子的综合能力提升。<br><br><span style='color:#FF870E;'>礼品:手机全年影视会员卡</span>",
|
|
|
"pointList": [
|
|
|
{
|
|
|
- "map": "中 心 校 区",
|
|
|
- "name": "银座燕山店",
|
|
|
+ "name": "电话:<a href='tel:15621875115' style='color: #333333;'>15621875115</a>",
|
|
|
"longitude": 117.075174,
|
|
|
"latitude": 36.654108
|
|
|
- },
|
|
|
- {
|
|
|
- "map": "洪家楼校区",
|
|
|
- "name": "银座洪楼店",
|
|
|
- "longitude": 117.062653,
|
|
|
- "latitude": 36.684249
|
|
|
- },
|
|
|
- {
|
|
|
- "map": "兴隆山校区",
|
|
|
- "name": "银座七里山店",
|
|
|
- "longitude": 117.004617,
|
|
|
- "latitude": 36.613655
|
|
|
- },
|
|
|
- {
|
|
|
- "map": "趵突泉校区",
|
|
|
- "name": "银座泉城广场店",
|
|
|
- "longitude": 117.023766,
|
|
|
- "latitude": 36.661532
|
|
|
- },
|
|
|
- {
|
|
|
- "map": "千佛山校区",
|
|
|
- "name": "银座玉函店",
|
|
|
- "longitude": 117.014735,
|
|
|
- "latitude": 36.647098
|
|
|
- },
|
|
|
- {
|
|
|
- "map": "软件园校区",
|
|
|
- "name": "银座高新店",
|
|
|
- "longitude": 117.122241,
|
|
|
- "latitude": 36.682175
|
|
|
}
|
|
|
]
|
|
|
}
|
|
|
}
|
|
|
],
|
|
|
- "popupHelpConfig": {
|
|
|
- "height": "539px"
|
|
|
- },
|
|
|
- "popupHelpList": [
|
|
|
- {
|
|
|
- "type": 2,
|
|
|
- "data": {
|
|
|
- "title": "帮助",
|
|
|
- "img": "/static/common/qrcode_help.png",
|
|
|
- "imgParam": {
|
|
|
- "height": "370px"
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- ],
|
|
|
"popupWarnConfig": {
|
|
|
"height": "550px"
|
|
|
},
|
|
|
"param": {
|
|
|
- "subTitle": "山东大学123周年庆"
|
|
|
+ "subTitle": "",
|
|
|
+ "midType": 1
|
|
|
}
|
|
|
}; */
|
|
|
|
|
|
@@ -862,6 +797,9 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankOverview
|
|
|
this.regionTotalNum = data.regionTotalNum;
|
|
|
this.regionTotalCp = data.regionTotalCp;
|
|
|
this.regionTotalCpRankNum = data.regionTotalCpRankNum;
|
|
|
+ this.regionTotalSysPoint = data.regionTotalSysPoint;
|
|
|
+ this.regionTotalDictance = data.regionTotalDictance;
|
|
|
+ this.regionFastPace = data.regionFastPace;
|
|
|
this.ocaRs = data.ocaRs;
|
|
|
|
|
|
this.mcState = tools.checkMcState(this.beginSecond, this.endSecond);
|
|
|
@@ -1001,7 +939,7 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankOverview
|
|
|
tools.appAction(url, "uni.navigateTo");
|
|
|
},
|
|
|
eSelectChange(data) {
|
|
|
- console.log("eSelectChange:", data);
|
|
|
+ // console.log("eSelectChange:", data);
|
|
|
this.ocaId = data.value;
|
|
|
this.matchRsDetailQuery();
|
|
|
uni.setStorageSync(this.mapKey, this.ocaId);
|
|
|
@@ -1109,24 +1047,36 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankOverview
|
|
|
font-size: 14px;
|
|
|
}
|
|
|
|
|
|
- .mid {
|
|
|
+ .midType0 {
|
|
|
width: 90%;
|
|
|
height: 150px;
|
|
|
position: relative;
|
|
|
z-index: 20;
|
|
|
- margin-top: -100px;
|
|
|
+ margin-top: -40px;
|
|
|
background: #ffffff;
|
|
|
border-radius: 9px;
|
|
|
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.13);
|
|
|
font-family: Source Han Sans CN;
|
|
|
}
|
|
|
|
|
|
+ .midType1 {
|
|
|
+ width: 90%;
|
|
|
+ height: 112px;
|
|
|
+ position: relative;
|
|
|
+ z-index: 20;
|
|
|
+ margin-top: -70px;
|
|
|
+ background: #ffffff;
|
|
|
+ border-radius: 9px;
|
|
|
+ box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.13);
|
|
|
+ font-family: Source Han Sans CN;
|
|
|
+ }
|
|
|
+
|
|
|
.mid-0 {
|
|
|
width: 90%;
|
|
|
margin: 12px;
|
|
|
}
|
|
|
|
|
|
- .mid-0-select {
|
|
|
+ .midType0-select {
|
|
|
width: 60%;
|
|
|
font-weight: 500;
|
|
|
color: #8e8e8e;
|
|
|
@@ -1141,17 +1091,42 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankOverview
|
|
|
color: #992900;
|
|
|
}
|
|
|
|
|
|
- .mid-1 {
|
|
|
+ .midType0-mid-1 {
|
|
|
width: 90%;
|
|
|
margin-bottom: 12px;
|
|
|
}
|
|
|
|
|
|
+ .midType1-select {
|
|
|
+ /* width: 46%; */
|
|
|
+ min-width: 46%;
|
|
|
+ max-width: 50%;
|
|
|
+ margin: 0 5px;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #8e8e8e;
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .midType1-mid-1 {
|
|
|
+ width: 90%;
|
|
|
+ margin: 12px;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #8e8e8e;
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+
|
|
|
.mid-1-yellowCard {
|
|
|
width: 15px;
|
|
|
height: 20px;
|
|
|
margin-right: 10px;
|
|
|
}
|
|
|
|
|
|
+ .mid-1-name {
|
|
|
+ max-width: 360rpx;
|
|
|
+ white-space: nowrap;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ }
|
|
|
+
|
|
|
.mid-1-text {
|
|
|
/* min-width: 60px; */
|
|
|
font-weight: 500;
|