1 2 3 4 5 ··· 22 下一页
摘要: .flex{ display: flex; } .flex-1{ flex: 1; } .flex-row{ flex-direction: row; /* 水平排列(默认) */ } .flex-col{ flex-direction: column; } .flex-row-reverse { 阅读全文
posted @ 2025-08-01 16:46 Panax 阅读(8) 评论(0) 推荐(0)
摘要: // 处理参数编码 export const encodeParams = (params) => { if (!params) return '' let str = Object.keys(params) .map(key => { // 处理数组参数 if (Array.isArray(par 阅读全文
posted @ 2025-07-28 17:31 Panax 阅读(4) 评论(0) 推荐(0)
摘要: /** * 参数处理 * @param params 参数 */ export function tansParams(params) { let result = '' for (const propName of Object.keys(params)) { const value = para 阅读全文
posted @ 2025-07-08 14:45 Panax 阅读(16) 评论(0) 推荐(0)
摘要: <table class="new-tableclass" v-if="tableOldData"> <tr> <td colspan="10" class="tableheadclass">干部基本情况登记表</td> </tr> <tr> <td>姓名</td> <td>{{ tableNewD 阅读全文
posted @ 2025-06-16 14:28 Panax 阅读(20) 评论(0) 推荐(0)
摘要: unocss 阅读全文
posted @ 2025-01-10 16:18 Panax 阅读(7) 评论(0) 推荐(0)
摘要: <template> <div class="tableview"> <a-card class="general-card"> <div ref="topheader"> <a-form :model="props.searchData" ref="queryFormRef" style="mar 阅读全文
posted @ 2025-01-10 15:35 Panax 阅读(118) 评论(0) 推荐(0)
摘要: const getElementByClassName = (parent, tagName, classname) => { var aEls = parent.getElementsByTagName(tagName) //找到给定父元素下的给定标签名 var arr = [] //定义一个返回 阅读全文
posted @ 2024-05-30 15:14 Panax 阅读(9) 评论(0) 推荐(0)
摘要: const schema: FormSchema[] = reactive([ { field: 'resource', label: '类型', colProps: { span: 24 }, component: 'RadioGroup', componentProps: { options: 阅读全文
posted @ 2024-05-25 10:35 Panax 阅读(36) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2023-11-01 09:22 Panax 阅读(15) 评论(0) 推荐(0)
摘要: 从头到尾搜索数组:findLast() 、findLastIndex() 从末尾开始搜索 阅读全文
posted @ 2023-07-09 10:22 Panax 阅读(15) 评论(0) 推荐(0)
1 2 3 4 5 ··· 22 下一页