uniapp-uadmin 一款基於uniapp+uview-ui+echarts+mockjs
等技術構建開發的跨平臺手機後臺管理系統專案。
專案中每一個UI模組均是採用背景毛玻璃質感效果。支援動態全域性換膚。
uni-uadmin 整合了圖表、自定義表格、表單、瀑布流及富文字編輯器
等業務模組,動態許可權管理
,錯誤頁處理
,支援編譯至APP+H5+小程式端
專案中的圖表使用的是uniapp-echarts多端圖表元件庫。表格元件則是自己開發的一個uniapp自定義表格元件ua-table。
ua-dock 選單支援左右滑動、自定義圖示及標題文字+紅點提示、點選選項返回索引,自定義背景色、自適應寬度。
<template>
<view class="ua__dockbar">
<scroll-view class="ua__dock-scroll ua__filter" :class="platform" scroll-x :style="{'background': bgcolor}">
<view class="ua__dock-wrap">
<!-- Tab選單項 -->
<block v-for="(item, index) in menu" :key="index">
<view v-if="item.type == 'divider'" class="ua__dock-divider"></view>
<view v-else class="ua__dock-item" :class="currentTabIndex == index ? 'cur' : ''" @click="switchTab(index, item)">
<text v-if="item.icon" class="iconfont nvuefont" :class="item.icon">{{item.icon}}</text>
<image v-if="item.img" :src="item.img" class="iconimg" :style="{'font-size': item.iconSize}" />
<text v-if="item.badge" class="ua__badge ua__dock-badge">{{item.badge}}</text>
<text v-if="item.dot" class="ua__badge-dot ua__dock-badgeDot"></text>
</view>
</block>
</view>
</scroll-view>
</view>
</template>
支援如下引數配置。
props: {
// 當前索引
current: { type: [Number, String], default: 0 },
// 背景色
bgcolor: { type: String, default: null },
/**
* [ 選單選項 ]
type 選單型別 type: 'tab'支援uni.switchTab切換 type: 'divider'分割線
path 選單頁面地址
icon 選單圖示-iconfont圖示
img 選單圖片
color 選單圖示顏色
title 標題
badge 圓點數字
dot 小紅點
*/
menu: {
type: Array,
default: () => [
/* Tab選單 */
{
type: 'tab',
path: '/pages/index/index',
icon: `\ue619`,
color: '#2979ff',
title: '首頁',
},
{
type: 'tab',
path: '/pages/component/index',
icon: 'icon-component',
color: '#17c956',
title: '元件',
badge: 5,
},
{
type: 'tab',
path: '/pages/permission/index',
icon: 'icon-auth',
color: '#f44336',
title: '許可權管理',
},
{
type: 'tab',
path: '/pages/setting/index',
icon: 'icon-wo',
color: '#8d1cff',
title: '設定',
dot: true,
},
{
path: '/pages/error/404',
img: require('@/static/mac/keychain.png'),
title: '錯誤頁面',
},
{ type: 'divider' },
/* Nav選單 */
{
img: require('@/static/logo.png'),
title: 'github',
},
{
img: 'https://www.uviewui.com/common/logo.png',
title: 'gitee',
},
{
img: require('@/static/mac/colorsync.png'),
title: '皮膚',
},
{
img: require('@/static/mac/info.png'),
title: '關於',
},
{ type: 'divider' },
{
img: require('@/static/mac/bin.png'),
title: '回收站',
badge: 12,
},
]
},
}
專案中的公共模組採用的頂部自定義導航+內容區+底部dock
<template>
<view class="ua__pageview flexbox flex-col" :style="{'--SKIN': $store.state.skin, 'background': bgcolor, 'color': color}">
<slot name="header" />
<!-- //主容器 -->
<view class="ua__scrollview flex1">
<slot />
</view>
<!-- //底部 -->
<slot name="footer" />
<!-- //dock選單 -->
<ua-dock v-if="dock && dock != 'false'" @click="handleDockClick" />
<!-- //函式式彈框 -->
<ua-popup ref="uapopup" />
<!-- //換膚彈框模板 -->
<ua-popup v-model="isVisibleSkin" position="right">
<Skin />
</ua-popup>
</view>
</template>
ua-table 一款uniapp自定義表格元件,支援全選、單選,列寬/居中及可左右、上下滑動固定表頭及列,支援點選行返回行資料,返回單選及多選行列資料,動態slot插槽等功能。
呼叫非常簡單,通過如下方式即可快速建立一個uniapp表格。
<ua-table
:columns="columns"
headerBgColor="#eee"
:headerBold="true"
stripe
padding="5px 0"
:data="data.list"
height="450rpx"
>
</ua-table>
<script>
import Mock from 'mockjs'
export default {
data() {
return {
columns: [
{type: 'index', align: 'center', width: 100, fixed: true}, // 索引序號
{prop: 'title', label: '標題', align: 'left', width: '350'},
{prop: 'num', label: '搜尋量', align: 'center', width: 120},
],
data: Mock.mock({
total: 100,
page: 1,
pagesize: 10,
'list|10': [
{
id: '@id()',
title: '@ctitle(10, 20)',
num: '@integer(1000,10000)'
}
]
}),
}
}
}
</script>
還可以通過如下slot動態插槽方式,豐富表格內容。
<ua-table
:columns="columns"
headerBgColor="#eee"
:headerBold="true"
:stripe="true"
:data="data.list"
@row-click="handleRowClick"
@select="handleCheck"
height="750rpx"
style="border:1px solid #eee"
>
<template #default="{row, col, index}">
<block v-if="col.slot == 'image'">
<u-image :src="row.image" :lazy-load="true" height="100rpx" width="100rpx" @click="previewImage(row.image)" />
</block>
<block v-if="col.slot == 'switch'">
<u-switch v-model="row.switch" inactive-color="#fff" :size="36"></u-switch>
</block>
<block v-if="col.slot == 'tags'">
<u-tag :text="row.tags" bg-color="#607d8b" color="#fff" mode="dark" size="mini" />
</block>
<block v-if="col.slot == 'progress'">
<u-line-progress active-color="#1fb925" :percent="row.progress" :show-percent="false" :height="16"></u-line-progress>
</block>
<block v-if="col.slot == 'btns'">
<view class="ua__link success" @click.stop="handleFormEdit(row)">編輯</view>
<view class="ua__link error" @click.stop="handleDel(row, index)">刪除</view>
</block>
</template>
</ua-table>
<script>
import Mock from 'mockjs'
export default {
data() {
return {
columns: [
{type: 'selection', align: 'center', width: 80, fixed: true}, // 多選
{type: 'index', align: 'center', width: 80, fixed: true}, // 索引序號
{prop: 'author', label: '作者', align: 'center', width: 120},
{prop: 'title', label: '標題', align: 'left', width: 350},
{slot: 'image', label: '圖片', align: 'center', width: 120},
{slot: 'switch', label: '推薦', align: 'center', width: 100},
{slot: 'tags', label: '標籤', align: 'center', width: 100},
{slot: 'progress', label: '熱度', align: 'center', width: 150},
{prop: 'date', label: '釋出時間', align: 'left', width: 300}, // 時間
{slot: 'btns', label: '操作', align: 'center', width: 150, fixed: 'right'}, // 操作
],
data: Mock.mock({
total: 100,
page: 1,
pagesize: 10,
'list|30': [
{
id: '@id()',
author: '@cname()',
title: '@ctitle(10, 20)',
image: 'https://picsum.photos/400/400?random=' + '@guid()',
switch: '@boolean()',
'tags|1': ['admin', 'test', 'dev'],
progress: '@integer(30, 90)',
date: '@datetime()'
}
]
}),
}
}
}
</script>
怎麼樣,是不是使用非常簡單。不過由於uniapp及小程式的機制,自定義插槽功能還不是很完美,後續或許有些改進。
uniapp+uviewUI抖音短視訊/直播例項
本作品採用《CC 協議》,轉載必須註明作者和本文連結