Commit b9541455 authored by jiangqihao's avatar jiangqihao

查询

parent 9d569344
......@@ -13,17 +13,17 @@ const tableConfig = {
label: '公司名称',
showInSearch: true,
type: 'input',
fixed: 'left',
renderItem: (h, scope, listeners) => {
return h('el-button', {
on: {
click: (e) => listeners.handleDetails(scope.row)
},
props: {
type: 'text'
}
}, scope.row.ID)
}
// fixed: 'left',
// renderItem: (h, scope, listeners) => {
// return h('el-button', {
// on: {
// click: (e) => listeners.handleDetails(scope.row)
// },
// props: {
// type: 'text'
// }
// }, scope.row.ID)
// }
},
// ExtProductGroup_SDK: {
// label: '签约产品组',
......
......@@ -12,7 +12,8 @@
ref="eleTable"
v-bind="tableConfig"
:listeners="tableListeners"
:expand-params="expandParams"
:initialParams="initialParams"
/>
</div>
</div>
......@@ -26,8 +27,10 @@ export default {
inject: ['reload'],
data() {
return {
expandParams: {}, // 筛选条件
tableListeners: {}, // 事件监听对象,供ele-table内部调用
tableConfig: constant
tableConfig: constant,
initialParams: {}
}
},
created() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment