Vue项目实现页面免密登录
摘要:步骤1 在router/index.js中创建router实例 import Vue from 'vue' import Router from 'vue-router' Vue.use(Router) // 公共路由 export const constantRoutes = [...] // 防
阅读全文
ECharts绘制圆环图
摘要:效果如上 外环代码: series: [ { name: "产品金额", type: "pie", radius: ["75%", "85%"], center: props.center, padAngle: 5, // 饼图扇形之间的间距 avoidLabelOverlap: false, it
阅读全文
el-progress进度条颜色渐变
摘要:效果图: 代码: <el-progress stroke-width="4" type="line" :percentage="91.23" class="custom-progress" color="transparent" > <template #default="{ percentage
阅读全文
element-ui table表头合并和单元格合并
摘要:效果图(实际效果图内含隐私信息,故只展现excel表,与效果图样式一致): 代码: <el-table v-if="isShow" :data="tableData" stripe size="small" row-key="index" height="1000" :header-cell-sty
阅读全文