huai-sian 3 лет назад
Родитель
Сommit
b9a53cc475
2 измененных файлов с 19 добавлено и 16 удалено
  1. 16 15
      ArkCard-web/collect.html
  2. 3 1
      ArkCard-web/goto.js

+ 16 - 15
ArkCard-web/collect.html

@@ -379,24 +379,25 @@ $(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(context.userId);
+        collection('0x2fcdf2dff554dbb4a4c08713b9f228813d65e637');
     })
     .catch((err) => {
         console.log('初始化失敗: ' + err.code + ", " + err.message);

+ 3 - 1
ArkCard-web/goto.js

@@ -48,7 +48,7 @@ function collection(collectuserid='') {
         for(let i = 0; i < arr.length; i++) {
           collectcontent += '\
             <div class="collectcontent col">\
-              <input style="display: none;" type="radio" value="'+ arr[i].uid + '" name="nftid" id="' + arr[i].uid + '">\
+              <input style="display: none;" type="radio" data-amount="'+ arr[i].amount +'" value="'+ arr[i].uid + '" name="nftid" id="' + arr[i].uid + '">\
               <label for="'+ arr[i].uid + '">\
                 <div class="collectcard card h-100">\
                   <a target="_blank">\
@@ -57,7 +57,9 @@ function collection(collectuserid='') {
                   <div class="card-body p-2">\
                       <a target="_blank">\
                           <h5 class="card-title pt-3">'+ arr[i].title + '</h5>\
+                          <p class="card-text text-mute">'+ arr[i].context + '</p>\
                           <p class="card-text">數量:'+ arr[i].amount + '</p>\
+                          <p class="card-text card-price text-end">$'+ arr[i].price + '</p>\
                       </a>\
                   </div>\
                 </div>\