摘要: 多嵌入一层标签 .content { display: flex; height: 200px; } .parent { display: flex; justify-content: center; width: 800px; margin-left: 100px; border: 1px sol 阅读全文
posted @ 2023-06-09 11:47 我要找到我的全世界 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 谷歌禁止声音播放处理方式 1、设置google浏览器,点击地址前面的图标,选择网站设置,找到声音,设置允许,需要用户配合设置 2、使用window.AudioContext,需要自己写代码 接口参考地址:https://developer.mozilla.org/zh-CN/docs/Web/API 阅读全文
posted @ 2023-05-30 15:49 我要找到我的全世界 阅读(186) 评论(0) 推荐(0) 编辑
摘要: var NfcAdapter; var NdefRecord; var NdefMessage; var _getCardNo; export default { initNFC() { if (uni.getSystemInfoSync().platform == 'android') { lis 阅读全文
posted @ 2022-02-08 16:30 我要找到我的全世界 阅读(2109) 评论(0) 推荐(0) 编辑
摘要: <template> <div class="pic-map" @touchmove.stop.prevent="" ref="picMap" @touchstart="touchstart" @touchmove="touchmove" @touchend="touchend"> <div cla 阅读全文
posted @ 2022-02-08 16:17 我要找到我的全世界 阅读(1114) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 1、支持定义模板变量的开头与结尾字符 /// 2、支持自定义模板变量查找正则表达式 /// 3、模板中的变量组成"变量开头_变量名称",如:txt_name,变量名称与class中的字段或属性一致 /// 4、支持定义模板中图片变量开头 /// 5、支持定义模板中 阅读全文
posted @ 2021-11-25 16:44 我要找到我的全世界 阅读(823) 评论(0) 推荐(0) 编辑
摘要: public DBResult BatchInsert<T>(string tableName, List<T> entities) where T : class { if(entities == null || string.IsNullOrEmpty(tableName)) { return 阅读全文
posted @ 2021-11-11 16:40 我要找到我的全世界 阅读(40) 评论(0) 推荐(0) 编辑
摘要: using Newtonsoft.Json.Serialization; using Sfq.WebApi.Models; using System; using System.Collections.Generic; using System.Linq; using System.Web.Http 阅读全文
posted @ 2021-10-14 17:01 我要找到我的全世界 阅读(368) 评论(0) 推荐(0) 编辑
摘要: protected async Task<ResponseResult<(Dictionary<string,string> paths,T value)>> UploadFile<T>() { ResponseResult<(Dictionary<string, string> paths, T 阅读全文
posted @ 2021-10-14 17:00 我要找到我的全世界 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 1.下载vue npm install vue-router 2.创建路由辅助js import Vue from 'vue' import VueRouter from 'vue-router' Vue.use(VueRouter) const router = new VueRouter({ r 阅读全文
posted @ 2021-09-27 15:11 我要找到我的全世界 阅读(69) 评论(0) 推荐(0) 编辑
摘要: using Microsoft.Office.Interop.Word; using NPOI.OpenXmlFormats.Wordprocessing; using NPOI.Util; using NPOI.XWPF.UserModel; using System; using System. 阅读全文
posted @ 2021-07-14 17:21 我要找到我的全世界 阅读(188) 评论(0) 推荐(0) 编辑