From bfdd1a936731cf9b5f0d2c78d363cbb0ec93d941 Mon Sep 17 00:00:00 2001 From: 闫增涛 <1829501689@qq.com> Date: 星期三, 04 九月 2024 09:43:52 +0800 Subject: [PATCH] 树结构排序优化 --- packageBookService/pages/bookServices/detail/components/teachResource/index.js | 16 ++++++++++++---- 1 files changed, 12 insertions(+), 4 deletions(-) diff --git a/packageBookService/pages/bookServices/detail/components/teachResource/index.js b/packageBookService/pages/bookServices/detail/components/teachResource/index.js index ec299ce..fe2a9d0 100644 --- a/packageBookService/pages/bookServices/detail/components/teachResource/index.js +++ b/packageBookService/pages/bookServices/detail/components/teachResource/index.js @@ -19,14 +19,19 @@ }, data: { showRejectDialog: false, - confirmBtn: { content: "鐭ラ亾浜�", variant: "base" }, + confirmBtn: { + content: "鐭ラ亾浜�", + variant: "base" + }, }, methods: { copy() { wx.setClipboardData({ - data: "http://182.92.203.7:3007/jsek/website/#/home/index", + data: "https://jsek.bnuic.com/home/#/home/index", success: function (res) { - wx.showToast({ title: "澶嶅埗鎴愬姛" }); + wx.showToast({ + title: "澶嶅埗鎴愬姛" + }); }, fail: function (res) { console.log(res); @@ -51,5 +56,8 @@ showRejectDialog: false, }); }, + uploadBtn() { + this.triggerEvent("uploadFile", true); + }, }, -}); +}); \ No newline at end of file -- Gitblit v1.9.1