随笔分类 -  uniapp

uniapp商城购物商品列表展示
摘要:父组件代码: <template> <view class="boxPage"> <scroll-view class="contentBox" :scroll-y="true" :scroll-top="scrollTopPage" :refresher-enabled="true" :refre 阅读全文
posted @ 2023-10-07 16:37 Nymph_Zhu 阅读(703) 评论(0) 推荐(0)
uniapp数组对象随机抽取3个对象
摘要:<template> <view class="boxPage"> <view class="imgList"> <view v-for="(item, index) in randomDataMarketList" :key="index" class="imgBox"> <image :src= 阅读全文
posted @ 2023-04-17 10:20 Nymph_Zhu 阅读(193) 评论(0) 推荐(0)
uniapp富文本内容展示处理
摘要:<template> <rich-text :nodes="content" style="width: 100%;word-wrap: break-word;"></rich-text> </template> <script> import { queryProductDetail } from 阅读全文
posted @ 2023-04-11 13:41 Nymph_Zhu 阅读(870) 评论(0) 推荐(0)
uniapp中使用echarts点击图例与tooltips无反应
摘要:只需要在项目main.js文件中加上 window.wx = {} // echarts中tooltips点击无反应与点击图例无反应解决方法 即可 阅读全文
posted @ 2022-08-03 09:40 Nymph_Zhu 阅读(1457) 评论(0) 推荐(0)
uniapp中使用echarts关系图
摘要:首先看一下页面效果: <template> <view class="page"> <!-- 导航栏 --> <b-nav-bar class="b-nav-bar"> <template slot="left"> <view @click="goBack" class="iconfont icon 阅读全文
posted @ 2022-07-26 16:31 Nymph_Zhu 阅读(1084) 评论(0) 推荐(0)
uniapp中使用AntV F6 + table表格插件使用
摘要:首先看页面效果: AntV官网下载F6文件到项目中与uViewUI插件 <template> <view class="page"> <!-- 导航栏 --> <b-nav-bar class="title"> <template slot="left"> <view @click="nativeB 阅读全文
posted @ 2022-06-24 11:23 Nymph_Zhu 阅读(2387) 评论(0) 推荐(0)
uniapp+uView搜索列表变颜色
摘要:首先看一下页面效果: <template> <view class="page"> <b-nav-bar title="公司多维图" class="title"> <template slot="left"> <view @click="goBack" class="iconfont icon-zu 阅读全文
posted @ 2022-06-22 10:15 Nymph_Zhu 阅读(1431) 评论(0) 推荐(0)
uniapp+uView单选框多选框使用与模糊搜索
摘要:<template> <!-- 类别筛选组件 --> <view class="timeInput">{{filterArea}} <u-icon name="arrow-up-fill" size="12" :color="areaPopup == true ? '#fff' : '#999'" 阅读全文
posted @ 2022-06-22 09:37 Nymph_Zhu 阅读(7045) 评论(0) 推荐(0)
uniapp纯js手写日历筛选年,月,日,季度,周
摘要:首先看页面效果: 父组件使用 <template> <!-- 时间筛选组件 --> <timeFilter :startTime1="startTime" :endTime1="endTime" :endTimeText1="endTimeText" :startTimeText1="startTi 阅读全文
posted @ 2022-06-22 08:56 Nymph_Zhu 阅读(2321) 评论(0) 推荐(0)