Commit 9e39232a by 黄静

hj

parent a81b46a8
<!DOCTYPE html>
<html lang="utf-8">
{% for app_item in app_info %}
<head>
<meta charset="UTF-8">
<title>潜在商机</title>
......@@ -10,7 +11,6 @@
<div class="app">
<div class="reason">App如下:</div>
<div class="info" >
{% for app_item in app_info %}
<div class="png">
<img style="padding-top: 2%"
src={{app_item.app_logo}}>
......@@ -18,24 +18,19 @@
{{app_item.app_name}}
</div>
<div class="app_url">
<input style="margin-top: 1%;margin-bottom: 2%;cursor: pointer" type="button" value="查看" onclick="location.href = '{{app_item.app_url}}'">
<input style="margin-top: 1%;margin-bottom: 2%;cursor: pointer" type="button" value="查看" onclick="app_url()">
</input>
</div>
</div>
{% endfor %}
</div>q
</div>
<div class="reason">网站如下:</div>
<div class="info" >
{% for website in website_info %}
<a class="website" href="{{website.website_url}}">
<a class="website" href="{{website.website_url}}" target="_blank">
{{website.website_name}}
</a>
{% endfor %}
</div>
</div>
</div>
</body>
......@@ -95,4 +90,11 @@
font-size: 12px;
}
</style>
<script>
function app_url(){
window.open('{{app_item.app_url}}')
}
</script>
{% endfor %}
</html>
\ No newline at end of file
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