新框架PDA前端(祈禧6月初版本)
南骏 池
3 天以前 3ff569f00d22919e47cab8fb6d7d9867fd115d97
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
<%@ Page Title="" Language="C#" MasterPageFile="~/Mst.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="H5_Default" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
    <style>
        .img {
            height: 50px;
            width: 50px; display:block;
        }
       .van-tab {
          font-size:0.4433rem !important;font-weight:normal
       }
        .van-image {
            display:block;text-align:center; border:solid 1px red;width:100%;
        }
    </style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder2" runat="Server">
<van-tabs v-model="tabActive" sticky color="#000" title-active-color="#000" background="#0283EF" title-inactive-color="#fff" ellipsis="false">
      <van-tab v-for="(itm,index) in modeInfo" :title="itm.groupName" :key="index">
            <template>
             <van-grid :column-num="3" :border="true">
              <van-grid-item v-for="(item1,index1) in itm.child" :key="index1"  icon="photo" text="标题" >
                <a class="font text-center" :href="item1.path+'&tabIdx='+index">
                  <img :src="item1.icoimg" alt="" class="img" style=" display:inline-block" />
               </a>
                  <div><span style="display:inline-block;     font-size: 0.25rem;"> {{item1.pageView}}</span></div>
              </van-grid-item>
            </van-grid>
           </template>
      </van-tab>
</van-tabs>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder3" runat="Server">
     <webnav :active="0"></webnav>
      <comloading  v-if="isLoading"></comloading>
</asp:Content>
<asp:Content ID="Content4" ContentPlaceHolderID="ContentPlaceHolder4" runat="Server">
   <script src="/H5/Js/comLoading.js"></script>
    <script src="Js/comWebNav.js"></script>
   <script src="Js/Default.js?<%=121 %>"></script>
</asp:Content>