Created
January 19, 2015 01:11
-
-
Save DingWeizhe/d032c0a240a881f3645c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div | |
class='row' | |
ng-repeat="stockNo in IQ.Stocks track by $index" | |
ng-init="stock = Stocks[stockNo]" | |
ng-click="LT.ClickStock(stock)" | |
> | |
<div class="cell"> | |
<div class='tac'>{{stockNo}} {{stock.StockNo}}</div> | |
</div> | |
</div> | |
var IQ = { | |
Stocks: [2330,5210] | |
} | |
var Stocks = { | |
"5210": { | |
StockNo: "5210", | |
Name: "寶碩" | |
}, | |
"2330": { | |
StockNo: "2330", | |
Name: "台積電" | |
}, | |
"88889": { | |
StockNo: "88889", | |
Name: "台指" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment