vue filters过滤器 通过list下标返回内容
前提是参数是列表下标是一一对应的。
getuserType(e) {
var list = ['用户', '商户', '管理员', '优选', '企业']
return list[e]
...
yekong
3年前 (2022-01-13)
喜欢
vue filters过滤器使用switch实现判断显示
gettype(e) {
let str = ''
switch (e) {
case 1:
// 代码块
str = '平台托管'
...
yekong
3年前 (2022-01-13)
喜欢
vue开发展开收缩动画效果
运行实例
代码
<template>
<div class="renyuan">
<div class="renyuanuser cur" v-show="...
yekong
3年前 (2022-01-12)
喜欢
这里的图标使用的font-awesome,所以使用前需要先安装font-awesome字体图标组件
移出旧图标
tree 有单独设置图标的方法icon-class ,但是需要设置两个不一样的图标,所以就不用他的方法了。置空就可以了。
icon-class=" &quo...
yekong
3年前 (2022-01-11)
喜欢
安装
npm install font-awesome --save
引用
在main.js中引入
import 'font-awesome/css/font-awesome.min.css';
使用
<i class="fa fa-home fa-lg&qu...
yekong
3年前 (2022-01-11)
喜欢
vue 单屏
<template>
<div class="shipin1">
<div class="shipin1item active"><img src="../...
yekong
3年前 (2022-01-10)
喜欢
运行实例
代码
<template>
<div id="allmap" @mouseover="clearx2" @mouseleave="getmapswitch" class="...
yekong
3年前 (2022-01-09)
喜欢
运行实例
代码
<template>
<div class="bodymap" id="echartmap"></div>
</template>
<script>
i...
yekong
3年前 (2022-01-09)
喜欢
vue项目开发需要百度地图自定义覆盖物,以及覆盖物点击弹窗事件。
运行实例
代码
<template>
<div class="Home">
<baidu-map :center="center&quo...
yekong
3年前 (2022-01-08)
喜欢
vue项目开发使用到了antv/l7地图
项目实例
引入高德地图
<script
type="text/javascript"
src="https://webapi.amap.com/...
yekong
3年前 (2022-01-08)
喜欢