<scroll-view :style="'height:'+windowHeight+'px'" scroll-y="true" class="scroll-Y" @scrolltolower="get...
yekong
3年前 (2022-02-06)
喜欢
uniapp 开发时,需要用到全局变量.
store/index.js
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
const store = new Vuex.Store({
state: {
i...
yekong
3年前 (2022-02-05)
喜欢
增加一个packages目录然后在pages.json内添加分包内容
{
"pages": [{
"path": "pages/home/home",
"style": {
&quo...
yekong
3年前 (2022-02-04)
喜欢
uniapp 微信小程序代码压缩minified
"setting": {
"urlCheck": false,
"minified": true
},
"mp-weixin": ...
yekong
3年前 (2022-02-03)
喜欢
腾讯im官方文档
腾讯im官方文档
根据文档说明,我们可以看到IM的uniapp版本 这里我们选择国内的gitee地址进行查看
gitee地址
gitee地址
按照readme的说明文档进行相关操作。注册账号,然后下载代码安装依赖。
# 命令行执行
git clone http...
yekong
3年前 (2022-02-02)
喜欢
computed: {
remark: function() {
var msg = this.item.remark.replace(/<\/?[^>]*>/g, ''); //去除HTML Tag
msg = msg.replace(/...
yekong
3年前 (2022-01-31)
喜欢
<template>
<div class="avatar">
<u--image width="64rpx" height="64rpx" :src="configs.f...
yekong
3年前 (2022-01-31)
喜欢
uniapp vue 过滤内容显示组件
/**
* @Author: 858834013@qq.com
* @Name: userType
* @Date: 2022年01月31日
* @Desc: 根据类型返回内容
*/
<template>
<div>...
yekong
3年前 (2022-01-31)
喜欢
uniapp 开发时,发现使用了u-navbar 再在下面使用吸顶u-sticky 会出现重贴的情况
可以调整一下,将想要吸顶的地方和u-navbar放在一块
调整前
<u-navbar leftText=" " leftIconColor="...
yekong
3年前 (2022-01-30)
喜欢
uniapp 开发自定义确认弹窗
<template>
<div>
<div @click="show=true">
<slot></slot>
</div>
<...
yekong
3年前 (2022-01-29)
喜欢