我这里加了false 但是还会显示出来问答社区
language
const baTable = new baTableClass(
new baTableApi('/admin/classify.Video/'),
{
pk: 'classify_video_id',
column: [
{ type: 'selection', align: 'center', operator: false },
{ label: t('classify.video.classify_video_id'), prop: 'classify_video_id', align: 'center', width: 70, operator: 'RANGE', sortable: 'custom' },
{ label: t('classify.video.classify__classify_name'), prop: 'classify.classify_name', align: 'center', operatorPlaceholder: t('Fuzzy query'), render: 'tags', operator: 'eq' },
// 远程下拉选择框
{ label: t('classify.video.classify__classify_name'), prop: 'classify.classify_name',align: 'center',comSearchRender: 'remoteSelect', remote: {
// 主键,下拉 value
pk: 'classify_id',
// 字段,下拉 label
field: 'classify_name',
// 远程接口URL
// 比如想要获取 user(会员) 表的数据,后台`会员管理`控制器URL为`/index.php/admin/user.user/index`
// 因为已经通过 CRUD 生成过`会员管理`功能,所以该URL地址可以从`/@/api/controllerUrls`导入使用,如下面的 userUser
// 该URL地址通常等于对应后台管理功能的`查看`操作请求的URL
remoteUrl: "/admin/Classify/",
show:false,
// 额外的请求参数
params: {},
}},
{ label: t('classify.video.video_title'), prop: 'video_title', align: 'center', operatorPlaceholder: t('Fuzzy query'), operator: 'LIKE', sortable: false },
{ label: t('classify.video.video_cover'), prop: 'video_cover', align: 'center', render: 'image', operator: false },
{ label: t('classify.video.create_time'), prop: 'create_time', align: 'center', render: 'datetime', operator: 'RANGE', sortable: 'custom', width: 160, timeFormat: 'yyyy-mm-dd hh:MM:ss' },
{ label: t('Operate'), align: 'center', width: 100, render: 'buttons', buttons: optButtons, operator: false },
],
dblClickNotEditColumn: [undefined],
defaultOrder: { prop: 'classify_video_id', order: 'desc' },
},
请先登录
你的show:false给到remote里面了.应该在外面...
噢噢 谢啦
我写了两个,其实删除一个,也可以,学东西我太死板了
- 1
前往