摘要: 原文官方地址:https://bhuh12.github.io/vue-router-tab/zh/guide/essentials/operate.html 页签操作 打开/切换页签 RouterTab 通过响应路由变化来新增或切换页签,您可以使用以下两种方式。 1. Vue Router 原生方 阅读全文
posted @ 2021-12-02 15:09 龙丶谈笑风声 阅读(845) 评论(0) 推荐(0)
摘要: 原文官方地址:https://bhuh12.github.io/vue-router-tab/zh/guide/ 为了防止网站打不开,在这里记录一下使用方法。 安装:yarn add vue-router-tab or npm i vue-router-tab -S CDN: <!-- 引入样式 - 阅读全文
posted @ 2021-12-02 15:01 龙丶谈笑风声 阅读(289) 评论(0) 推荐(0)
摘要: public class BlowfishCBC : BlowfishECB { // here we hold the CBC IV long m_lCBCIV; public BlowfishCBC() { } /** * get the current CBC IV (for cipher r 阅读全文
posted @ 2021-10-27 11:13 龙丶谈笑风声 阅读(160) 评论(0) 推荐(0)
摘要: public class BlowfishECB { /** maximum possible key length */ public readonly static int MAXKEYLENGTH = 56; /** block size of this cipher (in bytes) * 阅读全文
posted @ 2021-10-27 11:13 龙丶谈笑风声 阅读(68) 评论(0) 推荐(0)
摘要: public class Blowfish { private BlowfishCBC m_bfish; private static Random m_rndGen = new Random(); private byte[] SHA1keys(string key) { byte[] keyAr 阅读全文
posted @ 2021-10-27 11:12 龙丶谈笑风声 阅读(254) 评论(0) 推荐(0)
摘要: /// <summary> /// XML操作类 /// </summary> public class XmlHelper { #region 变量 protected string strXmlFile; protected XmlDocument objXmlDoc = new XmlDocu 阅读全文
posted @ 2021-10-22 10:30 龙丶谈笑风声 阅读(52) 评论(0) 推荐(0)
摘要: /// <summary> /// 这个类提供了一些实用的方法来转换XML和对象。 /// </summary> public sealed class XmlConvertor { private XmlConvertor() { } /// <summary> /// 将XML字符串转换到指定的 阅读全文
posted @ 2021-10-22 10:29 龙丶谈笑风声 阅读(297) 评论(0) 推荐(0)
摘要: public class WordCombineUtil { /// <summary> /// com对象常用的参数 /// </summary> public static object Miss_Object = System.Reflection.Missing.Value; /// <su 阅读全文
posted @ 2021-10-22 10:28 龙丶谈笑风声 阅读(93) 评论(0) 推荐(0)
摘要: /// <summary> /// 常用的文件操作辅助类FileUtil /// </summary> public class FileUtil { #region Stream、byte[] 和 文件之间的转换 /// <summary> /// 将流读取到缓冲区中 /// </summary> 阅读全文
posted @ 2021-10-22 09:34 龙丶谈笑风声 阅读(86) 评论(0) 推荐(0)
摘要: /// <summary> /// 利用VBA对象,导出DataView到一个Excel文档中的Excel辅助类 /// </summary> public class Export2Excel { #region InstanceFields //实例字段 public delegate void 阅读全文
posted @ 2021-10-22 09:33 龙丶谈笑风声 阅读(161) 评论(0) 推荐(0)