03 2021 档案
摘要:absolute 绝对定位 相对于最近已定位父元素 若没有父元素,则相对于html relative 相对定位 相对于其正常位置
阅读全文
摘要:根据我的实践经验,总结出计划制定和执行的三个关键要素分别为:可度量,截止时间,迭代 可度量:任务可度量,且尽可能拆分任务到最小单元(拆的越细越容易实现) 截止时间:给每个任务一个截止时间(拆分的每个细项也要有截止时间),这样会让你很容易专心做事 迭代:有些隐形任务或突发事件导致本次计划的时间不够,可
阅读全文
摘要:合并GridView中某列相同信息的行的方法: 1 /// <summary> 2 /// 合并1、2、3、4、5、6、7列 3 /// </summary> 4 private void gvRender(GridView GridView1) 5 { 6 int i = 0, j = 0; 7
阅读全文
摘要:https://blog.csdn.net/z69183787/article/details/17528743 js函数: 1 <script type="text/javascript"> 2 3 function openwindow(url,name,iWidth,iHeight) 4 {
阅读全文
摘要:父页面js: 1 function doCX() 2 { 3 var k; 4 var s = new Object(); 5 if(window.showModalDialog==undefined){ 6 k=window.open("txl_cx.asp",window,"dialogWidt
阅读全文
摘要:https://jingyan.baidu.com/article/597a06431649fb312b5243d4.html
阅读全文
摘要:合并GridView中某列相同信息的行的方法: 1 /// <summary> 2 /// 合并GridView中某列相同信息的行(单元格) 3 /// </summary> 4 /// <param name="GridView1">GridView</param> 5 /// <param na
阅读全文
摘要:https://www.w3school.com.cn/asp/asp_ajax_database.asp
阅读全文
摘要:https://blog.csdn.net/qq_20565303/article/details/78734592
阅读全文
摘要: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
阅读全文
摘要:https://www.flashbit.site/zh/image-to-base64/
阅读全文
摘要:https://www.cnblogs.com/c546170667/p/11366843.html
阅读全文
摘要:参考网址:https://blog.csdn.net/sllailcp/article/details/78595077 父组件: 1 <template> 2 <div> 3 <el-dialog 4 title="手动登记" 5 :visible.sync="registerVisible" 6
阅读全文
摘要:效果: 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
阅读全文
摘要: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) => {
阅读全文
摘要: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
阅读全文
摘要:前两天做了一个vue+api开发的小功能,简单的不能再简单,但是实际做的过程中却是问题层出不穷。异常郁闷之际,突然顿悟,造成这种现状的核心原因是:基础知识匮乏,基础薄弱! 至此,才终于明白根基的重要性,根基不稳犹如在沙滩上盖高楼,盖的越高,塌陷的越厉害!谨记谨记
阅读全文
摘要: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
阅读全文
摘要: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
阅读全文
摘要:前端js文件查询代码: 1 //获取系统所有api 2 export const GetAppDocBYParams = (param) => { 3 return http.get(urls.GetAppDocBYParams,param) 4 } vue代码: <template> <div c
阅读全文
摘要:创建对象ViewModel: 1 using System; 2 3 namespace DevOps.Api.ViewModel 4 { 5 public class AppDocList 6 { 7 /// <summary> 8 /// 应用ID 9 /// </summary> 10 pub
阅读全文
摘要:枚举类: 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Linq; 5 using System.Text; 6 7 namespace DevOps
阅读全文
摘要: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
阅读全文
摘要:参考网址:https://blog.csdn.net/qq_35938548/article/details/78325558?utm_term=c#%E6%95%B0%E7%BB%84%E4%B8%AD%E6%8F%92%E5%85%A5%E6%95%B0%E6%8D%AE&utm_medium=
阅读全文
摘要: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
阅读全文

浙公网安备 33010602011771号