From a312e0dd96d8f7e96fb3341f1a55561b12394405 Mon Sep 17 00:00:00 2001 From: 徐旺旺 <11530253@qq.com> Date: 星期日, 30 五月 2021 12:29:48 +0800 Subject: [PATCH] Merge branch 'develop' of http://xearth.cn:6600/r/wuyushui/SewerAndRainNetwork into develop --- src/components/base-page/enterprise-emergency/events-reported/ReportLocation.vue | 41 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 41 insertions(+), 0 deletions(-) diff --git a/src/components/base-page/enterprise-emergency/events-reported/ReportLocation.vue b/src/components/base-page/enterprise-emergency/events-reported/ReportLocation.vue new file mode 100644 index 0000000..e42ad35 --- /dev/null +++ b/src/components/base-page/enterprise-emergency/events-reported/ReportLocation.vue @@ -0,0 +1,41 @@ +<template> + <div class="report-location-box"> + <el-tabs v-model="activeName"> + <el-tab-pane label="鎼滅储瀹氫綅" name="first"> + <ReportLocationSearch></ReportLocationSearch> + </el-tab-pane> + <el-tab-pane label="绠℃瀹氫綅" name="second"> + <ReportLocationSection></ReportLocationSection> + </el-tab-pane> + <el-tab-pane label="缁忕含搴﹀畾浣�" name="third"> + <ReportLocationPoint></ReportLocationPoint> + </el-tab-pane> + </el-tabs> + </div> +</template> + +<script> + +// 绠℃瀹氫綅缁勪欢 +import ReportLocationSection from './ReportLocationSection' +import ReportLocationSearch from './ReportLocationSearch' +import ReportLocationPoint from './ReportLocationPoint' + +export default { + name: 'ReportLocation', + components: { + ReportLocationSearch, + ReportLocationSection, + ReportLocationPoint + }, + data () { + return { + // active tab鍒囨崲 + activeName: 'first' + } + } +} +</script> + +<style lang="less" scoped> +</style> -- Gitblit v1.8.0