mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-05 05:42:45 +08:00
⬆️chore: update version
This commit is contained in:
parent
299cbe62ee
commit
1762e6e0b8
@ -68,7 +68,7 @@
|
||||
"eslint-plugin-vue": "^9.1.1",
|
||||
"filemanager-webpack-plugin": "^8.0.0",
|
||||
"image-webpack-loader": "^8.1.0",
|
||||
"lint-staged": "^14.0.0",
|
||||
"lint-staged": "^14.0.1",
|
||||
"prettier": "^2.8.8",
|
||||
"sass": "~1.32.13",
|
||||
"sass-loader": "^10.1.1",
|
||||
|
@ -4,7 +4,7 @@
|
||||
*/
|
||||
|
||||
module.exports = {
|
||||
printWidth: 130,
|
||||
printWidth: 140,
|
||||
tabWidth: 2,
|
||||
useTabs: false,
|
||||
semi: false,
|
||||
|
@ -1,11 +1,5 @@
|
||||
<template>
|
||||
<el-dialog
|
||||
:before-close="handleClose"
|
||||
:close-on-click-modal="false"
|
||||
:title="title"
|
||||
:visible.sync="dialogFormVisible"
|
||||
width="909px"
|
||||
>
|
||||
<el-dialog :before-close="handleClose" :close-on-click-modal="false" :title="title" :visible.sync="dialogFormVisible" width="909px">
|
||||
<div class="upload">
|
||||
<el-alert
|
||||
:closable="false"
|
||||
@ -48,9 +42,7 @@
|
||||
正在上传中... 当前上传成功数:{{ 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>
|
||||
<el-button :loading="loading" size="small" style="margin-left: 10px" type="success" @click="submitUpload">开始上传</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</template>
|
||||
@ -142,10 +134,7 @@
|
||||
handleError() {
|
||||
this.imgNum = this.imgNum + 1
|
||||
this.imgErrorNum = this.imgErrorNum + 1
|
||||
this.$baseMessage(
|
||||
`文件[${file.raw.name}]上传失败,文件大小为${this.$baseLodash.round(file.raw.size / 1024, 0)}KB`,
|
||||
'error'
|
||||
)
|
||||
this.$baseMessage(`文件[${file.raw.name}]上传失败,文件大小为${this.$baseLodash.round(file.raw.size / 1024, 0)}KB`, 'error')
|
||||
setTimeout(() => {
|
||||
this.loading = false
|
||||
this.show = false
|
||||
|
@ -90,9 +90,7 @@ export function paramObj(url) {
|
||||
if (!search) {
|
||||
return {}
|
||||
}
|
||||
return JSON.parse(
|
||||
`{"${decodeURIComponent(search).replace(/"/g, '\\"').replace(/&/g, '","').replace(/=/g, '":"').replace(/\+/g, ' ')}"}`
|
||||
)
|
||||
return JSON.parse(`{"${decodeURIComponent(search).replace(/"/g, '\\"').replace(/&/g, '","').replace(/=/g, '":"').replace(/\+/g, ' ')}"}`)
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -143,12 +143,7 @@
|
||||
<span>更新日志</span>
|
||||
</div>
|
||||
<el-timeline :reverse="reverse">
|
||||
<el-timeline-item
|
||||
v-for="(activity, index) in activities"
|
||||
:key="index"
|
||||
:color="activity.color"
|
||||
:timestamp="activity.timestamp"
|
||||
>
|
||||
<el-timeline-item v-for="(activity, index) in activities" :key="index" :color="activity.color" :timestamp="activity.timestamp">
|
||||
{{ activity.content }}
|
||||
</el-timeline-item>
|
||||
</el-timeline>
|
||||
|
@ -5,13 +5,7 @@
|
||||
</el-divider>
|
||||
<el-row>
|
||||
<el-col :lg="4" :md="8" :sm="24" :xl="4" :xs="24">
|
||||
<el-tree
|
||||
:data="data"
|
||||
:default-expanded-keys="['root']"
|
||||
node-key="id"
|
||||
:props="defaultProps"
|
||||
@node-click="handleNodeClick"
|
||||
/>
|
||||
<el-tree :data="data" :default-expanded-keys="['root']" node-key="id" :props="defaultProps" @node-click="handleNodeClick" />
|
||||
</el-col>
|
||||
<el-col :lg="20" :md="16" :sm="24" :xl="20" :xs="24">
|
||||
<vab-query-form>
|
||||
|
@ -26,14 +26,7 @@
|
||||
</el-input>
|
||||
</el-form-item>
|
||||
<el-form-item prop="phone">
|
||||
<el-input
|
||||
v-model.trim="form.phone"
|
||||
autocomplete="off"
|
||||
maxlength="11"
|
||||
placeholder="请输入手机号"
|
||||
show-word-limit
|
||||
type="text"
|
||||
>
|
||||
<el-input v-model.trim="form.phone" autocomplete="off" maxlength="11" placeholder="请输入手机号" show-word-limit type="text">
|
||||
<vab-icon slot="prefix" :icon="['fas', 'mobile-alt']" />
|
||||
</el-input>
|
||||
</el-form-item>
|
||||
|
@ -2,9 +2,7 @@
|
||||
<div class="colorful-icon-container">
|
||||
<el-row :gutter="20">
|
||||
<el-col :span="24">
|
||||
<el-divider content-position="left">
|
||||
多彩图标在演示环境中使用的是cdn加速服务,开发时需存储到本地,点击图标即可复制源码
|
||||
</el-divider>
|
||||
<el-divider content-position="left">多彩图标在演示环境中使用的是cdn加速服务,开发时需存储到本地,点击图标即可复制源码</el-divider>
|
||||
</el-col>
|
||||
<el-col :span="24">
|
||||
<el-form :inline="true" label-width="80px" @submit.native.prevent>
|
||||
|
@ -42,13 +42,7 @@
|
||||
</el-col>
|
||||
<el-col :lg="6" :md="24" :sm="24" :xl="6" :xs="24">
|
||||
<el-divider content-position="left">懒加载树</el-divider>
|
||||
<el-input
|
||||
v-model.lazy="keyW"
|
||||
class="input-with-select"
|
||||
placeholder="请输入内容"
|
||||
:value="keyW"
|
||||
@keyup.enter.native="showTreeList"
|
||||
/>
|
||||
<el-input v-model.lazy="keyW" class="input-with-select" placeholder="请输入内容" :value="keyW" @keyup.enter.native="showTreeList" />
|
||||
<div v-show="isShow" class="blur-tree">
|
||||
<el-tree
|
||||
ref="treeFilter"
|
||||
|
Loading…
x
Reference in New Issue
Block a user