kindring 3 роки тому
батько
коміт
a263b522d0
5 змінених файлів з 55 додано та 1 видалено
  1. 2 0
      excel/快速导出.md
  2. 9 0
      js/ajax.js
  3. 25 0
      js/date.js
  4. 18 0
      js/urlControl.js
  5. 1 1
      js/比对.js

+ 2 - 0
excel/快速导出.md

@@ -0,0 +1,2 @@
+# excel操作
+## 快速筛选

+ 9 - 0
js/ajax.js

@@ -0,0 +1,9 @@
+/*
+ * @Description: ajax简单封装
+ * @Autor: kindring
+ * @Date: 2021-10-13 10:35:17
+ * @LastEditors: kindring
+ * @LastEditTime: 2021-10-13 10:35:17
+ * @LastDescript: 
+ */
+let

+ 25 - 0
js/date.js

@@ -0,0 +1,25 @@
+/*
+ * @Description: 时间数据格式
+ * @Autor: kindring
+ * @Date: 2021-10-14 18:53:00
+ * @LastEditors: kindring
+ * @LastEditTime: 2021-10-14 19:08:37
+ * @LastDescript: 
+ */
+function dateFormat(date, format = 'YYYY-MM-DD HH:mm:ss') {
+    const config = {
+        YYYY: date.getFullYear(),
+        MM: ('0' + (date.getMonth() + 1)).substr(-2, 2), //getMonth() 方法根据本地时间返回指定日期的月份(从 0 到 11)
+        DD: ('0' + date.getDate()).substr(-2, 2),
+        HH: ('0' + date.getHours()).substr(-2, 2),
+        mm: ('0' + date.getMinutes()).substr(-2, 2),
+        ss: ('0' + date.getSeconds()).substr(-2, 2),
+    }
+    console.log(config);
+    for (const key in config) {
+        format = format.replace(key, config[key])
+    }
+    return format
+}
+
+console.log(dateFormat(new Date()));

+ 18 - 0
js/urlControl.js

@@ -0,0 +1,18 @@
+/*
+ * @Description: url操作相关的js
+ * @Autor: kindring
+ * @Date: 2021-10-15 11:59:15
+ * @LastEditors: kindring
+ * @LastEditTime: 2021-10-15 12:03:57
+ * @LastDescript: 
+ */
+
+
+function getUrlParams(str) {
+    return str.split('&').reduce((acc, current) => {
+        current = current.split('=')
+        acc[current[0]] = current[1]
+        return acc
+    }, {})
+}
+console.log(getUrlParams('imei=1234&id=5'));

+ 1 - 1
js/比对.js

@@ -3,7 +3,7 @@
  * @Autor: kindring
  * @Date: 2021-09-30 10:36:44
  * @LastEditors: kindring
- * @LastEditTime: 2021-10-12 14:12:10
+ * @LastEditTime: 2021-10-15 17:32:22
  * @LastDescript: 
  */