Commit 9e39232a by 黄静

hj

parent a81b46a8
<!DOCTYPE html> <!DOCTYPE html>
<html lang="utf-8"> <html lang="utf-8">
{% for app_item in app_info %}
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>潜在商机</title> <title>潜在商机</title>
...@@ -10,7 +11,6 @@ ...@@ -10,7 +11,6 @@
<div class="app"> <div class="app">
<div class="reason">App如下:</div> <div class="reason">App如下:</div>
<div class="info" > <div class="info" >
{% for app_item in app_info %}
<div class="png"> <div class="png">
<img style="padding-top: 2%" <img style="padding-top: 2%"
src={{app_item.app_logo}}> src={{app_item.app_logo}}>
...@@ -18,24 +18,19 @@ ...@@ -18,24 +18,19 @@
{{app_item.app_name}} {{app_item.app_name}}
</div> </div>
<div class="app_url"> <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>
</div> </div>q
{% endfor %}
</div> </div>
<div class="reason">网站如下:</div> <div class="reason">网站如下:</div>
<div class="info" > <div class="info" >
{% for website in website_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}} {{website.website_name}}
</a> </a>
{% endfor %} {% endfor %}
</div> </div>
</div> </div>
</div> </div>
</body> </body>
...@@ -95,4 +90,11 @@ ...@@ -95,4 +90,11 @@
font-size: 12px; font-size: 12px;
} }
</style> </style>
<script>
function app_url(){
window.open('{{app_item.app_url}}')
}
</script>
{% endfor %}
</html> </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