摘要: ![](https://img2024.cnblogs.com/blog/3261790/202410/3261790-20241018084437765-912361919.png) 阅读全文
posted @ 2024-10-18 08:45 饼MIN 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 实现一个四列布局 每行的行间距5px <div style=" display: grid; grid-template-columns: repeat(4, 1fr); row-gap: 5px; " > <NCheckbox :class="{ 'mr-3': lang == 'cn' }" v 阅读全文
posted @ 2024-10-16 15:27 饼MIN 阅读(5) 评论(0) 推荐(0) 编辑
摘要: { title: $t('program-edit-name'), key: 'programName', fixed: 'left', width: 190, ellipsis: { tooltip: true, }, render(row) { return h( NTooltip, { tri 阅读全文
posted @ 2024-08-29 16:37 饼MIN 阅读(6) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2024.cnblogs.com/blog/3261790/202408/3261790-20240829140643564-1568691242.png) 阅读全文
posted @ 2024-08-29 14:06 饼MIN 阅读(4) 评论(0) 推荐(0) 编辑
摘要: console.log打印出的数据竟然不对 阅读全文
posted @ 2024-06-26 09:40 饼MIN 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 表单的规则可以只写在表单项上 表单校验可以多个判断 <n-form-item path="data" :label="$t('Date')" :rule="dataRule"> <n-select :disabled="props.mode '编辑' ||(props.mode '添加' && di 阅读全文
posted @ 2024-06-20 09:47 饼MIN 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 按钮触发模态框的组件 <template> <n-button type="primary" @click="onClick"> <template #icon> <!-- <n-icon> <PlusOutlined /> </n-icon> --> </template> {{ $t('AddD 阅读全文
posted @ 2024-06-19 17:49 饼MIN 阅读(76) 评论(0) 推荐(0) 编辑
摘要: { title: $t('fileName'), key: 'name', width: 180, align: 'left', fixed: 'left', render(row) { return h('div', { style: { display: 'flex', alignItems: 阅读全文
posted @ 2024-05-21 09:14 饼MIN 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 要使用箭头函数,进行条件判断 直接用三元运算符不可行 阅读全文
posted @ 2024-04-01 15:49 饼MIN 阅读(105) 评论(0) 推荐(0) 编辑
摘要: { key: 'type', title: $t('cmdType'), width: 150, align: 'center', render(t) { switch (t.type) { case 2: return h('span', { innerText: $t('setCmd'), }) 阅读全文
posted @ 2024-02-19 11:42 饼MIN 阅读(69) 评论(0) 推荐(0) 编辑