|
@@ -338,6 +338,7 @@
|
|
|
<div style="background: #484848;position: fixed; bottom:0px; z-index: 20;" class="sendbox w-100 pt-2">
|
|
|
<div class="p-2">
|
|
|
<input type="number" name="amount" id="number" placeholder="請輸入數量" class="p-2 w-100 mb-3" style="border-radius: 10px; border:none;" required>
|
|
|
+ <p class="text-error text-white mb-2"></p>
|
|
|
<input id="address" style="border-radius: 10px; border:none;" class="p-2 w-100 mb-3" type="text" name="address" placeholder="請輸入您要發送的地址" required>
|
|
|
<div class="text-end px-2">
|
|
|
<p class="text-start text-white mb-2">※ 一次只能發送一則NFT收藏品</p>
|
|
@@ -379,25 +380,24 @@ $(document).ready(function () {
|
|
|
liffId: "1656404434-gJ0Nzy1Y"
|
|
|
})
|
|
|
.then(() => {
|
|
|
- // var context = liff.getContext();
|
|
|
- // console.log(context);
|
|
|
+ var context = liff.getContext();
|
|
|
+ console.log(context);
|
|
|
|
|
|
- // var profile = liff.getProfile();
|
|
|
- // console.log(profile);
|
|
|
+ var profile = liff.getProfile();
|
|
|
+ console.log(profile);
|
|
|
|
|
|
- // // login
|
|
|
- // if (!liff.isLoggedIn()) {
|
|
|
- // console.log("您未登入");
|
|
|
- // console.log('context.userId = ' + context.userId); // test
|
|
|
- // liff.login({ redirectUri: "https://ark.cards/collect.html?"+context.userId }); // test
|
|
|
- // //liff.login({ redirectUri: "https://liff.line.me/1656404434-gJ0Nzy1Y?"+context.userId }); // test
|
|
|
- // } else {
|
|
|
- // console.log("您已登入");
|
|
|
- // }
|
|
|
+ // login
|
|
|
+ if (!liff.isLoggedIn()) {
|
|
|
+ console.log("您未登入");
|
|
|
+ console.log('context.userId = ' + context.userId); // test
|
|
|
+ liff.login({ redirectUri: "https://ark.cards/collect.html?"+context.userId }); // test
|
|
|
+ //liff.login({ redirectUri: "https://liff.line.me/1656404434-gJ0Nzy1Y?"+context.userId }); // test
|
|
|
+ } else {
|
|
|
+ console.log("您已登入");
|
|
|
+ }
|
|
|
|
|
|
- // // 收藏頁面
|
|
|
- // collection(context.userId);
|
|
|
- collection('0x2fcdf2dff554dbb4a4c08713b9f228813d65e637');
|
|
|
+ // 收藏頁面
|
|
|
+ collection(context.userId);
|
|
|
})
|
|
|
.catch((err) => {
|
|
|
console.log('初始化失敗: ' + err.code + ", " + err.message);
|