Widget.html
6.02 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="/frontweb/libs/element-ui-2.13.0/lib/theme-chalk/index.css"/>
<link rel="stylesheet" href="/frontweb/libs/layui-v2.5.5/css/layui.css">
<link rel="stylesheet" href="./css/style.css">
<!-- import Vue before Element -->
<script src="/frontweb/libs/jquery/jquery.min.js"></script>
<script src="/frontweb/libs/jquery/jquery.cookie.js"></script>
<script src="/frontweb/common/js/global/global.localStorage.js"></script>
<script src="/frontweb/libs/vue/vue.js"></script>
<!-- import JavaScript -->
<script src="/frontweb/libs/element-ui-2.13.0/lib/index.js"></script>
<script src="/frontweb/libs/echarts/echarts.js"></script>
<script src="/frontweb/libs/layui-v2.5.5/layui.js"></script>
<script src="/frontweb/libs/axios/axios.min.js"></script>
<script src="../../../../js/projecttask/dataTable.js"></script>
<script src="../../../../js/projecttask/common.js"></script>
<script src="../../../../js/common.js"></script>
<script src="../../../../common/js/config.js"></script>
</head>
<style>
</style>
<body>
<div id="app">
<div class="top">
<div class="newList">
<div class="newList-title">
<span>策划生成</span>
</div>
<el-row class="newList-group">
<div class="item" v-for="(item,index) in peroidArr.slice(0,3)" :key="index" @click="peroid(item,index)">
<div class="circle-wrap">
<div class="yuan" :style="bcolor[index]" :class="[item.isSelected?'selected':'no-selected']">
<span>{{item.count}}</span>
</div>
</div>
<div class="bottom-title" :class="[item.isSelected?'selectedSpan':'']">{{item.periodName}}</div>
</div>
</el-row>
</div>
<div class="left">
<div class="title">
<span>行政审批</span>
</div>
<el-row class="group">
<div class="item" v-for="(item,index) in peroidArr.slice(3)" :key="index" @click="peroid(item,index+3)">
<div class="circle-wrap">
<div class="yuan" :style="bcolor[index+3]" :class="[item.isSelected?'selected':'no-selected']">
<span>{{item.count}}</span>
</div>
</div>
<div class="bottom-title" :class="[item.isSelected?'selectedSpans':'']">{{item.periodName}}</div>
</div>
</el-row>
</div>
<!-- <div class="right">-->
<!-- <div class="right-title">-->
<!-- <span>批后监管</span>-->
<!-- </div>-->
<!-- <el-row class="right-group">-->
<!-- <div class="right-item" v-for="(item,index) in jgArr" :key="index" @click="jgarr(item.id)">-->
<!-- <!– <div class="yuan" :style="background: #FF4D4F;box-shadow: 0 3px 8px 0 rgba(208,2,27,0.50);"> –>-->
<!-- <div class="right-yuan" :style="bgcolor[index]">-->
<!-- <span>{{item.count}}</span>-->
<!-- </div>-->
<!-- <div class="right-bottom-title">{{item.title}}</div>-->
<!-- </div>-->
<!-- </el-row>-->
<!-- </div>-->
</div>
<div class="bottom">
<!-- <div class="input"> -->
<div class="layui-fluid">
<form class="layui-form" action="">
<div class="layui-form-item">
<div class="layui-row layui-col-space10">
<el-row style="margin-left: -14px">
<div id="find">
<div class="div-search">
<img src="\frontweb\view\projecttask\img\menu-document-icon-search.png">
<input id="searchInput" type="text" :placeholder="btnPlaceholder"
style="height: 30px" v-model="inquire">
</div>
<button id="searchbtn" class="btn btn-info btn-search" style="display: inline-block"
type="button" @click="searchJd">
查询
</button>
</div>
<div v-if="id == '1' || id == '2' || id == '3'">
<div style="display: flex;height: 32px;">
<div @click="changeProType('zf')" id="sjsqTable" :class="curProType == 'zf' ? 'select-tables':''" class="tabs-changes">
<img style="transform: translateY(-2px);" src="./img/menu-document-selected.png"/>
<span>政府投资类</span>
</div>
<div @click="changeProType('sh')" id="cgscTable" :class="curProType == 'sh' ? 'select-tables':''" class="tabs-changes">
<img style="transform: translateY(-2px);" src="./img/menu-document-checkbox.png"/>
<span>用地储备类</span>
</div>
</div>
</div>
</el-row>
</div>
</div>
</form>
</div>
<div class="layui-hide-content" style="height: 87%;" v-loading = 'tableLoading'>
<table class="layui-hide" id="test" style="font-size: 14px;color: #5C5C5C;" lay-filter="test" ></table>
</div>
<div id="page"></div>
</div>
</div>
</div>
</body>
<script src="./js/Widget.js"></script>
</html>