12 2020 档案

摘要:我裂开了,可以自己搭建overleaf服务器 阅读全文
posted @ 2020-12-29 20:30 bH1pJ 阅读(42) 评论(0) 推荐(0) 编辑
摘要:#1.用户自定义异常类型class TdmsFileMissedExceptin(Exception): "this is user's Exception for check the length of name " def __init__(s... 阅读全文
posted @ 2020-12-29 17:10 bH1pJ 阅读(31) 评论(0) 推荐(0) 编辑
摘要:Python 自定义异常 #1.用户自定义异常类型class TdmsFileMissedExceptin(Exception): "this is user's Exception for check the length of name " ... 阅读全文
posted @ 2020-12-29 17:09 bH1pJ 阅读(29) 评论(0) 推荐(0) 编辑
摘要:git 同时往两个仓库中push code 阅读全文
posted @ 2020-12-28 17:54 bH1pJ 阅读(19) 评论(0) 推荐(0) 编辑
摘要:坑 意味着没有输出。变量都会保存到console里边 如果取消这个选项,则:有输出,运行完就结束了 阅读全文
posted @ 2020-12-27 21:44 bH1pJ 阅读(119) 评论(0) 推荐(0) 编辑
摘要:print("{} = {}".format(k, numbers[k])) 阅读全文
posted @ 2020-12-27 21:19 bH1pJ 阅读(36) 评论(0) 推荐(0) 编辑
摘要:#part1r1=r.split('\n\n')r2 = [c.replace('\n','') for c in r1]passcount= 0for str in r2: n = len(set(str)) count+=nprint(coun... 阅读全文
posted @ 2020-12-27 18:01 bH1pJ 阅读(75) 评论(0) 推荐(0) 编辑
摘要:for i in range(1,10,2): print(i) 隔两个 阅读全文
posted @ 2020-12-26 19:55 bH1pJ 阅读(346) 评论(0) 推荐(0) 编辑
摘要:np.hstack & np.vstack np.Repeat() ra2 = np.repeat(array,1,10) repmat 阅读全文
posted @ 2020-12-26 19:28 bH1pJ 阅读(18) 评论(0) 推荐(0) 编辑
摘要:np.hstack & np.vstack np.Repeat() ra2 = np.repeat(array,1,10) repmat 阅读全文
posted @ 2020-12-26 19:29 bH1pJ 阅读(70) 评论(0) 推荐(0) 编辑
摘要:m,n=100,3 import numpy as np array = np.ones((m,n)) array = np.zeros((m,n)) 阅读全文
posted @ 2020-12-26 19:06 bH1pJ 阅读(110) 评论(0) 推荐(0) 编辑
摘要:pickle # 存储变量的文件的名字filename = 'Day3-Data.data'if os.path.exists(filename): print("Already exist") with open(filename, 'r... 阅读全文
posted @ 2020-12-26 19:06 bH1pJ 阅读(43) 评论(0) 推荐(0) 编辑
摘要:import os os.path.exists os.path.exists(filename) 阅读全文
posted @ 2020-12-26 18:45 bH1pJ 阅读(13) 评论(0) 推荐(0) 编辑
摘要:python如何保存变量 https://blog.csdn.net/jining11/article/details/81435899 filename = 'shoplist.data'# 以二进制写模式打开目标文件f = open(filen... 阅读全文
posted @ 2020-12-26 17:31 bH1pJ 阅读(197) 评论(0) 推荐(0) 编辑
摘要:len(re.findall(value,password)) 或者用“”.count() print(a.count(b)) #2 阅读全文
posted @ 2020-12-26 17:06 bH1pJ 阅读(35) 评论(0) 推荐(0) 编辑
摘要:import requests#通过url获取数据def get_page(url): #requests.get 自带 json.load page = requests.get(url) page = page.content #将... 阅读全文
posted @ 2020-12-26 13:41 bH1pJ 阅读(413) 评论(0) 推荐(0) 编辑
摘要:python 求两个list的交集 r = list(set(data2).intersection(set(data)))print(r[0]*r[1]) 阅读全文
posted @ 2020-12-26 13:10 bH1pJ 阅读(33) 评论(0) 推荐(0) 编辑
摘要:写个for循环吧 data2= []for i in data: data2.append(i-10) 阅读全文
posted @ 2020-12-26 12:59 bH1pJ 阅读(465) 评论(0) 推荐(0) 编辑
摘要:overleaf怎么打单引号 是这个↓ ' 不是\' 阅读全文
posted @ 2020-12-25 17:17 bH1pJ 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-12-25 16:10 bH1pJ 阅读(9) 评论(0) 推荐(0) 编辑
摘要:for k in numbers: print("{} = {}".format(k, numbers[k])) 阅读全文
posted @ 2020-12-25 16:08 bH1pJ 阅读(26) 评论(0) 推荐(0) 编辑
摘要:print(1, 2, 3, sep=' < ') 1 < 2 < 3 print(planet, end=' ') planets = ['Mercury', 'Venus', 'Earth', 'Mars', 'Jupiter'... 阅读全文
posted @ 2020-12-25 15:37 bH1pJ 阅读(172) 评论(0) 推荐(0) 编辑
摘要:坑,未填 阅读全文
posted @ 2020-12-23 15:35 bH1pJ 阅读(17) 评论(0) 推荐(0) 编辑
摘要:刚刚把word里的设置调飘了 阅读全文
posted @ 2020-12-23 14:55 bH1pJ 阅读(32) 评论(0) 推荐(0) 编辑
摘要:????【辣鸡word】 阅读全文
posted @ 2020-12-23 14:05 bH1pJ 阅读(149) 评论(0) 推荐(0) 编辑
摘要:The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. ... 阅读全文
posted @ 2020-12-23 11:22 bH1pJ 阅读(4219) 评论(0) 推荐(0) 编辑
摘要:imageJ宏语言,打开某个插件,并把其中的参数都填好了 (1)打开一张图片; (2)resize一下,按照我想要的参数进行设置; (3)自己点OK 例子: 新建一个 New_.ijm 内容如下: run("Gel (105K)");run("Siz... 阅读全文
posted @ 2020-12-23 00:50 bH1pJ 阅读(148) 评论(0) 推荐(0) 编辑
摘要:策略1:movefile的策略; %% 以下的代码是将MiceVideo和CellVideo里边的图片重命名% clear all;close all;clc;cellFilePath = uigetdir();cellFilePath = [cellFile... 阅读全文
posted @ 2020-12-22 20:43 bH1pJ 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-12-21 19:22 bH1pJ 阅读(9) 评论(0) 推荐(0) 编辑
摘要:self.btnStart.setStyleSheet( "border:2px groove gray;border-radius:10px;padding:2px 4px;background-color:lightpink") ... 阅读全文
posted @ 2020-12-21 19:04 bH1pJ 阅读(107) 评论(0) 推荐(0) 编辑
摘要:display:none 阅读全文
posted @ 2020-12-20 13:57 bH1pJ 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-12-19 18:07 bH1pJ 阅读(25) 评论(0) 推荐(0) 编辑
摘要:2020年12月19日16:17:17 奇怪,找不到解决方案。试了很多,都没用 阅读全文
posted @ 2020-12-19 16:18 bH1pJ 阅读(6) 评论(0) 推荐(0) 编辑
摘要:Our study (pp. E275–E284) highlights the importance of directly assaying transcription to understand gene regulation. 我们的研究(pp. E2... 阅读全文
posted @ 2020-12-18 19:17 bH1pJ 阅读(115) 评论(0) 推荐(0) 编辑
摘要:没啥用啊.... 阅读全文
posted @ 2020-12-17 16:58 bH1pJ 阅读(9) 评论(0) 推荐(0) 编辑
摘要:XShell NB 在win下直接连接到linux上,打开终端进行GUI 可视化 gnome-system-monitor 阅读全文
posted @ 2020-12-17 14:34 bH1pJ 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-12-16 14:30 bH1pJ 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-12-16 14:30 bH1pJ 阅读(24) 评论(0) 推荐(0) 编辑
摘要:try: for line in open("./log.txt", "r"): # 设置文件对象并读取每一行文件 # data.append(line) # 将每一行文件加入到list中 self.teLog.appen... 阅读全文
posted @ 2020-12-16 12:10 bH1pJ 阅读(419) 评论(0) 推荐(0) 编辑
摘要:data = []for line in open("data.txt","r"): #设置文件对象并读取每一行文件 data.append(line) #将每一行文件加入到list中 currentTime ... 阅读全文
posted @ 2020-12-16 11:59 bH1pJ 阅读(27) 评论(0) 推荐(0) 编辑
摘要:方案: walk两次, 第一次生成一个list 第二次根据list的元素就能够得到进度了 阅读全文
posted @ 2020-12-15 20:03 bH1pJ 阅读(61) 评论(0) 推荐(0) 编辑
摘要:service_name = 'devcenter'smb_dir = '/User/FFF/'rootPath = r'D:/FF/FF/FF/'for fpathe, dirs, fs in os.walk(rootPath): for f in f... 阅读全文
posted @ 2020-12-15 19:59 bH1pJ 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-12-15 19:42 bH1pJ 阅读(556) 评论(0) 推荐(0) 编辑
摘要:f = open('D:/test2.txt','r') 阅读全文
posted @ 2020-12-15 18:08 bH1pJ 阅读(397) 评论(0) 推荐(0) 编辑
摘要:pysmb storeFile如何使用 self.samba = self.getSMBConnect()f = open('./resources/aaa.txt', 'rb')self.samba.storeFile('devcenter',... 阅读全文
posted @ 2020-12-15 18:06 bH1pJ 阅读(119) 评论(0) 推荐(0) 编辑
摘要:pyqt控件提醒 注意这个是ms,所以如果写5的话,看不到哦 阅读全文
posted @ 2020-12-15 16:48 bH1pJ 阅读(8) 评论(0) 推荐(0) 编辑
摘要:pyqt控件提醒 注意这个是ms,所以如果写5的话,看不到哦 阅读全文
posted @ 2020-12-15 16:48 bH1pJ 阅读(11) 评论(0) 推荐(0) 编辑
摘要:Python smb综述 (1)pysmb (2)fs.smbfs (3)pysmbclient 阅读全文
posted @ 2020-12-15 16:47 bH1pJ 阅读(125) 评论(0) 推荐(0) 编辑
摘要:Python smb综述 (1)pysmb (2)fs.smbfs (3)pysmbclient 阅读全文
posted @ 2020-12-15 16:47 bH1pJ 阅读(91) 评论(0) 推荐(0) 编辑
摘要:\uline{concat} 阅读全文
posted @ 2020-12-14 22:35 bH1pJ 阅读(1312) 评论(0) 推荐(0) 编辑
摘要:\uline{concat} 阅读全文
posted @ 2020-12-14 22:35 bH1pJ 阅读(512) 评论(0) 推荐(0) 编辑
摘要:format.journal is an unknown function VSCode使用latex有很大的问题!!! 阅读全文
posted @ 2020-12-14 16:12 bH1pJ 阅读(255) 评论(0) 推荐(0) 编辑
摘要:format.journal is an unknown function VSCode使用latex有很大的问题!!! 阅读全文
posted @ 2020-12-14 16:12 bH1pJ 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-12-14 14:22 bH1pJ 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-12-14 14:22 bH1pJ 阅读(14) 评论(0) 推荐(0) 编辑
摘要:(1)下载 https://mp.weixin.qq.com/s/xDVg0ChaA5zJFcRzMrvxkQ TeX Live 下载地址 http://mirrors.ustc.edu.cn/CTAN/systems/texlive/Images/ vsco... 阅读全文
posted @ 2020-12-14 14:05 bH1pJ 阅读(32) 评论(0) 推荐(0) 编辑
摘要:(1)下载 https://mp.weixin.qq.com/s/xDVg0ChaA5zJFcRzMrvxkQ TeX Live 下载地址 http://mirrors.ustc.edu.cn/CTAN/systems/texlive/Images/ vsco... 阅读全文
posted @ 2020-12-14 14:05 bH1pJ 阅读(49) 评论(0) 推荐(0) 编辑
摘要:https://www.runoob.com/mysql/mysql-data-types.html 没有string 用的是char(n) 阅读全文
posted @ 2020-12-14 11:39 bH1pJ 阅读(21) 评论(0) 推荐(0) 编辑
摘要:https://www.runoob.com/mysql/mysql-data-types.html 没有string 用的是char(n) 阅读全文
posted @ 2020-12-14 11:39 bH1pJ 阅读(60) 评论(0) 推荐(0) 编辑
摘要:https://www.jb51.net/softjc/556508.html 这个解决方案不错:自己新建一个 阅读全文
posted @ 2020-12-11 14:59 bH1pJ 阅读(33) 评论(0) 推荐(0) 编辑
摘要:https://www.jb51.net/softjc/556508.html 这个解决方案不错:自己新建一个 阅读全文
posted @ 2020-12-11 14:59 bH1pJ 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-12-11 14:46 bH1pJ 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-12-11 14:46 bH1pJ 阅读(54) 评论(0) 推荐(0) 编辑
摘要:↑ 人才 发言 阅读全文
posted @ 2020-12-11 14:36 bH1pJ 阅读(113) 评论(0) 推荐(0) 编辑
摘要:↑ 人才 发言 阅读全文
posted @ 2020-12-11 14:36 bH1pJ 阅读(55) 评论(0) 推荐(0) 编辑
摘要:没找到,坑 阅读全文
posted @ 2020-12-10 10:44 bH1pJ 阅读(31) 评论(0) 推荐(0) 编辑
摘要:没找到,坑 阅读全文
posted @ 2020-12-10 10:44 bH1pJ 阅读(19) 评论(0) 推荐(0) 编辑
摘要:有点麻烦,先留个坑。 阅读全文
posted @ 2020-12-09 15:24 bH1pJ 阅读(28) 评论(0) 推荐(0) 编辑
摘要:有点麻烦,先留个坑。 阅读全文
posted @ 2020-12-09 15:24 bH1pJ 阅读(8) 评论(0) 推荐(0) 编辑
摘要:封装,即隐藏对象的属性和实现细节,仅对外公开接口,控制在程序中属性的读和修改的访问级别;将抽象得到的数据和行为(或功能)相结合,形成一个有机的整体,也就是将数据与操作数据的源代码进行有机的结合,形成“类”,其中数据和函数都是类的成员。 ... 阅读全文
posted @ 2020-12-09 12:35 bH1pJ 阅读(41) 评论(0) 推荐(0) 编辑
摘要:封装,即隐藏对象的属性和实现细节,仅对外公开接口,控制在程序中属性的读和修改的访问级别;将抽象得到的数据和行为(或功能)相结合,形成一个有机的整体,也就是将数据与操作数据的源代码进行有机的结合,形成“类”,其中数据和函数都是类的成员。 ... 阅读全文
posted @ 2020-12-09 12:35 bH1pJ 阅读(46) 评论(0) 推荐(0) 编辑
摘要:虚函数 虚函数 阅读全文
posted @ 2020-12-09 12:14 bH1pJ 阅读(12) 评论(0) 推荐(0) 编辑
摘要:虚函数 虚函数 阅读全文
posted @ 2020-12-09 12:14 bH1pJ 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-12-06 00:49 bH1pJ 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-12-06 00:49 bH1pJ 阅读(7) 评论(0) 推荐(0) 编辑
摘要:node.js是什么? https://developer.ibm.com/zh/articles/os-nodejs/ 阅读全文
posted @ 2020-12-05 22:00 bH1pJ 阅读(10) 评论(0) 推荐(0) 编辑
摘要:node.js是什么? https://developer.ibm.com/zh/articles/os-nodejs/ 阅读全文
posted @ 2020-12-05 22:00 bH1pJ 阅读(13) 评论(0) 推荐(0) 编辑
摘要:一个微信账号只能开发一个微信小程序吗? 不是的,一个微信号可以绑定多个小程序; 但是一个邮箱只能绑定一个小程序 阅读全文
posted @ 2020-12-04 13:43 bH1pJ 阅读(206) 评论(0) 推荐(0) 编辑
摘要:一个微信账号只能开发一个微信小程序吗? 不是的,一个微信号可以绑定多个小程序; 但是一个邮箱只能绑定一个小程序 阅读全文
posted @ 2020-12-04 13:43 bH1pJ 阅读(388) 评论(0) 推荐(0) 编辑
摘要:在wxml中声明一个 测试Button 在wxss中弄个好看点的皮肤 .btn1 { width:80%; margin-top:130rpx; background-color: rgb(106, 0, 95); color: whit... 阅读全文
posted @ 2020-12-03 21:21 bH1pJ 阅读(76) 评论(0) 推荐(0) 编辑
摘要:在wxml中声明一个 测试Button 在wxss中弄个好看点的皮肤 .btn1 { width:80%; margin-top:130rpx; background-color: rgb(106, 0, 95); color: whit... 阅读全文
posted @ 2020-12-03 21:21 bH1pJ 阅读(109) 评论(0) 推荐(0) 编辑
摘要:微信小程序中有没有类似print的函数? 类似于?设置主页的mono? 找到了! console.log("Hello world") 阅读全文
posted @ 2020-12-03 21:19 bH1pJ 阅读(39) 评论(0) 推荐(0) 编辑
摘要:微信小程序中有没有类似print的函数? 类似于?设置主页的mono? 找到了! console.log("Hello world") 阅读全文
posted @ 2020-12-03 21:19 bH1pJ 阅读(47) 评论(0) 推荐(0) 编辑
摘要:resutl = dir([rootpath '/**/*.tif']) 阅读全文
posted @ 2020-12-03 20:41 bH1pJ 阅读(17) 评论(0) 推荐(0) 编辑
摘要:resutl = dir([rootpath '/**/*.tif']) 阅读全文
posted @ 2020-12-03 20:41 bH1pJ 阅读(65) 评论(0) 推荐(0) 编辑
摘要:之前一直用QT,编程的时候,首先用QT designer绘制主界面; 然后,写这些控件背后对应的功能; 现在是小程序了, (1)如何声明一个页面? (2)如何在这个界面上,放一些控件; (3)如何写这些控件对应的函数; (4)如何进行页面间的跳转。 ... 阅读全文
posted @ 2020-12-03 20:02 bH1pJ 阅读(34) 评论(0) 推荐(0) 编辑
摘要:之前一直用QT,编程的时候,首先用QT designer绘制主界面; 然后,写这些控件背后对应的功能; 现在是小程序了, (1)如何声明一个页面? (2)如何在这个界面上,放一些控件; (3)如何写这些控件对应的函数; (4)如何进行页面间的跳转。 ... 阅读全文
posted @ 2020-12-03 20:02 bH1pJ 阅读(29) 评论(0) 推荐(0) 编辑
摘要:Matlab 获取某个文件夹下,指定类型的文件 暂时没找到; 先放个坑吧。之前用Python解决个这种问题。 找到解决方案了: resutl = dir([rootpath '/**/*.tif']); bbb = dir(['D:\Data\... 阅读全文
posted @ 2020-12-03 20:00 bH1pJ 阅读(48) 评论(0) 推荐(0) 编辑
摘要:Matlab 获取某个文件夹下,指定类型的文件 暂时没找到; 先放个坑吧。之前用Python解决个这种问题。 找到解决方案了: resutl = dir([rootpath '/**/*.tif']); bbb = dir(['D:\Data\... 阅读全文
posted @ 2020-12-03 20:00 bH1pJ 阅读(56) 评论(0) 推荐(0) 编辑
摘要:https://developers.weixin.qq.com/community/minihome/doc/00086494b48910320caab1cc35b800 阅读全文
posted @ 2020-12-03 19:47 bH1pJ 阅读(30) 评论(0) 推荐(0) 编辑
摘要:https://developers.weixin.qq.com/community/minihome/doc/00086494b48910320caab1cc35b800 阅读全文
posted @ 2020-12-03 19:47 bH1pJ 阅读(82) 评论(0) 推荐(0) 编辑
摘要:抽象数据类型 阅读全文
posted @ 2020-12-03 15:22 bH1pJ 阅读(45) 评论(0) 推荐(0) 编辑
摘要:抽象数据类型 阅读全文
posted @ 2020-12-03 15:22 bH1pJ 阅读(38) 评论(0) 推荐(0) 编辑
摘要:每一个对象都有属于自己的hash值,这个hash值是区分不同对象的重要标识。 阅读全文
posted @ 2020-12-03 15:09 bH1pJ 阅读(65) 评论(0) 推荐(0) 编辑
摘要:每一个对象都有属于自己的hash值,这个hash值是区分不同对象的重要标识。 阅读全文
posted @ 2020-12-03 15:09 bH1pJ 阅读(53) 评论(0) 推荐(0) 编辑
摘要:在Python中,字典就是哈希表! 阅读全文
posted @ 2020-12-03 15:03 bH1pJ 阅读(15) 评论(0) 推荐(0) 编辑
摘要:在Python中,字典就是哈希表! 阅读全文
posted @ 2020-12-03 15:03 bH1pJ 阅读(26) 评论(0) 推荐(0) 编辑
摘要:Python中的所有东西都是对象。 那什么是迭代器呢? 实现了__next__()方法的对象,就叫做迭代器; 迭代器的优势: (1)迭代器仅仅在迭代到某个元素时才计算该元素,而在这之前或之后元素可以不存在或者被销毁。因此迭代器适合遍历一些数... 阅读全文
posted @ 2020-12-03 14:57 bH1pJ 阅读(36) 评论(0) 推荐(0) 编辑
摘要:Python中的所有东西都是对象。 那什么是迭代器呢? 实现了__next__()方法的对象,就叫做迭代器; 迭代器的优势: (1)迭代器仅仅在迭代到某个元素时才计算该元素,而在这之前或之后元素可以不存在或者被销毁。因此迭代器适合遍历一些数... 阅读全文
posted @ 2020-12-03 14:57 bH1pJ 阅读(27) 评论(0) 推荐(0) 编辑
摘要:PPT,平面线的角度如何调整 这是水平线 阅读全文
posted @ 2020-12-02 18:13 bH1pJ 阅读(215) 评论(0) 推荐(0) 编辑
摘要:PPT,平面线的角度如何调整 这是水平线 阅读全文
posted @ 2020-12-02 18:13 bH1pJ 阅读(173) 评论(0) 推荐(0) 编辑
摘要:如何把google日历添加到桌面吧 阅读全文
posted @ 2020-12-02 14:06 bH1pJ 阅读(67) 评论(0) 推荐(0) 编辑
摘要:如何把google日历添加到桌面吧 阅读全文
posted @ 2020-12-02 14:06 bH1pJ 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-12-02 12:39 bH1pJ 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-12-02 12:39 bH1pJ 阅读(116) 评论(0) 推荐(0) 编辑
摘要:PPT 填充透明度,设计窗格在哪? 设计格式在这里 透明度在这里 阅读全文
posted @ 2020-12-02 12:27 bH1pJ 阅读(25) 评论(0) 推荐(0) 编辑
摘要:PPT 填充透明度,设计窗格在哪? 设计格式在这里 透明度在这里 阅读全文
posted @ 2020-12-02 12:27 bH1pJ 阅读(40) 评论(0) 推荐(0) 编辑
摘要:PPT 2019 的选择窗格在哪? 阅读全文
posted @ 2020-12-02 12:23 bH1pJ 阅读(57) 评论(0) 推荐(0) 编辑
摘要:PPT 2019 的选择窗格在哪? 阅读全文
posted @ 2020-12-02 12:23 bH1pJ 阅读(64) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示