上一页 1 2 3 4 5 6 7 8 ··· 14 下一页
摘要: 一。实现如下效果图 二。代码如下 /deep/ .el-input.el-input--suffix { // 2.修改背景颜色、字体颜色、边框、宽高 .el-input__inner { background: #4C78FF !important; border: 1px solid #4C78 阅读全文
posted @ 2022-12-23 10:31 IT小姐姐 阅读(1418) 评论(0) 推荐(0) 编辑
摘要: var colors =["#73C0DE","#EE6666","#FAC858","#91CC75"]; var dataVal = [120, 200, 150, 80] var option = { xAxis: { type: 'value', // 设置X轴为值轴 splitLine: 阅读全文
posted @ 2022-12-23 10:03 IT小姐姐 阅读(1694) 评论(0) 推荐(0) 编辑
摘要: series: [{ type: 'bar', name: '起飞', barWidth: '20px', //柱状图的宽度 itemStyle: { normal: { //显示渐变色颜色 color: new echarts.graphic.LinearGradient(0, 0, 0, 1, 阅读全文
posted @ 2022-12-22 09:36 IT小姐姐 阅读(664) 评论(0) 推荐(0) 编辑
摘要: 一。components文件下引入 barCharts.vue文件 <template> <div :class="className" :style="{height:height,width:width}" /> </template> <script> import * as echarts 阅读全文
posted @ 2022-12-21 08:44 IT小姐姐 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 一。components文件下新建 lineCharts.vue <template> <div :class="className" :style="{ height: height, width: width }" /> </template> <script> import * as echa 阅读全文
posted @ 2022-12-21 08:39 IT小姐姐 阅读(393) 评论(0) 推荐(0) 编辑
摘要: 一。在components文件中新建 弹框组件 <template> <div> <el-dialog title="提示" :visible.sync="dialogVisible" width="30%" @close="handleClose"> <span>这是一段信息</span> <sp 阅读全文
posted @ 2022-12-03 19:51 IT小姐姐 阅读(1025) 评论(0) 推荐(0) 编辑
摘要: 根据要求展示下列详细地址情况: 后端返回的数据: 具体实现步骤: { label: "详细地址", prop: "buildingName", display: false, width: 130, formatter:(val,value,label)=>{ if(val.buildingName 阅读全文
posted @ 2022-11-22 08:20 IT小姐姐 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 一。根据需要点击选择时间日期,效果如下图: (1)新建一个dateTimePicker.js文件 function withData(param){ return param < 10 ? '0' + param : '' + param; } function getLoopArray(start 阅读全文
posted @ 2022-11-18 15:38 IT小姐姐 阅读(2605) 评论(0) 推荐(0) 编辑
摘要: 根据要求:详情页返回列表页时,要刷新列表页的数据,操作如下 @click="goBack" goBack{ let pages = getCurrentPages(); // 当前页面 let beforePage = pages[pages.length - 2]; // 上一页 uni.navi 阅读全文
posted @ 2022-11-04 11:57 IT小姐姐 阅读(2080) 评论(0) 推荐(0) 编辑
摘要: <rich-text :nodes="data.content"></rich-text> 阅读全文
posted @ 2022-11-02 18:50 IT小姐姐 阅读(180) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 14 下一页