legend横向
legend: {
orient: 'horizontal',
left: 'left',
},
legend纵向
legend: {
orient: 'ver...
yekong
3年前 (2021-08-03)
喜欢
下载组件
链接:下载地址 提取码: 1g1h
html
<echarts :option="option2" style="height: 300px;" @click="echartsClick">&l...
yekong
3年前 (2021-08-03)
喜欢
html
<div class="quanping" @click="quanping">全屏</div>
js
<script>
export default {
components: {},
...
yekong
3年前 (2021-08-03)
喜欢
在做Hbuilder的移动APP项目时,遇到屏幕旋转的问题,因此查了下关于屏幕旋转的资料。
在html5+ 的api中有个锁定屏幕方向的方法是 plus.screen.lockOrientation 可以帮助我们解决屏幕旋转问题。
说明
锁定屏幕方向后屏幕只能按锁定的屏幕方向显示...
yekong
3年前 (2021-08-01)
喜欢
现象
Alfred可以查看剪贴板,但是选择内容之后,不会自动粘贴
可选操作
在Alfred的配置中设置自动粘贴
配置权限
...
yekong
3年前 (2021-08-01)
喜欢
启动app.js应用程序
pm2 start app.js
模式启动4个app.js的应用实例
pm2 start app.js -i 4
启动应用程序并命名为 "api"
pm2 start app.js --name="api"
...
yekong
3年前 (2021-07-28)
喜欢
微信小程序开启调试模式
uni.setEnableDebug({
enableDebug: true
})
微信小程序关闭调试模式
uni.setEnableDebug({
enableDebug: false
})
...
yekong
3年前 (2021-07-28)
喜欢
去掉header信息就好了
header: {
token: '',
//'Content-Type': 'multipart/form-data'
...
yekong
3年前 (2021-07-28)
喜欢
import 'tinymce/icons/default/icons.min.js'
添加上面这段话即可解决
...
yekong
3年前 (2021-07-26)
喜欢
moment().daysInMonth();
...
yekong
3年前 (2021-07-26)
喜欢