- 博客(16)
- 收藏
- 关注
原创 2021-07-21
小程序API接口chooseLocation获取省市区 uni.chooseLocation({ success: function(res){ var regex = /^(北京市|天津市|重庆市|上海市|香港特别行政区|澳门特别行政区)/; var REGION_PROVINCE=[]; var addressBean = { REGION_PROVINCE:nu
2021-07-21 16:34:16
103
原创 2021-07-19
*## vue 文字超出隐藏,点击显示全部 1.加入css样式* width: 200px; overflow :hidden; text-overflow: ellipsis;Ï white-space: normal 2.main.js Vue.directive('showTips', { // el {element} 当前元素 componentUpdated (el) { const curStyle = window.getComputedStyle(el, '') // 获取
2021-07-19 18:13:29
199
原创 2021-07-16
如何判断对象为空? var data = {}; var b = JSON.stringify(res.data.data) == "{}"; alert(b); //true
2021-07-16 17:21:20
68
原创 2021-07-09
获取el-element table的index <el-table-column prop="cnt" align="center" label="单数" width="120"> <template slot-scope="scope"> <el-input @blur="handleFilter(scope.row,scope.$index)" v-model="scope.row.cnt" /> </template> <
2021-07-09 21:08:01
82
原创 2021-07-06
地图偏移量(放大缩小点位移动问题) 解决方法1: achor使用api默认值(‘top-left’) 如果icon大小为(10, 20),我们需要设置offset的值为 new AMap.Pixel(-5,-20) 解决方法n: achor使用 ‘bottom-center’ 如果icon大小为(10, 20),我们需要设置offset的值为 new AMap.Pixel(0,0) /* 渲染官网底部地图 */ renderLocationMap() { var that = this
2021-07-06 17:41:51
82
原创 2021-05-27
uniapp隐藏scroll-view的滚动条 ::-webkit-scrollbar { width: 0; height: 0; color: transparent; }
2021-05-27 10:37:09
68
原创 2021-05-13
支付宝小程序 获取用户信息 // 微信授权登录 getAuthCode: function(e) { var that = this my.getAuthCode({ scopes: ['auth_user'], // 主动授权:auth_user,静默授权:auth_base。或者其它scope。如需同时获取用户多项授权,可在 scopes 中传入多个 scope 值。 success: (res) => { console.log(r
2021-05-13 09:58:03
149
原创 2021-05-13
uniapp <view @tap="openLocation(peripheryinfo.latitude,peripheryinfo.longitude,peripheryinfo.address)"> 打开导航 </view> openLocation(latitude, longitude, village) { uni.getLocation({ type: 'gcj02', //返回可以用于uni.openLocation的经纬度 succe
2021-05-13 09:52:53
75
原创 2021-05-13
uniapp跳转传参(对象) //index.vue del(item){ console.log(item.id) uni.navigateTo({ url:"./condel?item="+JSON.stringify(item) }) }, //condel.vue onLoad(option) { console.log(JSON.parse(option.item)) var aaa = JSON.parse(option.item) }
2021-05-13 09:40:09
75
1
原创 Highcharts3D环形图
***Highcharts3D环形图***小知识: //渐变 Highcharts.getOptions().colors = Highcharts.map(Highcharts.getOptions().colors, function (color) { return { radialGradient: { cx: 0.1, cy: 0.3, r: 0.3}, stops: [ [0, color], [1, Highcharts.Color(color).brighten(-0.1).get(‘rgb
2021-05-06 17:10:36
992
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人