同步操作将从 木木糖醇/gi-demo 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
Gi Admin Pro 是一个基于 Vue3、Vite、TypeScript、Arco Design Vue、Pinia、VueUse 等的免费中后台模版,它使用了最新的前端技术栈,内置丰富的主题配置,有着极高的代码规范,基于 mock 实现的动态数据展示,开箱即用的模板,也可用于学习参考。
Gi 前缀含义: G:代表全局 i:代表我的
Gi 用来定义全局组件前缀,如 GiNavBar、GiTitle、GiLoading
账号1:admin 密码:123456
账号2:user 密码:123456
npm install
npm run dev
npm run build
1. Prettier - Code formatter
2. Vue Language Features (Volar)
3. Vue 3 Snippets
4. TypeScript Vue Plugin (Volar)
由于升级了vite3,根据官方规定,node版本必须是14.18.0以上
注:现在已更新到了 Vite4.x,node的版本要求请参考官网要求
vite 官网地址: https://cn.vitejs.dev/
Lin
为什么安装依赖不成功?
检查node
版本,最好使用原生镜像npm
还原镜像
npm config set registry https://registry.npmjs.org/
为什么选择Arco组件库,而不是Element Plus?
为什么全局组件使用前缀Gi?
全局组件设置了按需引入,使用前缀,方便和局部组件做区分
为什么组件使用单词大写开头 (PascalCase)命名写法?
本项目.vue
文件名以及在模板使用中,均采用大写开头 (PascalCase)
命名方式
参考 Vue2 官网-风格指南: https://v2.cn.vuejs.org/v2/style-guide/
组件命名:单文件组件的文件名应该要么始终是单词大写开头 (PascalCase),要么始终是横线连接 (kebab-case)
其他优点:方便搜索(横线连接 (kebab-case)对搜索没那么方便)
为什么css类名推荐横线连接 (kebab-case)
参考大部分大网站,都是这个命名规则,别整: .myClass
这种
页面显示异常?
页面必须要保留一个根元素!!!
Vue3权限管理对路由进行排序和格式化处理方式
使用 xe-utils 这个 js 库,简化数据处理
页面无法缓存?
请检查页面是否配置了name
,且名称是否与数据一致
defineOptions({ name: 'AboutIndex' })
{
path: '/about/index',
name: 'AboutIndex', // 检查name是否一致
component: () => import('@/views/about/index.vue')
}
一般来说,一个 .vue 文件行数建议不超过 400
行,超过建议组件化拆分
<script setup lang="ts">
// 一般情况下,引用类型使用 const 定义,基本类型使用 let 定义
const arr = []
const obj = {}
const fn = () => {
console.log('123')
}
let num = 10
let str = 'abc'
let flag = false
// vue3 中 ref 返回的是一个引用类型
const loading = ref(false)
const name = ref('小明')
</script>
<script setup lang="ts">
const loading = ref(false) // 加载
const visible = ref(false) // 显示隐藏
const disabled = ref(true) // 是否被禁用
const showAddModal = ref(false) // 新增功能的模态框显示隐藏
const showAddDrawer = ref(false) // 新增功能的抽屉显示隐藏
// 或者 是否显示弹窗
const isShowDialog = ref<boolean>(false)
const isLogin = ref(false) // 是否登录
const isVIP = ref(false) // 是否是vip用户
// 表单 不建议 formData, 直接最简
const form = reactive({
name: '',
phone: '',
remark: ''
})
const userInfo = ref({}) // 用户信息
const tableData = ref([]) // 表格数据
const treeData = ref([]) // 树结构数据
// 对象数组 列表数据最好后面加个 List 或者 Data
const companyList = ref([])
const checkedList = ref([])
const selectedList = ref([])
const addressList = ref([])
const userList = [
{ id: '01', name: '张三' },
{ id: '02', name: '李四' }
]
const tableData = []
const optionsList = [
{ label: '哈哈', value: 1 },
{ label: '嘻嘻', value: 2 }
]
// 非对象数组 在字母后面加s
const ids = []
const selectedIds = []
const activeKeys = []
const nums = [3, 5, 6]
const strs = ['aaa', 'bbb', 'ccc']
const getData = () => {
const arr = []
nums.forEach((item) => {
arr.push({ value: item })
})
}
const getUserList = async () => {
const res = await Api.getUserPage()
userList = res.data
}
// ---------------------------------------- 方法 --------------------------------------------- //
// 编辑
const edit = () => {}
const onEdit = () => {}
const handleEdit = () => {}
// 新增
const add = () => {}
const onAdd = () => {}
const handleAdd = () => {}
// 删除
// const delete = () => {} // 不推荐,delete 是JS关键词
const del = () => {}
const onDelete = () => {}
const handleDelete = () => {}
const remove = () => {}
// 重命名
const rename = () => {}
const onRename = () => {}
const handleRename = () => {}
// 批量删除
const mulDelete = () => {}
const onMulDelete = () => {}
const handleMulDelete = () => {}
// 搜索
const search = () => {}
// 返回
const back = () => {}
// 提交
const submit = () => {}
// 确认
const confirm = () => {}
const ok = () => {}
// 取消
const cancel = () => {}
// 打开 | 关闭
const open = () => {}
const close = () => {}
// 保存
const save = () => {}
// 获取表格列表
const getTableData = () => {}
const getTableList = () => {}
</script>
常用前缀
前缀 | 前缀 + 命名 | 大意 |
---|---|---|
get | getUserInfo | 获取用户信息 |
del/delete | delUserInfo | 删除用户信息 |
update / add | updateUserInfo / addUserInfo | 修改用户信息 / 增加用户信息 |
is | isTimeout | 是否超时 |
has | hasUserInfo | 有没有用户信息 |
handle | handleLogin | 处理登录 |
calc | calcAverageSpeed | 计算平均速度 |
一些通用缩写
源单词 | 缩写 |
---|---|
message | msg |
information | info |
button | btn |
background | bg |
response | res |
request | req |
image | img |
utility | util |
property | prop |
source | src |
boolean | bool |
error | err |
settings | set |
<script setup lang="ts">
const isEdit = ref(false)
// 不推荐
const title = computed(() => {
return isEdit.value ? '编辑' : '新增'
})
// 推荐 能一行就尽量写一行
const title = computed(() => (isEdit.value ? '编辑' : '新增'))
</script>
<script setup lang="ts">
// 表单建议使用 form 命名(简洁),不必要使用 formData, 同时使用 reactive
const form = reactive({
name: '',
phone: ''
})
</script>
<script setup lang="ts">
// 如果属性比较多
const getInitForm = () => ({
name: '',
phone: '',
email: '',
sex: 1,
age: ''
})
const form = reactive(getInitForm())
// 重置form
const resetForm = () => {
for (const key in form) {
delete form[key]
}
Object.assign(form, getInitForm())
}
</script>
<script setup lang="ts">
import { useAppStore, useUserStore } from '@/stores'
import { useLoading } from '@/hooks'
// stores 或 hooks 的使用命名规则定义
const appStore = useAppStore()
const userStore = useUserStore()
const { loading, setLoading } = useLoading()
</script>
尽量使用三元表达式
// 优化前
let marks = 26
let result
if (marks >= 30) {
result = 'Pass'
} else {
result = 'Fail'
}
// 优化后
let result = marks >= 30 ? 'Pass' : 'Fail'
善用 includes 方法
// 优化前
if (type === 1 || type === 2 || type === 3) {}
// 优化后, 此种方式在vue模板也可使用
if([1, 2, 3].includes(type)) {}
使用箭头函数简化函数
// 优化前
function add(num1, num2) {
return num1 + num2
}
// 优化后
const add = (num1, num2) => num1 + num2
尽量减少 if else if
<script setup lang="ts">
// 比例进度条颜色 尽量减少 if else if
const getProportionColor = (proportion: number) => {
if (proportion < 30) return 'danger'
if (proportion < 60) return 'warning'
return 'success'
}
</script>
命名规范: 操作名 + 后端模块名 + 功能名
前缀为(操作名)动词,动词 eg:add / update / delete / get / save
等
// 场景一 如没有操作名,可以自行根据场景补充
export function getUserList() {
return http.get('/user/list')
}
// 场景二
export function getUserList() {
return http.get('/user/getList')
}
// 场景三 如功能名包含了模块名,可省略
export function getUserList() {
return http.get('/user/getUserList')
}
// 其他
export function saveUser(data) {
return http.post('/user/save', data)
}
以上命名规范可以确保 api 命名不会冲突,加上模块名能快速定位以及更加方便维护
引入接口:
import { getUserList, saveUser } from '@/apis'
import http from '@/utils/http'
import { prefix } from '../config'
import type * as System from './type'
/** @desc 获取部门数据 */
export function getSystemDeptList() {
return http.get<PageRes<System.DeptItem[]>>(`${prefix}/system/dept/list`)
}
/** @desc 获取用户数据 */
export function getSystemUserList() {
return http.get<PageRes<System.UserItem[]>>(`${prefix}/system/user/list`)
}
/** @desc 获取角色数据 */
export function getSystemRoleList() {
return http.get<PageRes<System.RoleItem[]>>(`${prefix}/system/role/list`)
}
不建议以下方式导入 ts 类型,不够方便
import type { DeptItem, UserItem, RoleItem } from './type'
写法一
不需要 loading,不需要错误打印的 情况
<script setup lang="ts">
import { ref } from 'vue'
import { getUserList as getUserListApi, type UserItem } from '@/apis' // 同名可以使用别名
const userList = ref<UserItem[]>([])
const getUserList = async () => {
const res = await getUserListApi()
console.log('如果异步成功,则会打印这行文字,否则不会打印这行文字,也不会往下执行')
userList.value = res.data
}
</script>
// getUserListApi 是一个 Promise 异步函数,Promise 最后只有 成功 / 失败 两种状态 // getUserListApi 是基于 axios
封装的,在 axios 响应拦截器做了处理 // 当 res.success === false 的时候 Promise.reject(),
也就异步失败,异步失败不会往下执行
写法二
需要 loading,需要错误打印的情况
<script setup lang="ts">
import { ref } from 'vue'
import { getUserList as getUserListApi, type UserItem } from '@/apis' // 同名可以使用别名
const loading = ref(false)
const userList = ref<UserItem[]>([])
const getUserList = async () => {
try {
loading.value = true
const res = await getUserListApi()
console.log('如果异步成功,则会打印这行文字,否则不会打印这行文字,也不会往下执行')
userList.value = res.data
} catch (error) {
console.log('如果异步失败,会打印这行文字')
// 由于 axios 在封装的时候,已经在异步失败给了失败的提示弹窗处理
// 所以这里没必要再写 Message.error(error)
} finally {
console.log('如果异步或者失败,都会打印这行代码')
loading.value = false // 可以用来处理 loading
}
}
</script>
写法三
需要 loading, 不需要错误打印(不进行错误处理)的情况
<script setup lang="ts">
import { ref } from 'vue'
import { getUserList as getUserListApi, type UserItem } from '@/apis' // 同名可以使用别名
const loading = ref(false)
const userList = ref<UserItem[]>([])
const getUserList = async () => {
try {
loading.value = true
const res = await getUserListApi()
console.log('如果异步成功,则会打印这行文字,否则不会打印这行文字,也不会往下执行')
userList.value = res.data
} finally {
console.log('如果异步或者失败,都会打印这行代码')
loading.value = false // 可以用来处理 loading
}
}
</script>
// catch 可以省略
文件位置:@/utils/regexp.ts
/** @desc 正则-手机号码 */
export const Phone = /^1[3-9]\d{9}$/
/** @desc 正则-邮箱 */
export const Email = /^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/
/** @desc 正则-6位数字验证码正则 */
export const Code_6 = /^\d{6}$/
/** @desc 正则-4位数字验证码正则 */
export const Code_4 = /^\d{4}$/
/** @desc 正则-16进颜色值 #333 #8c8c8c */
export const ColorRegex = /^#?([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$/
/** @desc 正则-只能是中文 */
export const OnlyCh = /^[\u4e00-\u9fa5]+$/gi
/** @desc 正则-只能是英文 */
export const OnlyEn = /^[a-zA-Z]*$/
/** @desc 登录注册-密码 6-16位大小写字母、数字的js正则 */
export const Password = /^[a-zA-Z0-9]{6,16}$/
使用
<script lang="ts" setup>
import { reactive } from 'vue'
import { Message } from '@arco-design/web-vue'
// 正则推荐一下导入方式
import * as Regexp from '@/utils/regexp'
const form = reactive({
name: '',
phone: ''
})
const submit = () => {
if (!Regexp.Phone.test(form.phone)) {
return Message.warning('请输入正确手机号格式')
}
}
</script>
页面模板CSS类名采用半角连接符(-)
<template>
<div class="detail">
<h3 class="title">标题</h3>
<section class="table-box">
<table></table>
</section>
</div>
</template>
组件命名:单文件组件的文件名应该要么始终是单词大写开头 (PascalCase),要么始终是横线连接 (kebab-case)
可参考 Vue2 官网-风格指南: https://v2.cn.vuejs.org/v2/style-guide/
GiTitle.vue
GiThemeBtn.vue
GiSvgIcon.vue
组件命名:单文件组件的文件名应该要么始终是单词大写开头 (PascalCase),要么始终是横线连接 (kebab-case)
可参考 Vue2 官网-风格指南: https://v2.cn.vuejs.org/v2/style-guide/
Pane1.vue
Pane2.vue
PaneQuota1.vue
PaneQuota2.vue
Step1.vue
Step2.vue
AddModal.vue
EditDrawer.vue
DetailModal.vue
1、文件名建议只使用小写字母,不使用大写字母
2、名称较长时采用半角连接符(-)分隔
home/index.vue
news/index.vue
news-detail/index.vue
gi-demo 的业务状态放在@/constant/xxx.ts xxx 为接口模块名
type SubmitStatusItem = { name: string, value: number, color: string }
/** @desc 指标提交状态 */
export const SubmitStatusList: SubmitStatusItem[] = [
{ name: '待提交', value: 0, color: 'orange' },
{ name: '已提交', value: 1, color: 'green' }
]
type StatusItem = { name: string, value: number, type: string }
/** @desc 指标启用状态 */
export const StatusList: StatusItem[] = [
{ name: '禁用', value: 0, type: 'danger' },
{ name: '启用', value: 1, type: 'success' }
]
使用的时候:
引入模块
import { StatusList } from '@/constant/xxx' // 要具体到模块名,因为不同模块可能会有StatusList一样的名称
<a-table-column title="状态" :width="100" align="center">
<template #cell="{ record }">
<template v-for="item in StatusList" :key="item.value">
<a-tag v-if="item.value === record.status" :color="item.color">{{ item.name }}</a-tag>
</template>
</template>
</a-table-column>
<template>
<a-modal v-model:visible="visible" :title="title" @ok="confirm">
<!-- 内容 -->
</a-modal>
</template>
<script setup lang="ts">
import { computed, reactive, ref } from 'vue'
const visible = ref(false)
const detailId = ref('')
const isEdit = computed(() => !!detailId.value) // 判断是新增还是编辑模式
const title = computed(() => (isEdit.value ? '编辑' : '新增'))
const add = () => {
detailId.value = ''
visible.value = true
}
const edit = (id: string) => {
detailId.value = id
// getDetail() 回显操作
visible.value = true
}
defineExpose({ add, edit })
const confirm = () => {
console.log('点击了确认按钮')
}
</script>
使用
模板里使用自定义组件 大写开头驼峰,对于搜索便利
<template>
<EditModal ref="EditModalRef"></EditModal>
</template>
<script setup lang="ts">
import EditModal from './EditModal.vue'
const EditModalRef = ref<InstanceType<typeof EditModal>>()
// 新增
const onAdd = () => {
EditModalRef.value?.add()
}
// 编辑
const onEdit = (item: PersonItem) => {
EditModalRef.value?.edit(item.id)
}
</script>
GiForm是一个JSON配置表单组件,能够快速通过JSON构建表单布局
props | 说明 |
---|---|
options | 表单配置项 |
options结构如下:
import type * as A from '@arco-design/web-vue'
export type FormType =
| 'input'
| 'select'
| 'radio-group'
| 'checkbox-group'
| 'textarea'
| 'date-picker'
| 'time-picker'
| 'input-number'
| 'rate'
| 'switch'
| 'slider'
| 'cascader'
| 'tree-select'
interface ColumnsItem {
type: FormType // 表单项类型
label: A.FormItemInstance['label'] // 表单项label
field: A.FormItemInstance['field'] // 表单项field
span?: number // 表单项span, 共24
col?: A.ColProps // 表单项的col,完全继承<a-col>的props,优先级高于span,可配置响应式布局
item?: A.FormItemInstance['$props'] // 表单项的props,完全继承<form-item>的props
props?: // 表单项各个类型的props, 完全继承各个类型组件的props
| A.InputInstance['$props']
| A.SelectInstance['$props']
| A.TextareaInstance['$props']
| A.DatePickerInstance['$props']
| A.TimePickerInstance['$props']
| A.RadioGroupInstance['$props']
| A.CheckboxGroupInstance['$props']
| A.InputNumberInstance['$props']
| A.RateInstance['$props']
| A.SwitchInstance['$props']
| A.SliderInstance['$props']
| A.CascaderInstance['$props']
| A.TreeSelectInstance['$props']
rules?: A.FormItemInstance['$props']['rules'] // 当前表单项的校验规则rules
options?: // 选项数据 select、radio-group、checkbox-group、cascader 组件独有的options,格式一般是{label: string, value: string}[]
| A.SelectInstance['$props']['options']
| A.RadioGroupInstance['$props']['options']
| A.CheckboxGroupInstance['$props']['options']
| A.CascaderInstance['$props']['options']
data?: A.TreeSelectInstance['$props']['data'] // tree-select的树数据
hide?: boolean // 是否隐藏改该表单项
}
export interface Options {
form: Partial<A.FormInstance['$props']> // 继承<a-form>的props
row?: Partial<typeof import('@arco-design/web-vue')['Row']['__defaults']> // 最外层row,继承<a-row>的props
columns: ColumnsItem[]
btns?: { hide?: boolean; span?: number; col?: A.ColProps } // 查询和重置按钮的配置
fold?: { enable?: boolean; index?: number } // 是否折叠,enable: true开启折叠功能,index表示折叠的位置
}
基本示例
hooks 下默认存放公共的,非接口请求的 hooks
<script setup lang="ts">
import { useLoading } from '@/hooks'
const { loading, setLoading } = useLoading()
</script>
hooks/app 下主要存放通用接口的 hooks
/hooks/app/useDept.ts
import { ref } from 'vue'
import { getSystemDeptList } from '@/apis'
import type { DeptItem } from '@/apis'
/** 部门模块 */
export function useDept() {
const loading = ref(false)
const deptList = ref<DeptItem[]>([])
const getDeptList = async () => {
try {
loading.value = true
const res = await getSystemDeptList()
deptList.value = res.data.records
} catch (error) {
} finally {
loading.value = false
}
}
return { deptList, getDeptList, loading }
}
使用
<script setup lang="ts">
import { useDept } from '@/hooks/app'
const { deptList, getDeptList, loading: deptLoading } = useDept()
getDeptList() // 建议在页面调用 hooks 的方法,比较直观(不在hooks里面调用)
</script>
文件位置:@/hooks/modules/usePagination.ts
旧版:
import { ref } from 'vue'
type Callback = () => void
type Options = {
defaultPageSize: number
}
export default function usePagination(callback: Callback, options: Options = { defaultPageSize: 10 }) {
const current = ref(1)
const pageSize = ref(options.defaultPageSize)
const total = ref(0)
function changeCurrent(size: number) {
current.value = size
callback && callback()
}
function changePageSize(size: number) {
current.value = 1
pageSize.value = size
callback && callback()
}
function setTotal(value: number) {
total.value = value
}
const pagination = computed(() => {
return {
showPageSize: true,
// ...其他配置
total: total.value,
current: current.value,
pageSize: pageSize.value,
onChange: changeCurrent,
onPageSizeChange: changePageSize
}
})
return {
current,
pageSize,
total,
pagination,
changeCurrent,
changePageSize,
setTotal
}
}
上面这种方案已经废弃
,最新方案如下
改良版(兼容旧版):
import { reactive, toRefs } from 'vue'
import type { PaginationProps } from '@arco-design/web-vue'
type Callback = () => void
type Options = {
defaultPageSize: number
}
export default function usePagination(callback: Callback, options: Options = { defaultPageSize: 10 }) {
const pagination = reactive({
showPageSize: true,
current: 1,
pageSize: options.defaultPageSize,
total: 0,
onChange: (size: number) => {
pagination.current = size
callback && callback()
},
onPageSizeChange: (size: number) => {
pagination.current = 1
pagination.pageSize = size
callback && callback()
}
})
const changeCurrent = pagination.onChange
const changePageSize = pagination.onPageSizeChange
function setTotal(value: number) {
pagination.total = value
}
const { current, pageSize, total } = toRefs(pagination)
return {
current,
pageSize,
total,
pagination,
changeCurrent,
changePageSize,
setTotal
}
}
使用方式 1
<template>
<!-- ... -->
<div class="table-box">
<a-table
row-key="id"
:columns="columns"
:data="tableData"
:pagination="{ showPageSize: true, total: total, current: current, pageSize: pageSize }"
@page-change="changeCurrent"
@page-size-change="changePageSize"
>
</a-table>
</div>
</template>
<script setup lang="ts">
import { usePagination } from '@/hooks'
const { current, pageSize, total, changeCurrent, changePageSize, setTotal } = usePagination(() => {
getTableData()
})
// 从第一页开始查询
changeCurrent(1)
</script>
使用方法 2 (改良版,更少代码)
<template>
<!-- ... -->
<div class="table-box">
<a-table row-key="id" :columns="columns" :data="tableData" :pagination="pagination"> </a-table>
</div>
</template>
<script setup lang="ts">
import { usePagination } from '@/hooks'
const { pagination, setTotal } = usePagination(() => {
getTableData()
})
// 从第一页开始查询
pagination.onChange(1)
// 搜索
const search = () => {
pagination.onChange(1)
}
const search2 = () => {
pagination.current = 1
getTableData()
}
</script>
注意:
<script setup lang="ts">
import { usePagination } from '@/hooks'
const { pagination, setTotal } = usePagination(() => {
getTableData()
})
const form = reactive({
name: '',
status: '',
current: pagination.current, // 此种方式不会响应
pageSize: pagination.pageSize // 此种方式不会响应
})
const getTableData = async () => {
const res = await getData(form)
}
</script>
改为
<script setup lang="ts">
import { usePagination } from '@/hooks'
const { pagination, setTotal } = usePagination(() => {
getTableData()
})
const form = reactive({
name: '',
status: ''
})
const getTableData = async () => {
const res = await getData({ ...form, current: pagination.current, pageSize: pagination.pageSize })
}
</script>
或者
<script setup lang="ts">
import { usePagination } from '@/hooks'
const { pagination, setTotal } = usePagination(() => {
form.current = pagination.current
form.pageSize = pagination.pageSize
getTableData()
})
const form = reactive({
name: '',
status: '',
current: pagination.current,
pageSize: pagination.pageSize
})
const getTableData = async () => {
const res = await getData(form)
}
</script>
<template>
<div>
<a-pagination v-bind="pagination" />
</div>
</template>
<script setup lang="ts">
import { usePagination } from '@/hooks'
const { pagination, setTotal } = usePagination(() => {
getTableData()
})
const form = reactive({
name: '',
status: ''
})
const getTableData = async () => {
const res = await getData({ ...form, page: pagination.current, size: pagination.pageSize })
}
</script>
使用
提示
使用useTable的时候不传入类型,tableData也会根据入参自动推导出类型
最后提示
在最新版的useTable
中, selectKeys
已经改为selectedKeys
,同时加了其他新功能,具体查看源码
作用:有时候需要重置表单数据
,这个hooks
提供很大便捷性
代码:useForm.ts
import { reactive } from 'vue'
import _ from 'lodash'
export default function <F extends object>(initValue: F) {
const getInitValue = () => _.cloneDeep(initValue)
const form = reactive(getInitValue())
const resetForm = () => {
for (const key in form) {
delete form[key]
}
Object.assign(form, getInitValue())
}
return { form, resetForm }
}
使用
import { useForm } from '@/hooks'
const { form, resetForm } = useForm({
id: '',
name: '',
phone: '',
status: false
})
// 重置表单数据
resetForm()
注意
resetForm
方法为什么要加上以下代码
for (const key in form) {
delete form[key]
}
比如一个编辑弹窗,点击编辑,会根据id查详情,有时候为了方便,直接把详情的数据赋值到form里面,这就会导致重置的时候,有详情的属性冗余,以下举个例子
const form = { name: '' };
const detail = { name: '张三', status: 1 }
Object.assign(form, detail)
console.log(form) // { name: '张三', status: 1 }
// 如果直接重置
Object.assign(form, { name: '' })
console.log(form) // { name: '', status: 1 } 有额外属性冗余,status会不经意的随着保存操作提交到后台
tool.tsx
使用
AddUserForm.vue
使用
@/views/file/components/FileRenameModal/index.vue
@/views/file/components/index.ts
使用
<script setup lang="ts">
import { openFileRenameModal } from '../../components/index'
import type { FileItem } from '@/apis'
// 重命名 函数调用表单弹窗组件
const rename = (item: FileItem) => {
openFileRenameModal(item)
}
</script>
能使用组件尽量使用组件实现页面布局
flex 布局尽量使用 Row 组件
<template>
<a-row justify="space-between" align="center"> </a-row>
</template>
按钮间间隔尽量使用 Space 组件
<template>
<a-space :size="10">
<a-button>返回</a-button>
<a-button type="primary">提交</a-button>
</a-space>
</template>
状态色文本,尽量使用
<template>
<a-typography-text>主要文本</a-typography-text>
<a-typography-text type="secondary">二级文本</a-typography-text>
<a-typography-text type="primary">主题色文本</a-typography-text>
<a-typography-text type="primary">已提交</a-typography-text>
<a-typography-text type="success">审核通过</a-typography-text>
<a-typography-text type="warning">未提交</a-typography-text>
<a-typography-text type="danger">不通过</a-typography-text>
</template>
Link 组件使用场景
<template>
<a-table>
<a-table-column title="操作" :width="150" fixed="right">
<template #cell="{ record }">
<a-space>
<a-link :hoverable="false">编辑</a-link>
<a-link :hoverable="false">编辑</a-link>
<a-link :hoverable="false">删除</a-link>
</a-space>
</template>
</a-table-column>
</a-table>
</template>
建议采用全小写,多单词使用-连接符(参考大部分网站,包括掘金,码云等,都是采用这个规则)
或者采用BEM
命名规范 BEM命名规范
// 推荐
.header
.footer
.main
.content
.container
.page
.detail
.pane-left
.pane-right
.list
.list-item
// 不推荐
.Header
.listItem
.list-Item
.List-Item;
BEM命名规范
<div class="article">
<div class="article__body">
<div class="tag"></div>
<button class="article__button--primary"></button>
<button class="article__button--success"></button>
</div>
</div>
.article {
max-width: 1200px;
&__body {
padding: 20px;
}
&__button {
padding: 5px 8px;
&--primary {background: blue;}
&--success {background: green;}
}
}
采用下划线_,好复制
.gi_line_1 .gi_line_2 .gi_margin .gi_box
// 文件位置: @/styles/global.scss
.gi_line_1 {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.gi_line_2 {
-webkit-line-clamp: 2;
}
.gi_line_3 {
-webkit-line-clamp: 3;
}
.gi_line_4 {
-webkit-line-clamp: 4;
}
.gi_line_5 {
-webkit-line-clamp: 5;
}
.gi_line_2,
.gi_line_3,
.gi_line_4,
.gi_line_5 {
overflow: hidden;
word-break: break-all;
text-overflow: ellipsis;
display: -webkit-box; // 弹性伸缩盒
-webkit-box-orient: vertical; // 设置伸缩盒子元素排列方式
}
.gi_padding {
padding: $padding;
}
.gi_margin {
margin: $margin;
}
.gi_relative {
position: relative;
}
.gi_absolute {
position: absolute;
}
.gi_rotate_90deg {
transform: rotate(90deg);
}
.gi_rotate_-90deg {
transform: rotate(-90deg);
}
.gi_rotate_180deg {
transform: rotate(180deg);
}
.gi_rotate_-180deg {
transform: rotate(-180deg);
}
.gi_mt { margin-top: $margin; }
.gi_mb { margin-bottom: $margin; }
.gi_ml { margin-left: $margin; }
.gi_mr { margin-right: $margin; }
.gi_mx { margin: 0 $margin; }
.gi_my { margin: $margin 0; }
.gi_m0 { margin: 0; }
.gi_pt { padding-top: $margin; }
.gi_pb { padding-bottom: $margin; }
.gi_pl { padding-left: $margin; }
.gi_pr { padding-right: $margin; }
.gi_px { padding: 0 $padding; }
.gi_py { padding: $padding 0; }
.gi_p0 { padding: 0; }
// 使用场景,页面内容超出高度会自动滚动
.gi_page {
flex: 1;
padding: $margin;
box-sizing: border-box;
overflow-y: auto;
}
// 通用盒子
.gi_box {
background: var(--color-bg-1);
border-radius: $radius-box;
overflow: hidden;
}
$color-theme: rgb(var(--primary-6)); // 主题色
$color-primary: rgb(var(--primary-6)); // 主题色
$color-success: rgb(var(--success-6));
$color-warning: rgb(var(--warning-6));
$color-danger: rgb(var(--danger-6));
$color-info: rgb(var(--gray-6));
$title-color: xxx; // 已弃用,写起来繁琐,易忘
$text-color: xxx; // 已弃用
$text-sub-color: xxx; // 已弃用
$text-sup-color: xxx; // 已弃用
// 借鉴了Arco Design命名规则
$color-text-1: var(--color-text-1); // 标题、重点文本字体颜色
$color-text-2: var(--color-text-2); // 文本-全局默认字体颜色
$color-text-3: var(--color-text-3); // 二级文本颜色
$color-text-4: var(--color-text-4); // 辅助文本颜色
$margin: 16px; // 盒子间距
$padding: 16px; // 盒子和内容的间距
如下图:
位置 1: 使用 $margin 全局 scss 变量
位置 2:使用 $padding 全局 scss 变量
建议尽量使用全局 scss 变量来开发,可以有效提高效率和团队协作
前一个 prev
后一个 next
当前的 current
显示的 show
隐藏的 hide
打开的 open
关闭的 close
选中的 selected
有效的 active
默认的 default
反转的 toggle
禁用的 disabled
危险的 danger
主要的 primary
成功的 success
提醒的 info
警告的 warning
出错的 error
大型的 lg
小型的 sm
超小的 xs
文档 doc
头部 header(hd)
主体 body
尾部 footer(ft)
主栏 main
侧栏 side
容器 box/container
列表 list
列表项 item
表格 table
表单 form
链接 link
标题 caption/heading/title
菜单 menu
集合 group
条 bar
内容 content
结果 result
按钮 button(btn)
下拉菜单 dropdown
工具栏 toolbar
分页 page
缩略图 thumbnail
警告框 alert
进度条 progress
导航条 navbar
导航 nav
子导航 subnav
面包屑 breadcrumb(crumb)
标签 label
徽章 badge
巨幕 jumbotron
面板 panel
洼地 well
标签页 tab
提示框 tooltip
弹出框 popover
轮播图 carousel
手风琴 collapse
定位浮标 affix
品牌 brand
标志 logo
额外部件 addon
版权 copyright
注册 regist(reg)
登录 login
搜索 search
热点 hot
帮助 help
信息 info
提示 tips
开关 toggle
新闻 news
广告 advertise(ad)
排行 top
下载 download
左浮动 fl
右浮动 fr
清浮动 clear
可参考 Vue2 官网-风格指南: https://v2.cn.vuejs.org/v2/style-guide/ , 其中一些规范也可借鉴
可参考 Gi Admin Pro 源码,如有更好的规范建议,可以联系作者本人
Day.js 一个极简的 JavaScript 库,可以为现代浏览器解析、验证、操作和显示日期和时间 2K 大小
Lodash 一个一致性、模块化、高性能的 JavaScript 实用工具库
Xe-utils 一个 JavaScript 函数库、工具类
V-Viewer 基于 viewer.js 的 vue 图像查看器组件,支持旋转、缩放等操作
其他
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。