摘要: 设置表格占用宽度比例并自适应页面宽度 /** * 表格自适应 */ function tableAutoFitWindow() { var count = ActiveDocument.Tables.Count; for(i = 1; i <= count; i++) { var table = A 阅读全文
posted @ 2022-11-17 13:44 huanruke 阅读(1537) 评论(0) 推荐(0)
摘要: import pymysql class DataDict(object): def __init__(self, db): self.host = '127.0.0.1' self.port = 3306 self.user = 'root' self.password = 'root' self 阅读全文
posted @ 2022-11-17 13:36 huanruke 阅读(713) 评论(0) 推荐(0)