@@ -27,6 +27,8 @@ export function submitQueryData(_this, paramType = true) {
}
_this.pageColumn.forEach(item => {
+ // 自定义类型不做处理
+ if (item.stype === 'custom') return
let postValue = '',
field = item.field,
isCompares = true,
@@ -60,6 +60,11 @@
name: 'DxTableList',
components: { NtRemoveForm, NtForm, emBtnListPro, searchFormPro, NtList },
props: {
+ // 隐藏按钮区域
+ hideBtnRow:{
+ type: Boolean,
+ default:false
+ },
listType: {
type: Array | String,
default: 'table'
@@ -229,10 +234,6 @@
isMultiple: {
type: Boolean,
default: false
- },
- showHead: {
- type: Boolean,
- default: true
},
provide() {
@@ -2,6 +2,8 @@
1.02
增加功能:
1.增加selection-change事件
+ 2.去掉参数showHead,使用hideBtnRow
+
修改文件:
list\src\main.vue