Catchadmin 使用相关问题
- 想修改弹出框的默认宽度?
<!-- index.vue 中,给catch-table 增加属性:dialog-width="'800px'"-->
<catch-table:columns="columns":api="api":search-form="search":dialog-width="'800px'"><template #dialog="row"><Create :primary="row?.id" :api="api" /></template></catch-table>
- 上传图片报错
首先看图片地址是否能在浏览器正常访问,如果不能,在根目录执行
php artisan storage:link
3.表单中设置排序默认值失效
//这个无效
formData.sort = 1
// 设置默认值
watch(() => formData.value,(newVal) => {// 仅在新增模式下设置默认值if (!props.primary && newVal) {// 设置默认排序if (newVal.sort === undefined || newVal.sort === null) {newVal.sort = 1}}},{ immediate: true, deep: true }
)