|
@@ -71,9 +71,8 @@ export default {
|
|
|
checkedKeys: [], // 选中的key值
|
|
|
checkedData: [], // 选中的数据
|
|
|
defaultSelectedOrgId: [], // 默认选中的组织机构
|
|
|
- selectedKeys: '',
|
|
|
+ selectedKeys: '', // 组织机构id
|
|
|
treeData: [], // 组织机构
|
|
|
- orgId: '', // 组织机构id
|
|
|
storeId: '', // 门店id
|
|
|
columns: [{
|
|
|
title: '序号',
|
|
@@ -129,7 +128,7 @@ export default {
|
|
|
},
|
|
|
onSelect (selectedKeys, info) {
|
|
|
console.log(selectedKeys, '---------------', info)
|
|
|
- this.selectedKeys = selectedKeys[0]
|
|
|
+ this.selectedKeys = selectedKeys[0] // 选中项的id
|
|
|
this.getListData(this.selectedKeys)
|
|
|
},
|
|
|
// 关闭弹窗
|