litian
2024-09-19 cb2fcaef30cc26ed6273eff93f918ea702fa5957
packageBookService/pages/bookServices/detail/components/teachResource/index.js
@@ -16,22 +16,28 @@
      type: String,
      value: "",
    },
    treeList: {
      type: Array,
    }
  },
  data: {
    showRejectDialog: false,
    confirmBtn: { content: "知道了", variant: "base" },
    confirmBtn: {
      content: "知道了",
      variant: "base"
    },
  },
  methods: {
    copy() {
      wx.setClipboardData({
        data: "11",
        data: "https://jsek.bnuic.com/home/#/home/index",
        success: function (res) {
          wx.showToast({ title: "复制成功" });
          wx.showToast({
            title: "复制成功"
          });
        },
        fail: function (res) {
          wx.showToast({
            title: "失败",
          });
          console.log(res);
        },
      });
    },
@@ -53,5 +59,8 @@
        showRejectDialog: false,
      });
    },
    uploadBtn() {
      this.triggerEvent("uploadFile", true);
    },
  },
});
});