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