kz-ui-base 1.0.97 → 1.0.98
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -135,15 +135,35 @@
|
|
|
135
135
|
</el-form-item>
|
|
136
136
|
</el-form>
|
|
137
137
|
</div>
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
138
|
+
<div
|
|
139
|
+
style="margin-bottom: 10px; height: 100px; padding-left: 20px"
|
|
140
|
+
v-if="statistics.length > 0"
|
|
141
|
+
>
|
|
142
|
+
<el-row>
|
|
143
|
+
<el-col
|
|
144
|
+
v-for="(item, index) in statistics"
|
|
145
|
+
:key="index"
|
|
146
|
+
@click.native="onChangeStatistics(item)"
|
|
147
|
+
:span="item.width ? item.width : 3"
|
|
148
|
+
style="cursor: pointer; padding-left: 20px"
|
|
149
|
+
>
|
|
150
|
+
<el-card shadow="always">
|
|
151
|
+
<div slot="header" style="height: 20px; line-height: 20px;font-size: 14px;">
|
|
152
|
+
<span>{{ item.text }}</span>
|
|
153
|
+
</div>
|
|
154
|
+
<div
|
|
155
|
+
style="height: 20px; line-height: 20px;font-size: 20px;"
|
|
156
|
+
:style="{
|
|
157
|
+
color: item.color ? item.color : '#303133',
|
|
158
|
+
'font-weight': 700,
|
|
159
|
+
}"
|
|
160
|
+
>
|
|
161
|
+
{{ item.value }}
|
|
146
162
|
</div>
|
|
163
|
+
</el-card>
|
|
164
|
+
</el-col>
|
|
165
|
+
</el-row>
|
|
166
|
+
</div>
|
|
147
167
|
|
|
148
168
|
<div class="wrapper-container sumrow" style="margin-bottom: 0px; white-space: nowrap">
|
|
149
169
|
<el-row :gutter="10" class="mb8">
|