-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
207 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{{ template "header" . }} | ||
<div class="col s12"> | ||
<h4 class="center">基金经理查询结果</h4> | ||
<p class="tiny center">以下所有数据与信息仅供参考,不构成投资建议</p> | ||
<div> | ||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3022214826355647" | ||
crossorigin="anonymous"></script> | ||
<ins class="adsbygoogle" | ||
style="display:block" | ||
data-ad-format="fluid" | ||
data-ad-layout-key="-fb+5w+4e-db+86" | ||
data-ad-client="ca-pub-3022214826355647" | ||
data-ad-slot="6583498372"></ins> | ||
<script> | ||
(adsbygoogle = window.adsbygoogle || []).push({}); | ||
</script> | ||
</div> | ||
<div class="divider"></div> | ||
<table class="striped centered"> | ||
<tbody> | ||
{{ range .Managers }} | ||
<tr> | ||
<td> | ||
<span class="copybtn waves-effect waves-red" data-clipboard-text="{{ .Fcode }}"> | ||
<a target="_blank" href="http://fund.eastmoney.com/{{ .ID }}.html">{{ .Name }}</a> | ||
<i class="material-icons tiny">content_copy</i> | ||
</span> | ||
</td> | ||
<td>年化回报:{{ .Yieldse }}%</td> | ||
<td>任职期间最佳基金回报:{{ .WorkingBestReturn }}%</td> | ||
<td>现任最佳基金:{{ .CurrentBestFundName }}({{ .CurrentBestFundCode }})%</td> | ||
</tr> | ||
{{ else }} | ||
<th><td>没有找到同时持仓指定股票的基金</td></th> | ||
{{ end }} | ||
</tbody> | ||
</table> | ||
</div> | ||
{{ template "footer" . }} |