<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
vue3 + typescript + element-plus
<template> <el-tabs type="border-card" v-model="activeName"> <el-tab-pane :label="item.label" v-for="(item, index) in templateConfig" :key="index" :name="item.name" lazy > <!--所有的 slot內容都在表格內部處理好, columnsType進行區分--> <pro-table :columns="item.columns" :type="item.name" :request-url="requestUrl" > </pro-table> </el-tab-pane> </el-tabs> </template> <script lang="ts" setup> import { ref } from 'vue' import ProTable from './components/ProTable/index.vue' import { ColumnProps, RequestUrl } from './components/ProTable/types' import { projectConfig, projectConfigBatchDelete } from './service/api' const activeName = ref('user') interface TemplateConfig { name: string label: string columns: ColumnProps[], } const requestUrl: RequestUrl = { create: projectConfig, list: projectConfig, update: projectConfig, destroy: projectConfig, batchDelete: projectConfigBatchDelete } const templateConfig = ref<TemplateConfig[]>([ { label: 'ProTable', name: 'user', columns: [ { key: 'userName', title: '使用者名稱', searchType: 'el-input' }, { key: 'password', title: '密碼', searchType: 'el-input' }, { key: 'email', title: '郵箱', searchType: 'el-input' }, { key: 'phone', title: '手機號', searchType: 'el-input' }, { key: 'role', title: '角色', searchType: 'z-select', attrs: { options: [ { label: '管理員', value: 'admin' }, { label: '普通使用者', value: 'user' } ] } }, { key: 'status', title: '狀態', searchType: 'z-select', attrs: { options: [ { label: '啟用', value: 1 }, { label: '禁用', value: 0 } ] }, columnType: 'status' }, { key: 'hasUseArray', title: '是否使用陣列引數?', search: false, searchType: 'useExpandField', show: false, add: false }, { key: 'arrayParams', title: '陣列引數', searchType: 'z-array', search: false, width: 120, add: false, show: false }, { key: 'hasUseArray', title: '是否使用JSON引數?', search: false, searchType: 'useExpandField', show: false, add: false }, { key: 'jsonParams', title: 'JSON引數', searchType: 'z-json', search: false, width: 120, add: false, show: false }, { key: 'createdAt', title: '建立時間', width: 180, searchType: 'el-date-picker', add: false }, { key: 'updatedAt', title: '更新時間', width: 180, searchType: 'el-date-picker', add: false }, { key: 'action', title: '操作', search: false, add: false, width: 150 } ] } ]) </script> <style lang="less"> </style>
頁面整體分為5個區域,
要考慮的問題?
colum
是狀態的時候需要對映成tag
,是陣列
型別的時候對映成表格,是json
的時候需要點選檢視詳情?假設每個表格都要處理的的話就太麻煩,我們希望通過一個欄位來控制它。column
的某一列是否需要複製的功能?實現的過程中有哪些細節?
fixed
定位)。這樣使用者可以在最大區域內看到表格的內容。standard
風格。<div class='box'> <div class='z'></div> </div>
*{ box-sizing: border-box; } .box{ display: inline-block; vertical-align: top; } .z{ height: 32px; border: 1px solid; width: 100px; display: inline-block; }
如果把盒子變成了行內
元素之後,若其內部還是行內元素,那麼就會產生間隙,就會導致其高度與父元素高度不同。如下。
解決方法也很簡單,則需要設定其子元素的vertical-align
屬性,或者設定font-size: 0
,其根本原因是因為中間的文字元素也佔位置。再或者不使用inline-block
,換做inline-flex
屬性完全沒有問題,因為在element-plus
元件庫中也大量的使用了這個屬性,相容性也很nice。
這個幾個解決方法很早就知道了,就是關於vertical-algin
這個,以及與line-height
的關係還是有點模糊,一直也沒去深究。
放兩篇文章
還有聯想到baseline
這個東西在flex
,align-items屬性:交叉軸上的一個屬性很像。
pageIndex
要重置為1,刪除資料的時候也是一樣。pageIndex
不變,還是當前頁碼。pageIndex
為1
。當用戶操作不會影響資料總條數的時候,pageSize
還維持當前不變。v-bind="object"
和一個相同的獨立 attribute。開發者可以自己選擇要保留哪一個。檔案地址# v-bind 合併行為
參考文章
JavaScript API——ResizeObserver 的使用
slot
迭代中....
我這裡使用的是 xampp
安裝的,我們來檢視一下版本。這是什麼版本?假的吧,真的到10了嗎? 先不管了,能用就行。
建表
CREATE TABLE `project_config` ( `id` int NOT NULL AUTO_INCREMENT COMMENT '主鍵', `type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '設定型別', `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '設定的json字串', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 65 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = COMPACT;
npm init egg --type=simple
專案目錄大致如下所示,
npm install --save egg-sequelize mysql2
config/plugin.js
中引入 egg-sequelize 外掛, 這裡我們引入了一個庫egg-cors
來幫我們實現cors
。'use strict'; /** @type Egg.EggPlugin */ exports.sequelize = { enable: true, package: 'egg-sequelize', }; exports.cors = { enable: true, package: 'egg-cors', };
config/config.default.js
中編寫 sequelize 設定/* eslint valid-jsdoc: "off" */ 'use strict'; /** * @param {Egg.EggAppInfo} appInfo app info */ module.exports = appInfo => { /** * built-in config * @type {Egg.EggAppConfig} **/ const config = exports = {}; // use for cookie sign key, should change to your own and keep security config.keys = appInfo.name + '_1655529530112_7627'; // add your middleware config here config.middleware = []; config.security = { csrf: { enable: false, ignoreJSON: true, }, }; config.cors = { origin: '*', allowMethods: 'GET,HEAD,PUT,POST,DELETE,PATCH', }; // add your user config here const userConfig = { // myAppName: 'egg', }; // sequelize const sequelize = { dialect: 'mysql', host: '127.0.0.1', port: 3306, username: 'root', password: '123456', database: 'test_database', timezone: '+08:00', dialectOptions: { dateStrings: true, typeCast: true, }, define: { freezeTableName: true, // 模型名強制和表明一致 underscored: true, // 欄位以下劃線(_)來分割(預設是駝峰命名風格) }, }; return { ...config, ...userConfig, sequelize, }; };
1、時間格式化
型別需要採用:Sequelize.DATE
初始化Sequelize的時候傳入dialectOptions引數,及timezone
timezone: '+08:00', // 改為標準時區 dialectOptions: { dateStrings: true, typeCast: true, },
下面就開始編寫
對這塊需要安裝lodash
,懂的都懂。
controller/ProjectConfig.js
'use strict'; const { success } = require('../utils/res'); const { omit, pick } = require('lodash'); const Controller = require('egg').Controller; class ProjectConfigController extends Controller { async index() { const { ctx } = this; const { pageSize, pageIndex } = ctx.query; const { Op, fn, col, where, literal } = this.app.Sequelize; // 固定的查詢引數 const stableQuery = pick(ctx.query, [ 'type', 'createdAt', 'updatedAt' ]); const stableQueryArgs = Object.keys(stableQuery) .filter(key => Boolean(stableQuery[key])) .map(key => { return { [key]: stableQuery[key], }; }); const whereCondition = omit(ctx.query, [ 'pageIndex', 'pageSize', 'type', 'createdAt', 'updatedAt' ]); // 需要模糊查詢的引數 const whereArgs = Object.keys(whereCondition) .filter(key => Boolean(whereCondition[key])) .map(key => { return where(fn('json_extract', col('value'), literal(`'$.${key}'`)), { [Op.like]: `%${whereCondition[key]}%`, }); }); const query = { where: { [Op.and]: [ ...stableQueryArgs, ...whereArgs, ], }, order: [ [ 'createdAt', 'DESC' ], ], limit: Number(pageSize), // 每頁顯示數量 offset: (pageIndex - 1) * pageSize, // 當前頁數 }; const data = await ctx.model.ProjectConfig.findAndCountAll(query); ctx.body = success(data); } async create() { const { ctx } = this; const { type, value } = ctx.request.body; const data = await ctx.model.ProjectConfig.create({ type, value }); ctx.body = success(data); } async update() { const { ctx } = this; const { type, value } = ctx.request.body; const { id } = ctx.params; const data = await ctx.model.ProjectConfig.update({ type, value }, { where: { id } }); ctx.body = success(data); } async destroy() { const { ctx } = this; const { id } = ctx.params; console.log(id); const data = await ctx.model.ProjectConfig.destroy({ where: { id } }); ctx.body = success(data); } async batchDestroy() { const { ctx } = this; const { ids } = ctx.request.body; console.log(ids); const { Op } = this.app.Sequelize; const data = await ctx.model.ProjectConfig.destroy({ where: { id: { [Op.in]: ids, }, }, }); ctx.body = success(data); } } module.exports = ProjectConfigController;
模糊查詢
SELECT json_extract(欄位名,'$.json結構') FROM 表名;
sequelize高階查詢
Post.findAll({ where: sequelize.where(sequelize.fn('char_length', sequelize.col('content')), 7) }); // SELECT ... FROM "posts" AS "post" WHERE char_length("content") = 7
中文檔案,英文看的吃力,看中文的也無妨,不寒磣。^_^
model/project_config.js
'use strict'; module.exports = app => { const { STRING, INTEGER, TEXT, DATE } = app.Sequelize; const ProjectConfig = app.model.define('project_config', { id: { type: INTEGER, primaryKey: true, autoIncrement: true }, type: { type: STRING }, value: { type: TEXT, get() { return this.getDataValue('value') ? JSON.parse(this.getDataValue('value')) : null; }, set(value) { this.setDataValue('value', JSON.stringify(value)); }, }, createdAt: { type: DATE }, updatedAt: { type: DATE }, }); return ProjectConfig; };
'use strict'; /** * @param {Egg.Application} app - egg application */ module.exports = app => { const { router, controller } = app; router.get('/api/projectConfig', controller.projectConfig.index); router.post('/api/projectConfig', controller.projectConfig.create); router.put('/api/projectConfig/:id', controller.projectConfig.update); router.delete('/api/projectConfig/:id', controller.projectConfig.destroy); router.post('/api/projectConfig/batchDelete', controller.projectConfig.batchDestroy); };
先快速測試一把,然後去對前端程式碼。
keyof
、typeof
、in
等關鍵字來進行一些強大的型別操作interface A { x: number; y: string; } // 拿到 A 型別的 key 字面量列舉型別,相當於 type B = 'x' | 'y' type B = keyof A; const json = { foo: 1, bar: 'hi' }; // 根據 ts 的型別推論生成一個型別。此時 C 的型別為 { foo: number; bar: string; } type C = typeof json; // 根據已有型別生成相關新型別,此處將 A 型別的所有成員變成了可選項,相當於 type D = { x?: number; y?: string; }; type D = { [T in keyof A]?: A[T]; };
在比如用一個聯合型別來約束物件的key
,用interface
我就沒實現,貌似.
export type FormItemType = 'el-input' | 'z-select' | 'el-date-picker' // 目前發現 interface 的key 只能是三種 string number symbol keyof any type IPlaceholderMapping = { [key in FormItemType]: string } export const placeholderMapping: IPlaceholderMapping = { 'el-input': '請輸入', 'z-select': '請選擇', 'el-date-picker': '請選擇日期' }
倉庫地址
以上就是使用Vue3+ts 開發ProTable原始碼教學範例的詳細內容,更多關於Vue3+ts 開發ProTable的資料請關注it145.com其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45