|
|
|
@ -98,7 +98,7 @@
|
|
|
|
|
>
|
|
|
|
|
<el-table-column
|
|
|
|
|
prop="lawAreas"
|
|
|
|
|
label="行政区划"
|
|
|
|
|
label="执法地区"
|
|
|
|
|
header-align="center"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
>
|
|
|
|
@ -111,6 +111,12 @@
|
|
|
|
|
<span v-if="scope.row.lawAreas == '合计'"
|
|
|
|
|
>{{ scope.row.count }}家</span
|
|
|
|
|
>
|
|
|
|
|
<span
|
|
|
|
|
v-else-if="scope.row.lawAreas == '苏州'"
|
|
|
|
|
class="numb-hover"
|
|
|
|
|
@click="routerLink('苏州市局')"
|
|
|
|
|
>{{ scope.row.count }}家</span
|
|
|
|
|
>
|
|
|
|
|
<span v-else class="numb-hover" @click="openDialog(scope.row)"
|
|
|
|
|
>{{ scope.row.count }}家</span
|
|
|
|
|
>
|
|
|
|
@ -168,7 +174,7 @@
|
|
|
|
|
>
|
|
|
|
|
<el-table-column
|
|
|
|
|
prop="lawAreas"
|
|
|
|
|
label="行政区划"
|
|
|
|
|
label="执法地区"
|
|
|
|
|
header-align="center"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
>
|
|
|
|
@ -181,7 +187,10 @@
|
|
|
|
|
<span v-if="scope.row.lawAreas == '合计'"
|
|
|
|
|
>{{ scope.row.count }}家</span
|
|
|
|
|
>
|
|
|
|
|
<span v-else class="numb-hover" @click="routerLink(scope.row)"
|
|
|
|
|
<span
|
|
|
|
|
v-else
|
|
|
|
|
class="numb-hover"
|
|
|
|
|
@click="routerLink(scope.row.lawAreas)"
|
|
|
|
|
>{{ scope.row.count }}家</span
|
|
|
|
|
>
|
|
|
|
|
</template>
|
|
|
|
@ -374,8 +383,8 @@ export default {
|
|
|
|
|
this.tableInfoData = response.data;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
routerLink(row) {
|
|
|
|
|
this.$router.push(`/planManage?lawHierarchy=${row.lawAreas}`);
|
|
|
|
|
routerLink(lawHierarchy) {
|
|
|
|
|
this.$router.push(`/planManage?lawHierarchy=${lawHierarchy}`);
|
|
|
|
|
},
|
|
|
|
|
active(e) {
|
|
|
|
|
this.activeIndex = e;
|
|
|
|
|