You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
2.1 KiB
51 lines
2.1 KiB
<!--pages/school/index/index.wxml-->
|
|
<view class="out">
|
|
<view class="topImg">
|
|
<image src="https://dsideal.obs.cn-north-1.myhuaweicloud.com/HuangHai/Wx/header.png" style="width: 100%; height: 100%;" mode="widthFix"></image>
|
|
</view>
|
|
<view class="org box bgWhite">
|
|
<view class="orgIcon">
|
|
<l-icon name="jigou" l-class="iconfont" />
|
|
</view>
|
|
<view style="font-size: 16px;">{{bureauName}}</view>
|
|
</view>
|
|
<view class="title">
|
|
<view class="card-dot"></view>
|
|
<text class="title-left-text">项目待办</text>
|
|
</view>
|
|
<view class="projectHandle box">
|
|
<view class="handleItems" wx:for="{{xmMenuList}}" wx:key="index" data-code="{{item.step_code}}" bindtap="onProjectHandle">
|
|
<view class="handleIcon">
|
|
<l-icon color="#3E73FD" size="60" name="{{item.step_jp}}" l-class="iconfont" />
|
|
</view>
|
|
<l-badge l-class="badgeStyle" value="{{item.c}}" show="{{item.c>0}}" max-count="99" dot="{{false}}" content="" number-type="ellipsis" shape="circle">
|
|
<view class="itemTxt">{{item.step_memo}}</view>
|
|
</l-badge>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="title">
|
|
<view class="card-dot"></view>
|
|
<text class="title-left-text">项目查询</text>
|
|
</view>
|
|
<view class="projectQuery">
|
|
<view class="queryItems box">
|
|
<l-grid show-border="{{true}}" row-num="2">
|
|
<l-grid-item wx:for="{{xmcxList}}" wx:key="index" l-grid-item-class="queryItem" key="{{index}}" slot="{{index}}" bind:linitemtap="onGridItem" data-cell="{{item.step_code}}">
|
|
<view class="queryCon">
|
|
<view class="queryIcon">
|
|
<l-icon name="zhizuoyanshouwendang" l-class="iconfont" />
|
|
</view>
|
|
<view class="queryText">
|
|
<view class="num">{{item.count}}</view>
|
|
<view class="txt">{{item.step_name}}</view>
|
|
</view>
|
|
</view>
|
|
</l-grid-item>
|
|
|
|
</l-grid>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view> |