⬆ chore: version

This commit is contained in:
zhideyiman 2023-08-10 18:07:14 +08:00
parent afe1d27ea7
commit d1bee635ea
31 changed files with 114 additions and 313 deletions

View File

@ -4,7 +4,7 @@
*/
module.exports = {
printWidth: 100,
printWidth: 130,
tabWidth: 2,
useTabs: false,
semi: false,

View File

@ -85,8 +85,7 @@
},
defaultSelectedKeys: [], //
currentNodeKey: this.selectedKey,
selectValue:
this.selectType == 'multiple' ? this.selectedValue.split(',') : this.selectedValue, //label
selectValue: this.selectType == 'multiple' ? this.selectedValue.split(',') : this.selectedValue, //label
selectKey: this.selectType == 'multiple' ? this.selectedKey.split(',') : this.selectedKey, //value
}
},

View File

@ -12,13 +12,7 @@
{{ username }}
</div>
<div class="social-icons">
<a
v-for="(item, index) in iconArray"
:key="index"
class="social-icon"
:href="item.url"
target="_blank"
>
<a v-for="(item, index) in iconArray" :key="index" class="social-icon" :href="item.url" target="_blank">
<vab-icon :icon="['fas', item.icon]" />
</a>
</div>

View File

@ -43,22 +43,12 @@
</el-dialog>
</el-upload>
</div>
<div
slot="footer"
class="dialog-footer"
style="position: relative; padding-right: 15px; text-align: right"
>
<div slot="footer" class="dialog-footer" style="position: relative; padding-right: 15px; text-align: right">
<div v-if="show" style="position: absolute; top: 10px; left: 15px; color: #999">
正在上传中... 当前上传成功数:{{ imgSuccessNum }} 当前上传失败数:{{ imgErrorNum }}
</div>
<el-button type="primary" @click="handleClose">关闭</el-button>
<el-button
:loading="loading"
size="small"
style="margin-left: 10px"
type="success"
@click="submitUpload"
>
<el-button :loading="loading" size="small" style="margin-left: 10px" type="success" @click="submitUpload">
开始上传
</el-button>
</div>
@ -153,10 +143,7 @@
this.imgNum = this.imgNum + 1
this.imgErrorNum = this.imgErrorNum + 1
this.$baseMessage(
`文件[${file.raw.name}]上传失败,文件大小为${this.$baseLodash.round(
file.raw.size / 1024,
0
)}KB`,
`文件[${file.raw.name}]上传失败,文件大小为${this.$baseLodash.round(file.raw.size / 1024, 0)}KB`,
'error'
)
setTimeout(() => {

View File

@ -7,13 +7,7 @@ import store from '@/store'
import VabProgress from 'nprogress'
import 'nprogress/nprogress.css'
import getPageTitle from '@/utils/pageTitle'
import {
authentication,
loginInterception,
progressBar,
recordRoute,
routesWhiteList,
} from '@/config'
import { authentication, loginInterception, progressBar, recordRoute, routesWhiteList } from '@/config'
VabProgress.configure({
easing: 'ease',
@ -32,8 +26,7 @@ router.beforeResolve(async (to, from, next) => {
next({ path: '/' })
if (progressBar) VabProgress.done()
} else {
const hasPermissions =
store.getters['user/permissions'] && store.getters['user/permissions'].length > 0
const hasPermissions = store.getters['user/permissions'] && store.getters['user/permissions'].length > 0
if (hasPermissions) {
next()
} else {

View File

@ -24,9 +24,7 @@ const mutations = {
})
},
delOthersVisitedRoute(state, route) {
state.visitedRoutes = state.visitedRoutes.filter(
(item) => item.meta.affix || item.path === route.path
)
state.visitedRoutes = state.visitedRoutes.filter((item) => item.meta.affix || item.path === route.path)
},
delLeftVisitedRoute(state, route) {
let index = state.visitedRoutes.length

View File

@ -46,16 +46,7 @@ const actions = {
if (accessToken) {
commit('setAccessToken', accessToken)
const hour = new Date().getHours()
const thisTime =
hour < 8
? '早上好'
: hour <= 11
? '上午好'
: hour <= 13
? '中午好'
: hour < 18
? '下午好'
: '晚上好'
const thisTime = hour < 8 ? '早上好' : hour <= 11 ? '上午好' : hour <= 13 ? '中午好' : hour < 18 ? '下午好' : '晚上好'
Vue.prototype.$baseNotify(`欢迎登录${title}`, `${thisTime}`)
} else {
Vue.prototype.$baseMessage(`登录接口异常,未正确返回${tokenName}...`, 'error')

View File

@ -91,11 +91,7 @@ export function paramObj(url) {
return {}
}
return JSON.parse(
`{"${decodeURIComponent(search)
.replace(/"/g, '\\"')
.replace(/&/g, '","')
.replace(/=/g, '":"')
.replace(/\+/g, ' ')}"}`
`{"${decodeURIComponent(search).replace(/"/g, '\\"').replace(/&/g, '","').replace(/=/g, '":"').replace(/\+/g, ' ')}"}`
)
}
@ -115,9 +111,7 @@ export function translateDataToTree(data) {
const temp = JSON.parse(JSON.stringify(children))
temp.splice(index, 1)
translator([current], temp)
typeof parent.children !== 'undefined'
? parent.children.push(current)
: (parent.children = [current])
typeof parent.children !== 'undefined' ? parent.children.push(current) : (parent.children = [current])
}
})
})

View File

@ -56,18 +56,10 @@ instance.interceptors.request.use(
config.headers[tokenName] = store.getters['user/accessToken']
}
//0falsekey
if (config.data)
config.data = Vue.prototype.$baseLodash.pickBy(
config.data,
Vue.prototype.$baseLodash.identity
)
if (
config.data &&
config.headers['Content-Type'] === 'application/x-www-form-urlencoded;charset=UTF-8'
)
if (config.data) config.data = Vue.prototype.$baseLodash.pickBy(config.data, Vue.prototype.$baseLodash.identity)
if (config.data && config.headers['Content-Type'] === 'application/x-www-form-urlencoded;charset=UTF-8')
config.data = qs.stringify(config.data)
if (debounce.some((item) => config.url.includes(item)))
loadingInstance = Vue.prototype.$baseLoading()
if (debounce.some((item) => config.url.includes(item))) loadingInstance = Vue.prototype.$baseLoading()
return config
},
(error) => {

View File

@ -158,8 +158,7 @@ const install = (Vue) => {
},
baseLayer: new maptalks.TileLayer('base', {
cssFilter: 'sepia(100%) invert(90%)',
urlTemplate:
'http://online{s}.map.bdimg.com/onlinelabel/?qt=tile&x={x}&y={y}&z={z}&styles=pl&scaler=1&p=1',
urlTemplate: 'http://online{s}.map.bdimg.com/onlinelabel/?qt=tile&x={x}&y={y}&z={z}&styles=pl&scaler=1&p=1',
subdomains: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
attribution: '&copy; <a target="_blank" href="http://map.baidu.com">Baidu</a>',
}),

View File

@ -3,9 +3,7 @@
<template #header>
<vab-icon icon="send-plane-2-line" />
<!-- 计划 -->
<el-tag class="card-header-tag" type="success">
祝用框架的小伙伴都能住上别墅开上保时捷
</el-tag>
<el-tag class="card-header-tag" type="success">祝用框架的小伙伴都能住上别墅开上保时捷</el-tag>
</template>
<el-table :data="tableData" height="283px" row-key="title">
<el-table-column align="center" label="拖拽" width="50px">

View File

@ -27,14 +27,10 @@
<td>授权渠道</td>
<td colspan="3">
<a href="https://vue-admin-beautiful.com/authorization" target="_blank">
<el-button style="margin-left: 10px" type="primary">
PRO付费版本 购买源码 699
</el-button>
<el-button style="margin-left: 10px" type="primary">PRO付费版本 购买源码 699</el-button>
</a>
<a href="https://vue-admin-beautiful.com/authorization" target="_blank">
<el-button style="margin-left: 10px" type="primary">
Plus付费版本 购买源码 799
</el-button>
<el-button style="margin-left: 10px" type="primary">Plus付费版本 购买源码 799</el-button>
</a>
<a href="https://github.com/chuzhixin/vue-admin-beautiful/" target="_blank">
<el-button style="margin-left: 10px" type="warning">开源免费版</el-button>

View File

@ -44,15 +44,7 @@
</el-card>
</el-col>
<el-col
v-for="(item, index) in iconList"
:key="index"
:lg="3"
:md="3"
:sm="6"
:xl="3"
:xs="12"
>
<el-col v-for="(item, index) in iconList" :key="index" :lg="3" :md="3" :sm="6" :xl="3" :xs="12">
<router-link target="_blank" :to="item.link">
<el-card class="icon-panel" shadow="never">
<vab-icon :icon="['fas', item.icon]" :style="{ color: item.color }" />
@ -137,12 +129,7 @@
<h1 style="font-size: 30px">vue-admin-better</h1>
</div>
<div v-for="(item, index) in noticeList" :key="index">
<el-alert
v-if="index !== 0"
:closable="item.closable"
:title="item.title"
:type="item.type"
/>
<el-alert v-if="index !== 0" :closable="item.closable" :title="item.title" :type="item.type" />
<br />
</div>
<el-alert :closable="false" :title="userAgent" type="info" />

View File

@ -18,13 +18,7 @@
<span class="svg-container svg-container-admin">
<vab-icon :icon="['fas', 'user']" />
</span>
<el-input
v-model.trim="form.username"
v-focus
placeholder="请输入用户名"
tabindex="1"
type="text"
/>
<el-input v-model.trim="form.username" v-focus placeholder="请输入用户名" tabindex="1" type="text" />
</el-form-item>
<el-form-item prop="password">
<span class="svg-container">
@ -46,9 +40,7 @@
<vab-icon :icon="['fas', 'eye']" />
</span>
</el-form-item>
<el-button class="login-btn" :loading="loading" type="primary" @click="handleLogin">
登录
</el-button>
<el-button class="login-btn" :loading="loading" type="primary" @click="handleLogin">登录</el-button>
<router-link to="/register">
<div style="margin-top: 20px">注册</div>
</router-link>
@ -136,9 +128,7 @@
},
methods: {
handlePassword() {
this.passwordType === 'password'
? (this.passwordType = '')
: (this.passwordType = 'password')
this.passwordType === 'password' ? (this.passwordType = '') : (this.passwordType = 'password')
this.$nextTick(() => {
this.$refs.password.focus()
})
@ -150,8 +140,7 @@
this.$store
.dispatch('user/login', this.form)
.then(() => {
const routerPath =
this.redirect === '/404' || this.redirect === '/401' ? '/' : this.redirect
const routerPath = this.redirect === '/404' || this.redirect === '/401' ? '/' : this.redirect
this.$router.push(routerPath).catch(() => {})
this.loading = false
})

View File

@ -7,14 +7,7 @@
<el-input v-model="queryForm.title" placeholder="商品名称" />
</el-form-item>
<el-form-item>
<el-button
icon="el-icon-search"
native-type="submit"
type="primary"
@click="handleQuery"
>
查询
</el-button>
<el-button icon="el-icon-search" native-type="submit" type="primary" @click="handleQuery">查询</el-button>
</el-form-item>
</el-form>
</vab-query-form-right-panel>

View File

@ -20,12 +20,7 @@
</vab-query-form-right-panel>
</vab-query-form>
<el-table
v-loading="listLoading"
:data="list"
:element-loading-text="elementLoadingText"
@selection-change="setSelectRows"
>
<el-table v-loading="listLoading" :data="list" :element-loading-text="elementLoadingText" @selection-change="setSelectRows">
<el-table-column show-overflow-tooltip type="selection" />
<el-table-column label="id" prop="id" show-overflow-tooltip />
<el-table-column label="权限码" prop="permission" show-overflow-tooltip />

View File

@ -17,12 +17,7 @@
</vab-query-form-right-panel>
</vab-query-form>
<el-table
v-loading="listLoading"
:data="list"
:element-loading-text="elementLoadingText"
@selection-change="setSelectRows"
>
<el-table v-loading="listLoading" :data="list" :element-loading-text="elementLoadingText" @selection-change="setSelectRows">
<el-table-column show-overflow-tooltip type="selection" />
<el-table-column label="id" prop="id" show-overflow-tooltip />
<el-table-column label="用户名" prop="username" show-overflow-tooltip />

View File

@ -12,13 +12,7 @@
<div style="color: transparent">占位符</div>
</el-col>
<el-col :lg="8" :md="12" :sm="24" :xl="8" :xs="24">
<el-form
ref="registerForm"
class="register-form"
:model="form"
:rules="registerRules"
size="mini"
>
<el-form ref="registerForm" class="register-form" :model="form" :rules="registerRules" size="mini">
<el-form-item prop="username">
<el-input
v-model.trim="form.username"
@ -47,29 +41,17 @@
<el-input v-model.trim="form.phoneCode" placeholder="手机验证码" type="text">
<vab-icon slot="prefix" :icon="['fas', 'envelope-open']" />
</el-input>
<el-button
class="show-pwd phone-code"
:disabled="isGetphone"
type="primary"
@click="getPhoneCode"
>
<el-button class="show-pwd phone-code" :disabled="isGetphone" type="primary" @click="getPhoneCode">
{{ phoneCode }}
</el-button>
</el-form-item>
<el-form-item prop="password">
<el-input
v-model.trim="form.password"
autocomplete="new-password"
placeholder="设置密码"
type="password"
>
<el-input v-model.trim="form.password" autocomplete="new-password" placeholder="设置密码" type="password">
<vab-icon slot="prefix" :icon="['fas', 'unlock']" />
</el-input>
</el-form-item>
<el-form-item>
<el-button class="register-btn" type="primary" @click.native.prevent="handleReister">
注册
</el-button>
<el-button class="register-btn" type="primary" @click.native.prevent="handleReister">注册</el-button>
<router-link to="/login">
<div style="margin-top: 20px">登录</div>
</router-link>

View File

@ -1,8 +1,6 @@
<template>
<div class="back-to-top-container">
<div v-for="(item, index) in 100" :key="index" style="padding: 20px">
测试滚轮显示返回顶部-{{ index }}
</div>
<div v-for="(item, index) in 100" :key="index" style="padding: 20px">测试滚轮显示返回顶部-{{ index }}</div>
<!-- <el-tooltip placement="top" content="返回顶部"><vab-back-to-top transition-name="fade" /></el-tooltip> -->
</div>
</template>

View File

@ -2,15 +2,9 @@
<div class="element-container">
<el-row :gutter="20">
<el-col :lg="18" :md="18" :sm="24" :xl="16" :xs="24">
<el-button type="primary" @click="dialogVisible = !dialogVisible">
element全部文档点这里
</el-button>
<el-button type="primary" @click="dialogVisible = !dialogVisible">element全部文档点这里</el-button>
<el-dialog :fullscreen="true" title="element文档" :visible.sync="dialogVisible">
<iframe
class="element-iframe"
frameborder="0"
src="https://element.eleme.cn/#/zh-CN/component/installation"
></iframe>
<iframe class="element-iframe" frameborder="0" src="https://element.eleme.cn/#/zh-CN/component/installation"></iframe>
</el-dialog>
<el-divider content-position="left">
Tag 标签

View File

@ -2,13 +2,7 @@
<div class="form-container">
<el-row :gutter="20">
<el-col :lg="8" :md="12" :sm="24" :xl="8" :xs="24">
<el-form
ref="ruleForm"
class="demo-ruleForm"
label-width="100px"
:model="ruleForm"
:rules="rules"
>
<el-form ref="ruleForm" class="demo-ruleForm" label-width="100px" :model="ruleForm" :rules="rules">
<el-form-item label="活动名称" prop="name">
<el-input v-model="ruleForm.name" />
</el-form-item>

View File

@ -21,23 +21,9 @@
</el-form>
</el-col>
<el-col
v-for="(item, index) in queryIcon"
:key="index"
:lg="2"
:md="3"
:sm="8"
:xl="2"
:xs="6"
>
<el-card
shadow="hover"
style="cursor: pointer"
@click.native="handleCopyIcon(index, $event)"
>
<vab-colorful-icon
:icon-class="`https://fastly.jsdelivr.net/gh/chuzhixin/zx-colorful-icon@master/${item}.svg`"
/>
<el-col v-for="(item, index) in queryIcon" :key="index" :lg="2" :md="3" :sm="8" :xl="2" :xs="6">
<el-card shadow="hover" style="cursor: pointer" @click.native="handleCopyIcon(index, $event)">
<vab-colorful-icon :icon-class="`https://fastly.jsdelivr.net/gh/chuzhixin/zx-colorful-icon@master/${item}.svg`" />
</el-card>
<div class="icon-text">
{{ item }}

View File

@ -15,20 +15,8 @@
</el-form>
</el-col>
<el-col
v-for="(item, index) in queryIcon"
:key="index"
:lg="2"
:md="3"
:sm="8"
:xl="2"
:xs="6"
>
<el-card
shadow="hover"
style="cursor: pointer"
@click.native="handleCopyIcon(index, $event)"
>
<el-col v-for="(item, index) in queryIcon" :key="index" :lg="2" :md="3" :sm="8" :xl="2" :xs="6">
<el-card shadow="hover" style="cursor: pointer" @click.native="handleCopyIcon(index, $event)">
<vab-icon :icon="['fas', item]" />
</el-card>
<div class="icon-text">

View File

@ -3,9 +3,7 @@
<el-row :gutter="20">
<el-col :span="24">
<el-card shadow="hover">
<el-link href="https://www.lodashjs.com/" target="_blank" type="primary">
lodashjs官网
</el-link>
<el-link href="https://www.lodashjs.com/" target="_blank" type="primary">lodashjs官网</el-link>
</el-card>
</el-col>

View File

@ -18,9 +18,7 @@
mounted() {
this.$nextTick(() => {
const map = this.$baseMap()
axios
.get('https://fastly.jsdelivr.net/npm/mapv@2.0.12/examples/data/od-xierqi.txt')
.then((rs) => {
axios.get('https://fastly.jsdelivr.net/npm/mapv@2.0.12/examples/data/od-xierqi.txt').then((rs) => {
let data = []
let timeData = []

View File

@ -5,9 +5,7 @@
<el-card>
<div slot="header">
开源版本
<el-button style="float: right; padding: 3px 0" type="text">
永久免费 个人/商业使用
</el-button>
<el-button style="float: right; padding: 3px 0" type="text">永久免费 个人/商业使用</el-button>
</div>
<div>
<ul>
@ -17,9 +15,7 @@
</li>
<li>
开源地址
<a href="https://github.com/chuzhixin/vue-admin-beautiful" target="_blank">
如果有幸帮到了你麻烦给个star
</a>
<a href="https://github.com/chuzhixin/vue-admin-beautiful" target="_blank">如果有幸帮到了你麻烦给个star</a>
</li>
<li>提供讨论群专属文档QQ群 9724353191139183756</li>
</ul>
@ -30,9 +26,7 @@
<el-card>
<div slot="header">
VIP群
<el-button style="float: right; padding: 3px 0" type="text">
1002021年1月起不再提供此服务
</el-button>
<el-button style="float: right; padding: 3px 0" type="text">1002021年1月起不再提供此服务</el-button>
</div>
<div>
<ul>

View File

@ -1,8 +1,6 @@
<template>
<div class="permissions-container">
<el-divider content-position="left">
intelligence模式,前端根据permissions拦截路由(演示环境,默认使用此方案)
</el-divider>
<el-divider content-position="left">intelligence模式,前端根据permissions拦截路由(演示环境,默认使用此方案)</el-divider>
<el-form ref="form" :inline="true" :model="form">
<el-form-item label="切换账号">
@ -26,9 +24,7 @@
<el-button v-permissions="['test']" type="primary">我是拥有["test"]权限的按钮</el-button>
<br />
<br />
<el-divider content-position="left">
all模式,路由以及view文件引入全部交给后端(权限复杂,且随时变更,建议使用此方案)
</el-divider>
<el-divider content-position="left">all模式,路由以及view文件引入全部交给后端(权限复杂,且随时变更,建议使用此方案)</el-divider>
<p>
settings.js配置authentication为all即可完全交由后端控制,mock中有后端接口示例,权限繁琐,有几十种权限的项目直接用这种,
由于演示环境是mock数据模拟,可能无法展现此功能的配置,只做如下展示,便于您的理解

View File

@ -16,15 +16,9 @@
<el-card shadow="hover">
<div slot="header">
<span>profile</span>
<el-button style="float: right; padding: 3px 0" type="text" @click="handleProfile">
重载
</el-button>
<el-button style="float: right; padding: 3px 0" type="text" @click="handleProfile">重载</el-button>
</div>
<vab-profile
v-if="profileShow"
avatar="https://picsum.photos/80/80?random=2"
user-name="chuzhixin"
/>
<vab-profile v-if="profileShow" avatar="https://picsum.photos/80/80?random=2" user-name="chuzhixin" />
</el-card>
</el-col>
<el-col :lg="8" :md="12" :sm="24" :xl="8" :xs="24">

View File

@ -15,14 +15,7 @@
<el-input v-model="queryForm.title" placeholder="标题" />
</el-form-item>
<el-form-item>
<el-button
icon="el-icon-search"
native-type="submit"
type="primary"
@click="handleQuery"
>
查询
</el-button>
<el-button icon="el-icon-search" native-type="submit" type="primary" @click="handleQuery">查询</el-button>
</el-form-item>
</el-form>
</vab-query-form-right-panel>

View File

@ -27,23 +27,13 @@
{{ node.label }}
</span>
<span class="vab-tree-options">
<a
v-if="node.data.rank !== 4"
class="vab-tree-btn"
title="添加"
@click="() => append(node, data, 0)"
>
<a v-if="node.data.rank !== 4" class="vab-tree-btn" title="添加" @click="() => append(node, data, 0)">
<i class="el-icon-plus"></i>
</a>
<a class="vab-tree-btn" title="编辑" @click="() => edit(node, data, 1)">
<i class="el-icon-edit"></i>
</a>
<a
v-if="node.data.rank !== 1"
class="vab-tree-btn"
title="刪除"
@click="() => remove(node, data)"
>
<a v-if="node.data.rank !== 1" class="vab-tree-btn" title="刪除" @click="() => remove(node, data)">
<i class="el-icon-delete"></i>
</a>
</span>

View File

@ -75,11 +75,7 @@ module.exports = {
chainWebpack(config) {
config.plugins.delete('preload')
config.plugins.delete('prefetch')
config.module
.rule('svg')
.exclude.add(resolve('src/remixIcon'))
.add(resolve('src/colorfulIcon'))
.end()
config.module.rule('svg').exclude.add(resolve('src/remixIcon')).add(resolve('src/colorfulIcon')).end()
config.module
.rule('remixIcon')