|
@@ -11,7 +11,7 @@
|
|
|
<ul class="item">
|
|
|
<li class="row" :class="{
|
|
|
active: item.isActive
|
|
|
- }" v-for="(item, index) in dataList" :key="index">
|
|
|
+ }" v-for="(item, index) in dataList" :key="index" @click="showModul(item.qx)">
|
|
|
<span class="type">{{ index + 1 }}</span>
|
|
|
<span class="count">{{ item.qx }}</span>
|
|
|
<span class="time">{{ item.zs }}</span>
|
|
@@ -20,15 +20,21 @@
|
|
|
</li>
|
|
|
</ul>
|
|
|
</VueSeamlessScroll>
|
|
|
+ <!-- 区域分布弹窗 -->
|
|
|
+ <basic-modal top="120px" ref="basicInfo" name="基础信息">
|
|
|
+ <BasicInfoModalContent :qy="name" />
|
|
|
+ </basic-modal>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import VueSeamlessScroll from "vue-seamless-scroll";
|
|
|
+import BasicInfoModalContent from "../../Home/components/BasicInfoModalContent.vue";
|
|
|
export default {
|
|
|
name: "RegionalComp",
|
|
|
components: {
|
|
|
VueSeamlessScroll,
|
|
|
+ BasicInfoModalContent
|
|
|
},
|
|
|
props: {
|
|
|
list: {
|
|
@@ -40,7 +46,8 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
dataList: [],
|
|
|
- reload: true
|
|
|
+ reload: true,
|
|
|
+ name:''
|
|
|
}
|
|
|
},
|
|
|
watch:{
|
|
@@ -64,6 +71,13 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
},
|
|
|
+ methods:{
|
|
|
+ //区域分布弹窗
|
|
|
+ showModul(val){
|
|
|
+ this.name=val
|
|
|
+ this.showModal("basicInfo");
|
|
|
+ }
|
|
|
+ }
|
|
|
};
|
|
|
</script>
|
|
|
<style scoped lang="less">
|