2022年9月6日
摘要: 报错如图所示 解决办法: 1. 以管理员身份运行vscode; 2. 执行:get-ExecutionPolicy,显示Restricted,表示状态是禁止的; 3. 执行:set-ExecutionPolicy RemoteSigned; (若此命令执行失败的话,则执行这条: Set-Execut 阅读全文
posted @ 2022-09-06 17:39 Nymph_Zhu 阅读(119) 评论(0) 推荐(0) 编辑
  2022年8月16日
摘要: 首先看页面效果: <template> <view class="page"> <view class="page-bd"> <view class="page-container"> <view class="xzje"> <view class="bt">请选择充值金额</view> <view 阅读全文
posted @ 2022-08-16 09:09 Nymph_Zhu 阅读(546) 评论(0) 推荐(0) 编辑
  2022年8月3日
摘要: 只需要在项目main.js文件中加上 window.wx = {} // echarts中tooltips点击无反应与点击图例无反应解决方法 即可 阅读全文
posted @ 2022-08-03 09:40 Nymph_Zhu 阅读(1442) 评论(0) 推荐(0) 编辑
  2022年7月26日
摘要: 首先看一下页面效果: <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 阅读(1032) 评论(0) 推荐(0) 编辑
  2022年6月24日
摘要: 首先看页面效果: 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 阅读(2331) 评论(0) 推荐(0) 编辑
  2022年6月22日
摘要: 首先看一下页面效果: <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 阅读(1372) 评论(0) 推荐(0) 编辑
摘要: <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 阅读(6655) 评论(0) 推荐(0) 编辑
摘要: 首先看页面效果: 父组件使用 <template> <!-- 时间筛选组件 --> <timeFilter :startTime1="startTime" :endTime1="endTime" :endTimeText1="endTimeText" :startTimeText1="startTi 阅读全文
posted @ 2022-06-22 08:56 Nymph_Zhu 阅读(2236) 评论(0) 推荐(0) 编辑
  2022年4月26日
摘要: // 汉字检测 export function validChinese(value) { return /^([\u4e00-\u9fa5]{0,}$)/.test(value) } // 有1~3位小数的正实数 export function validNumber(value) { retur 阅读全文
posted @ 2022-04-26 10:22 Nymph_Zhu 阅读(658) 评论(0) 推荐(0) 编辑
摘要: <template> <el-form :ref="formName" :model="ruleForm" :rules="rules" label-width="140px" label-position="top" class="demo-ruleForm dialog-from-box" > 阅读全文
posted @ 2022-04-26 10:19 Nymph_Zhu 阅读(1008) 评论(0) 推荐(0) 编辑