WIDGET-GOQUERY-FUND.lview 2.33 KB
Newer Older
niminmin's avatar
niminmin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
<?xml version="1.0" encoding="UTF-8"?>

<!--
    $Author:
    $Date: 2018/8/2
    $Revision: 1.0
    微件-资产-进入资金信息查询界面
-->
<a:screen xmlns:a="http://www.leaf-framework.org/application">
    <a:init-procedure/>
    <a:view template="default" package="leaf.ui.std">
        <style>
            html,body{
            width:264px;
            height:264px;
            margin: 0;
            padding: 0;
            color:#000;
            }
            .widget_goquery_fund{
            box-sizing:border-box;
            width:264px;
            height:264px;
            padding:16px;
            background-color:#fff;
            position:relative;
            border:1px solid #F0F0F3;
            cursor:default;
            }
            .widget_goquery_fund .widget_label{
            position:absolute;
            width:40px;
            height:4px;
            top:0;
            left:16px;
            background-color:#5A7FFF;
            }
            .widget_goquery_fund .go_query_fund_img{
            width:232px;
            height:150px;
            display:block;
            text-align:center;
            }
            .widget_goquery_fund .go_query_btn{
            margin-left:24px;
            margin-top:27px;
            height:22px;
            font-family: PingFangSC-Regular;
            font-size: 16px;
            color: #5A7FFF;
            cursor:pointer;
            }
            .widget_goquery_fund .go_query_btn img{
            width:16px;
            margin-left:8px;
            position:relative;
            top:2px;
            }
        </style>
        <script><![CDATA[
        jQuery(document).ready(function(){
            jQuery(".go_query_btn").click(function(){
                //进入资金信息查询界面
            });
        });
            ]]></script>
        <div class="widget_goquery_fund">
            <span class="widget_label"> </span>
            <img class="go_query_fund_img" src="${/request/@context_path}/leafresource/images/widget/go_query_fund.png"/>
            <div class="go_query_btn">
                <span>进入资金信息查询界面</span>
                <img class="icon"  src="${/request/@context_path}/leafresource/images/widget/rightSquare.png"/>
            </div>
        </div>
        <a:screenBody style="display:none"> </a:screenBody>
    </a:view>
</a:screen>