摘要: 视图层 <view bindtap="{{!buttonClicked?‘btnShowConfirm’:’’}}" wx:if="{{btnShow}}" class=“pj-sbuimt” style=“”>提交评价</view> **逻辑层 js ** const cfclick = requ 阅读全文
posted @ 2021-03-30 09:15 宋军涛 阅读(514) 评论(0) 推荐(0) 编辑
摘要: 1.上传代码,写版本号,上传完之后登陆小程序后台就可以在开发版本中看到。 2.微信公众后台,提交审核。 点击提交审核,扫描二维码: 3.审核完成,提醒通知。 阅读全文
posted @ 2021-03-29 21:44 宋军涛 阅读(816) 评论(0) 推荐(0) 编辑
摘要: Button背景透明: Button.BackColor=Color.TransParent; Button.FlatStyle=FlatStyle.Flat; Button指定image图片: bm = new Bitmap(fbImage); //fbImage图片路径 this.Backgro 阅读全文
posted @ 2021-03-26 13:12 宋军涛 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 初始化本地仓库:git init 添加远程仓库路径:git remote add origin https://git.oschina.net/name/package.git 拉取远程仓库到本地:git clone https://git.oschina.net/name/package.git 阅读全文
posted @ 2021-03-26 13:00 宋军涛 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 1.设置日期只显示日期,不显示时分秒。 2.grouppanel属性 3.supertabcontrol: 4.可能是枚举的值不对: PictureBox的ImageLocation要显示指定 显示小数位数 5.列冻结 6.DoubleInput设置小数位数。 F1代表1位小数,F2代表2位。。。 阅读全文
posted @ 2021-03-25 22:11 宋军涛 阅读(104) 评论(0) 推荐(0) 编辑
摘要: axios({ method: 'get', url: url, responseType: 'blob' }).then((res) => { console.log(res) if (!res) { return } let blob = new Blob([res.data], { type: 阅读全文
posted @ 2021-03-25 21:58 宋军涛 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 1.购买通用域名证书就可以 。 2.域名解析设置多个子域名,ECS服务器多个站点绑定子域名就可以。 ​ ​ 3.IIS下设置 ​ 阅读全文
posted @ 2021-03-24 18:26 宋军涛 阅读(396) 评论(0) 推荐(0) 编辑
摘要: 1.行内样式写法,简单举例 <a href="#" style="display:block; height:100px; width:100px">aaa</a> 2.外联样式写法 <style type="text/css"> <!-- .a {display:block; height:100 阅读全文
posted @ 2021-03-23 22:29 宋军涛 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 1.打开网页加载另外一个网站: <html> <body onLoad="window.location.href='http://www.baidu.com';"> </body> </html> 2.设置滚动条位置 document.getElementById('id').scrollTop= 阅读全文
posted @ 2021-03-23 22:22 宋军涛 阅读(18) 评论(0) 推荐(0) 编辑
摘要: vue-element-admin 是一个后台的集成方案,它囊括了很多的功能和组件,并不适合作为基础模板来进行二次开发。 vue-admin-template 则是一个后台的基础模板脚手架,适合在它的基础上进行二次开发。 阅读全文
posted @ 2021-03-15 22:21 宋军涛 阅读(563) 评论(0) 推荐(0) 编辑