home-edit.html 3.39 KB
<!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>