随笔分类 -  知识点总结

记录工作中学到的知识点
摘要:using System; using System.Drawing; using System.IO; using System.Windows.Forms; namespace WindowsFormsApp1 { public partial class Form3 : Form { publ 阅读全文
posted @ 2021-06-10 17:39 小小枝子 阅读(845) 评论(0) 推荐(0)
摘要:<% '动态加载节日弹窗 dim rsimage,image,displayDate set rsimage=server.CreateObject("ADODB.recordset") image= "" ssql1 = "select image,usingdate from OA_IMAGE 阅读全文
posted @ 2021-06-10 11:46 小小枝子 阅读(153) 评论(0) 推荐(0)
摘要:解决方案:npm install node-sass --save 重新装下node-sass即可 阅读全文
posted @ 2021-04-02 15:02 小小枝子 阅读(4088) 评论(0) 推荐(0)
摘要:absolute 绝对定位 相对于最近已定位父元素 若没有父元素,则相对于html relative 相对定位 相对于其正常位置 阅读全文
posted @ 2021-03-26 16:41 小小枝子 阅读(51) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/z69183787/article/details/17528743 js函数: 1 <script type="text/javascript"> 2 3 function openwindow(url,name,iWidth,iHeight) 4 { 阅读全文
posted @ 2021-03-23 17:24 小小枝子 阅读(270) 评论(0) 推荐(0)
摘要:https://jingyan.baidu.com/article/597a06431649fb312b5243d4.html 阅读全文
posted @ 2021-03-23 09:45 小小枝子 阅读(22) 评论(0) 推荐(0)
摘要:asp代码: 1 <link rel="stylesheet" type="text/css" href="PopupWindow/modalBox.css"> 2 3 4 <% 5 '动态加载节日弹窗 6 dim rsimage,image,displayDate 7 set rsimage=se 阅读全文
posted @ 2021-03-20 17:05 小小枝子 阅读(133) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/c546170667/p/11366843.html 阅读全文
posted @ 2021-03-16 17:32 小小枝子 阅读(114) 评论(0) 推荐(0)
摘要:参考网址:https://blog.csdn.net/sllailcp/article/details/78595077 父组件: 1 <template> 2 <div> 3 <el-dialog 4 title="手动登记" 5 :visible.sync="registerVisible" 6 阅读全文
posted @ 2021-03-16 15:56 小小枝子 阅读(186) 评论(0) 推荐(0)
摘要:效果: vue代码: 1 created() { 2 if (this.$route.query.app_id) { 3 this.app_id = this.$route.query.app_id; 4 } 5 this.GetSettings(); 6 this.GetByParams(); 7 阅读全文
posted @ 2021-03-13 16:58 小小枝子 阅读(1254) 评论(0) 推荐(0)
摘要:1 Init() { 2 GetCUseTItems(this.type).then((res) => { 3 if (res.code == 1) { 4 res.data = JSON.parse(res.data.toString()); 5 res.data.forEach((t) => { 阅读全文
posted @ 2021-03-13 11:40 小小枝子 阅读(525) 评论(0) 推荐(0)
摘要:vue代码: 1 <template> 2 <div> 3 <div class="main"> 4 <ul> 5 <li 6 v-for="(item, index) in list" 7 :key="index" 8 :class="{ new: item.new }" 9 @click="Op 阅读全文
posted @ 2021-03-13 11:26 小小枝子 阅读(1074) 评论(0) 推荐(0)
摘要:1 GetSettings() { 2 GetSettings(this.app_id).then((res) => { 3 if (res.code == 1) { 4 this.docType = JSON.parse(res.data[0].value); 5 console.log(this 阅读全文
posted @ 2021-03-09 17:21 小小枝子 阅读(2882) 评论(0) 推荐(1)
摘要:class test:IEquatable<test> { public int aa { get; set; } public string bb { get; set; } public bool cc { get; set; } public string dd; public test(st 阅读全文
posted @ 2021-03-09 17:20 小小枝子 阅读(405) 评论(0) 推荐(0)
摘要:前端js文件查询代码: 1 //获取系统所有api 2 export const GetAppDocBYParams = (param) => { 3 return http.get(urls.GetAppDocBYParams,param) 4 } vue代码: <template> <div c 阅读全文
posted @ 2021-03-09 16:37 小小枝子 阅读(1371) 评论(0) 推荐(0)
摘要:创建对象ViewModel: 1 using System; 2 3 namespace DevOps.Api.ViewModel 4 { 5 public class AppDocList 6 { 7 /// <summary> 8 /// 应用ID 9 /// </summary> 10 pub 阅读全文
posted @ 2021-03-09 16:31 小小枝子 阅读(1234) 评论(0) 推荐(0)
摘要:枚举类: 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Linq; 5 using System.Text; 6 7 namespace DevOps 阅读全文
posted @ 2021-03-09 16:22 小小枝子 阅读(1310) 评论(0) 推荐(0)
摘要:vue代码: 1 <template> 2 <div class="div-container"> 3 <div class="div-left"> 4 <div class="div_left_top">分类</div> 5 <div class="div-span"> 6 <div 7 :cla 阅读全文
posted @ 2021-03-06 15:01 小小枝子 阅读(1528) 评论(0) 推荐(0)
摘要:cs代码: public List<string> Get_emp_no() { List<string> emp_no_str = new List<string>(); string str = "select * from staff_dict where emp_no='" + Sessio 阅读全文
posted @ 2021-03-03 17:29 小小枝子 阅读(4924) 评论(0) 推荐(0)
摘要:aspx页面: 1 <div style="OVERFLOW-Y:scroll; HEIGHT:1000px"> 2 <asp:CheckBoxList ID="RBL_List" runat="server" RepeatColumns="<%#GetColumns()%>" RepeatDire 阅读全文
posted @ 2021-02-25 11:55 小小枝子 阅读(123) 评论(0) 推荐(0)