Blame view

web/src/main/webapp/html/resourceManage/home-edit.html 3.39 KB
htoooth authored
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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8"/>
        <title>Yoho!Buy运营平台</title>
        
        <script src="/ufoPlatform/js/include.js"></script>
        <script src="/ufoPlatform/js/vue/vue-2.3.4.js"></script>

    <style>
        .app {
            display: inline-block;
            margin-top: 30px;
            margin-bottom: 30px;
        }

        .app-frame {
            width: 400px;
            min-height: 1000px;
            background-color: #F2F2F2;
            border: 1px solid #CCCCCC;
            border-radius: 10px;
            padding-left: 10px;
            padding-right: 10px;
        }

        .title {
            font-size: 25px;
            text-align: center;
            margin-top: 10px;
            margin-bottom: 10px;
        }

        .app-title {
            height: 80px;
            background-image: url('/images/apptitle.png');
            background-size: cover;
            margin-bottom: 10px;
        }

        .banner {
            /* margin-top: 10px; */
        }

        .hot-title {
            font-size: 25px;
            text-align: left;
            padding-top: 10px;
        }

        .hot-body {
            background-color: white;
            text-align: left;
        }

        .hot-image {
            margin-top: 10px;
            width: 25%;
        }

        .select-comp {
            position: relative;
        }

        .select-comp:hover {
        }

        .select-comp:hover .select-comp__mask {
            display: block;
        }

        .select-comp__mask {
            position: absolute;
            display: none;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.5);
        }

        .select-comp:hover .select-comp__mask__btn {
            display: block;
        }

        .select-comp__mask__btn {
            width: 60px;
            height: 20px;
            position: absolute;
            display: none;
            top: 0;
            right: 0;
            cursor: pointer;
            color: white;
            background-color: gray;
        }

        .divide {
            width: 100%;
            height: 10px;
        }

        .banner-table {
            display: inline-block;
            border-collapse: collapse;
        }

        .banner-table  tr th {
            height: 150px;
            border: 1px solid gray;
        }
    </style>
</head>
<body class="easyui-layout">
<div region="north">
    <script>
        document.write(addHead('资源管理', '资源管理/UFO首页'));
    </script>
</div>

<div id="tradeBillsList" region="center">
    <div id="app" style="text-align: center;">
        <div class="app">
            <miniapp-panel title="UFO首页">
                <template v-for="i in list">
                    <smart-floor :item="i" :key="i.id"></smart-floor>
                    <divide></divide>
                </template>
            </miniapp-panel>
        </div>
    </div>
</div>

<script src="/ufoPlatform/js/pages/components.js"></script>
<script src="/ufoPlatform/js/pages/resourceManageApi.js"></script>
<script src="/ufoPlatform/js/pages/resourceManagePage.js"></script>

<script>

var app = new Vue({
    el: '#app',
    data: {
        list: [{
            id: 1,
            type: 1
        }, {
            id: 2,
            type: 2
        }, {
            id: 3,
            type: 3
        }]
    }
});

</script>
</body>
</html>