Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
app
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hel-guide
app
Commits
69bf20fe
Commit
69bf20fe
authored
Sep 13, 2017
by
JingChao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates angular/hlsUtil.md
Auto commit by GitBook Editor
parent
615a554e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
16 deletions
+7
-16
hlsUtil.md
angular/hlsUtil.md
+7
-16
No files found.
angular/hlsUtil.md
View file @
69bf20fe
...
...
@@ -282,25 +282,16 @@ vm.test = {}
- 参数4 `function`回调函数function,返回index 选择的list集合的index和下拉框的父对象,会在对象中插入code和code_n字段
- 调用实例如下
```
javascript
vm.test = {}
vm.selectBpType = function () {
var list =
[
{
"code": "NP",
"code_name": "个人"
}, {
"code": "ORG",
"code_name": "企业"
}
];
var ttile = '客户分类';
hlsUtil.selectList(list, ttile, 'bp_type', vm.test, function (index, result) {
console.log(angular.toJson(list
[
index
]
));
console.log(angular.toJson(result));//{"bp_type":"NP","bp_type_n":"个人"}
vm.selectBrand = function () {
hlsUtil.selectSearchList(vm.brands, 'brand_id', vm.test, function (index, result) {
console.log(angular.toJson(vm.brands
[
index
]
));
vm.test = result;
});
}
}
;
```
-
实现效果如下
!
[](
/img/selectSearchlist.png
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment