From bbba5d26e9e26c910ed337dcb65f462752ee6dce Mon Sep 17 00:00:00 2001
From: litian <C21AF165>
Date: 星期四, 12 九月 2024 09:11:47 +0800
Subject: [PATCH] fenxiang

---
 pages/digitalTextbooks/digitalTextbooksDetails/index.js |   25 ++++++++++++++++++-------
 1 files changed, 18 insertions(+), 7 deletions(-)

diff --git a/pages/digitalTextbooks/digitalTextbooksDetails/index.js b/pages/digitalTextbooks/digitalTextbooksDetails/index.js
index dee28fb..0215786 100644
--- a/pages/digitalTextbooks/digitalTextbooksDetails/index.js
+++ b/pages/digitalTextbooks/digitalTextbooksDetails/index.js
@@ -92,7 +92,13 @@
     const token = wx.getStorageSync(app.config.tokenKey)
     if (!token) {
       loginInfo(app, (data) => {
-        if (data) {} else {}
+        if (data) {
+          this.digitalTextbooksDetailsGet(this.data.digitalTextId)
+          this.getType()
+          this.getCertificateList()
+        } else {
+
+        }
       })
     }
     this.digitalTextbooksDetailsGet(this.data.digitalTextId)
@@ -194,9 +200,8 @@
   /**
    * 鐢ㄦ埛鐐瑰嚮鍙充笂瑙掑垎浜�
    */
-  onShareAppMessage() {
-
-  },
+  onShareAppMessage() {},
+  onShareTimeline() {},
 
 
   digitalTextbooksDetailsGet(digitalId) {
@@ -244,7 +249,7 @@
           isBuy: false
         })
       }
-      res.datas.publicationDate = moment(res.datas.publicationDate).format('YYYY骞碝M鏈圖D鏃�')
+      res.datas.publicationDate = moment(res.datas.publicationDate).format('YYYY骞碝M鏈�')
       if (res.datas.icon == '') {
         res.datas.icon = '/static/images/default-book-img.png'
       }
@@ -522,7 +527,6 @@
 
   },
   onTabClick(e) {
-    // debugger
     console.log(e);
     let tab = e.currentTarget.dataset.tab;
 
@@ -833,6 +837,10 @@
   },
 
   confirmM() {
+    let currentDate = new Date()
+    let year = currentDate.getFullYear()
+    let month = currentDate.getMonth() + 1
+    let day = currentDate.getDate()
     if (this.data.userInfo.fullName) {
       if (this.data.pictureMd5 == '') {
         wx.showToast({
@@ -850,8 +858,11 @@
         author: this.data.digitalsData.author,
         ISBN: this.data.digitalsData.isbn,
         publicationDate: this.data.digitalsData.publicationDate,
+        publicationDate: this.data.digitalsData.publicationDate,
+        userName: this.data.userInfo.fullName,
         userPicture: this.data.pictureMd5,
-        certificate: this.data.rzzsImg
+        studyTime: this.data.digitalsData.beginDate + '-' + year + '-' + month + '-' + day,
+        website: this.data.website
       }
       data = {
         topicIdOrRefCode: 'applyTextbookCertificate',

--
Gitblit v1.9.1