Commit 7c3f0db5 authored by 邱旭's avatar 邱旭

1

parent 46d69171
......@@ -47,6 +47,57 @@
<script src="libs/aes.js"></script>
<script src="libs/pad-zeropadding.js"></script>
<img id="pic" style="width:100%;position: absolute;z-index: 999;display: none;" />
<script>
/*
* 邀请有礼分享
*/
function inviteShare(shareCode) {
let title = "";
let content = "";
let targetUrl = "" + "?shareCode=" + shareCode; // 待修改
let iconUrl = "http://yun.duiba.com.cn/db_games/xiaoxiaole.jpg";
let shareWays = "1,2";
console.log("AppReady");
if (isIphone()) {
console.log("IOS");
console.log(window.SNNativeClient);
window.callNativeShareResult = function () { };
window.SNNativeClient.callNativeShare(title, content, targetUrl, iconUrl, shareWays);
} else {
console.log("安卓");
console.log(shareApi);
console.log(shareApi.callMediaShare);
shareApi.callNativeShare(title, content, targetUrl, iconUrl, shareWays);
}
}
function share() {
let title = "";
let content = "";
let targetUrl = "";
let iconUrl = "http://yun.duiba.com.cn/db_games/xiaoxiaole.jpg";
let shareWays = "";
console.log("AppReady");
if (isIphone()) {
console.log("IOS");
console.log(window.SNNativeClient);
window.callNativeShareResult = function () { };
window.SNNativeClient.callNativeShare(title, content, targetUrl, iconUrl, shareWays);
} else {
console.log("安卓");
console.log(shareApi);
console.log(shareApi.callMediaShare);
shareApi.callNativeShare(title, content, targetUrl, iconUrl, shareWays);
}
}
function isIphone() {
var ua = navigator.userAgent.toLocaleLowerCase();
if (ua.match(/iphone|ipad/)) {
return true;
} else if (ua.match(/android/)) {
return false;
}
}
</script>
<script>
window['signconfigs'] = [
{ nums: '0.15元', type: 'quan15' },
......
......@@ -71,5 +71,11 @@ export enum NetName {
SIGN_DO_SIGN,
//查询奖品记录
GET_RECORD
GET_RECORD,
// 邀请有礼
GET_SHARECODE,
DO_HELP,
GET_INVATE_INFO
}
\ No newline at end of file
......@@ -1901,7 +1901,7 @@ export class NetManager extends ABNetManager {
*/
public getShareCode(callback: Function): void {
const net: INetData = {
name: NetName.CUSTOM_THROUGH_SUBMIT,
name: NetName.GET_SHARECODE,
uri: '/customActivity/happyclear/getShareCode',
type: 'post',
dataType: 'json',
......@@ -1921,7 +1921,7 @@ export class NetManager extends ABNetManager {
*/
public doHelp(callback: Function, shareCode: any, orderId: number): void {
const net: INetData = {
name: NetName.CUSTOM_THROUGH_SUBMIT,
name: NetName.DO_HELP,
uri: '/customActivity/happyclear/doHelp',
type: 'post',
dataType: 'json',
......@@ -1941,7 +1941,7 @@ export class NetManager extends ABNetManager {
*/
public getInvateInfo(callback: Function): void {
const net: INetData = {
name: NetName.CUSTOM_THROUGH_SUBMIT,
name: NetName.GET_INVATE_INFO,
uri: '/customActivity/happyclear/invitationInfo',
type: 'post',
dataType: 'json',
......
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="InviteItemSkin" width="90" height="90" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<e:Image id="img" left="0" top="0" bottom="0" right="0" source=""/>
<e:Image id="img" source="" top="0" left="0" bottom="0" right="0"/>
</e:Skin>
\ No newline at end of file
......@@ -23,13 +23,16 @@
</e:Button>
<e:Label id="numLabel" text="仅差3人可获得" y="679.33" textColor="0xf54500" size="28" horizontalCenter="0" />
<e:Label id="cutTimeLabel" text="将在23:43:21后失效" y="883.33" size="28" textColor="0xffffff" horizontalCenter="0"/>
<e:Scroller width="554" height="90" y="766.33" anchorOffsetX="0" anchorOffsetY="0" horizontalCenter="0">
<e:Scroller width="554" height="90" y="766.33" anchorOffsetX="0" anchorOffsetY="0" x="98">
<e:Group anchorOffsetX="0">
<e:List id="list" x="0" height="100%" y="0" anchorOffsetX="0" width="100%">
<e:List id="list" x="0" y="0" anchorOffsetX="0">
<e:layout>
<e:HorizontalLayout horizontalAlign="center" verticalAlign="middle" gap="66"/>
<e:HorizontalLayout gap="66" horizontalAlign="center" verticalAlign="middle"/>
</e:layout>
</e:List>
<e:layout>
<e:HorizontalLayout gap="66" horizontalAlign="center" verticalAlign="middle"/>
</e:layout>
</e:Group>
</e:Scroller>
</e:Skin>
\ No newline at end of file
......@@ -347,7 +347,12 @@ export default class MapScene extends Scene {
PanelCtrl.instance.show('task');
}
onTap_inviteBtn(){
PanelCtrl.instance.show('invite');
NetManager.ins.getInvateInfo((success, res)=>{
if(!success || !res.data){
return;
}
PanelCtrl.instance.show('invite', res.data);
});
}
onTap_friendBtn(){
PanelCtrl.instance.show('friend');
......
import Panel from "../../libs/new_wx/components/Panel";
import { callShareApi, hideShare } from "../shareCtrl";
import layers from "../../libs/new_wx/views/layers";
import ComponentBase from "../../libs/new_wx/components/ComponentBase";
import { iswx } from "../iswx";
import getSkinPath from "../../libs/new_wx/utils/getSkinPath";
import InviteRulePanel from "./InviteRulePanel";
import { NetManager } from "../../libs/tw/manager/NetManager";
export default class InvitePanel extends Panel {
public prizeImg: eui.Image;
......@@ -13,7 +11,15 @@ export default class InvitePanel extends Panel {
public numLabel: eui.Label;
public cutTimeLabel: eui.Label;
public list: eui.List;
private invite_img: egret.Texture;
private timer: egret.Timer;
private cutTime: number;
constructor(data) {
super();
this.data = data;
}
start(data) {
super.start();
......@@ -54,20 +60,48 @@ export default class InvitePanel extends Panel {
}
initUI() {
let data = [
{
img: this.invite_img,
},
{
img: this.invite_img,
},
{
img: this.invite_img,
},
];
this.prizeImg.source = this.data.img;
let dNum = this.data.invitationCount - this.data.invitationUser.length;
this.numLabel.text = `仅差${dNum}人可获得`;
for(let i = 0; i < dNum; i++) {
this.data.invitationUser.push({
nickname: "nickname",
avatar: this.invite_img,
});
}
this.list.useVirtualLayout = false;
this.list.itemRenderer = InviteItem;
this.list.dataProvider = new eui.ArrayCollection(data);
this.list.dataProvider = new eui.ArrayCollection(this.data.invitationUser);
this.cutTime = this.data.endTime - this.data.sysTime + 1000;
this.timer = new egret.Timer(1000, 0);
this.timer.addEventListener(egret.TimerEvent.TIMER, this.cutTimer, this);
this.timer.start();
this.cutTimer();
}
private cutTimer() {
let timer = this.convertTime(this.cutTime -= 1000);
if(timer.hour === 0
&& timer.min === 0
&& timer.sec === 0) {
this.timer.stop();
this.hidePanel();
}
this.cutTimeLabel.text = `将在${timer.hour}:${timer.min}:${timer.sec}后失效`;
}
private convertTime(time: number) {
let hour = ~~(time / 3600000); // 小时
let min = ~~((time - hour * 3600000) / 60000); // 分
let sec = ~~((time - hour * 3600000 - min * 60000) / 1000); // 秒
return {
hour: hour,
min: min,
sec: sec,
}
}
protected get closeBtns(): eui.Button[] {
......@@ -97,90 +131,90 @@ class InviteItem extends eui.ItemRenderer {
}
dataChanged() {
this.img.source = this.data.img;
this.img.source = this.data.avatar;
this.img.addEventListener(egret.TouchEvent.TOUCH_TAP, () => {
showShareTips("");
}, this);
}
}
////////////////////////////////////////////////////////////////////////////////////////////////
class ShareTips extends ComponentBase {
public inviteGroup: eui.Group;
public btn1: eui.Button;
public btn2: eui.Button;
private img: string;
setUrl(img: string) {
this.img = img;
}
start() {
this.once(egret.TouchEvent.ADDED_TO_STAGE, () => {
this.height = this.stage.stageHeight;
}, this);
this.addEventListener(egret.TouchEvent.TOUCH_TAP, () => {
hideShare();
}, this);
this.btn1.addEventListener(egret.TouchEvent.TOUCH_TAP, () => {
if(iswx()) { //微信端
} else {//端内
this.getFunc('2');//朋友圈
}
hideShare();
NetManager.ins.getShareCode((success, res) => {
if(!success) {
return;
}
let shareCode = res.data;
if(iswx()) { //微信端
} else {//端内
window["inviteShare"](shareCode);
}
});
}, this);
this.btn2.addEventListener(egret.TouchEvent.TOUCH_TAP, () => {
if(iswx()) { //微信端
} else {//端内
this.getFunc('1');//好友微信
}
hideShare();
}, this);
}
//channel 1 好友 2 朋友圈
getFunc(channel: string) {
// let base64;
// if(this.type==1)
// base64= getPrintScreenData(this['pic' + this.type], 0, 0, 579, 866);
// else
// base64= getPrintScreenData(this['pic' + this.type], 0, 0, 600, 965);
// NetManager.ins.imgUrl((success) => {
// const data = DataManager.ins.getData('imgURL');
// img.src = base64;
// img.src = data.data;
// }, base64);
callShareApi(this.img, channel);
}
get skinKey() {
return 'ShareTips';
}
}
let inited = false;
let _share: ShareTips;
const initShare = () => {
const layer = layers.shareLayer;
const share = new ShareTips();
share.loadSkin();
share.start();
layer.addChild(share);
_share = share;
};
const showShareTips = (url: string) => {
if(!inited) {
initShare();
inited = true;
}
_share.setUrl(url);
layers.shareLayer.visible = true;
};
\ No newline at end of file
// ////////////////////////////////////////////////////////////////////////////////////////////////
// // 端内分享提示
// class ShareTips extends ComponentBase {
// public inviteGroup: eui.Group;
// public btn1: eui.Button;
// public btn2: eui.Button;
//
// private img: string;
//
// setUrl(img: string) {
// this.img = img;
// }
//
// start() {
// this.once(egret.TouchEvent.ADDED_TO_STAGE, () => {
// this.height = this.stage.stageHeight;
// }, this);
//
// this.addEventListener(egret.TouchEvent.TOUCH_TAP, () => {
// hideShare();
// }, this);
//
// this.btn1.addEventListener(egret.TouchEvent.TOUCH_TAP, () => {
// this.getFunc();//朋友圈
// hideShare();
// }, this);
//
// this.btn2.addEventListener(egret.TouchEvent.TOUCH_TAP, () => {
// this.getFunc();//朋友圈
// hideShare();
// }, this);
// }
//
// getFunc() {
// NetManager.ins.getShareCode((success, res) => {
// if(!success) {
// return;
// }
// if(iswx()) { //微信端
//
// } else {//端内
// window["inviteShare"](res.data);
// }
// });
// }
//
// get skinKey() {
// return 'ShareTips';
// }
// }
//
// let inited = false;
// let _share: ShareTips;
// const initShare = () => {
// const layer = layers.shareLayer;
// const share = new ShareTips();
// share.loadSkin();
// share.start();
// layer.addChild(share);
// _share = share;
// };
//
// const showShareTips = (url: string) => {
// if(!inited) {
// initShare();
// inited = true;
// }
// _share.setUrl(url);
// layers.shareLayer.visible = true;
// };
\ No newline at end of file
{
"success":true,
"code":null,
"desc":null,
"timestamp":1566199822308,
"data":{
"invitationId":"活动id",
"invitationCount":1,
"img":"图片",
"sysTime":1566199822308,
"endTime":1566199822308,
"invitationUser":[
"success": true,
"code": null,
"desc": null,
"timestamp": 1566199822308,
"data": {
"invitationId": "活动id",
"invitationCount": 3,
"img": "http://yun.duiba.com.cn/db_games/xiaoxiaole.jpg",
"sysTime": 1570586400000,
"endTime": 1570672800000,
"invitationUser": [
{
"nickname":"nickname",
"avatar":"avatar"
"nickname": "nickname",
"avatar": "http://yun.duiba.com.cn/db_games/xiaoxiaole.jpg"
}
],
"completeFlag":true,
"openPriz":true,
"openPrizMsg":"图片"
"completeFlag": true,
"openPriz": true,
"openPrizMsg": "图片",
"prizeInfo": [
{
"prizeType": "nickname",
"prizeName": "nickname",
"prizeImg": "nickname",
"facePrice": "avatar"
}
]
}
}
\ No newline at end of file
......@@ -3,5 +3,5 @@
"code":null,
"desc":null,
"timestamp":1566199822308,
"data":""
"data":"666"
}
\ No newline at end of file
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