Просмотр исходного кода

处置力量一张图基本布局

caozhaorui 1 год назад
Родитель
Сommit
b442a6b21b

+ 1 - 1
src/views/gis/business/clue/index.vue

@@ -209,7 +209,7 @@ export default defineComponent({
 @import "../main";
 .clue {
   flex: 1;
-  padding: 0 12px;
+  padding: 0 12px 10px 12px;
   display: flex;
   flex-direction: column;
   overflow: hidden;

+ 6 - 3
src/views/gis/business/enterprise/index.vue

@@ -7,7 +7,7 @@
       <div class="__gis-business-main_title">企业列表</div>
       <div class="form">
         <CusFormColumn
-            labelWidth="50"
+            labelWidth="44"
             :span="24"
             link="select"
             label="类型:"
@@ -20,7 +20,7 @@
         />
         <div class="form-two">
           <CusFormColumn
-              labelWidth="50"
+              labelWidth="44"
               :span="24"
               label="搜索:"
               v-model:param="enterprise.tempForm.name"
@@ -142,7 +142,7 @@ export default defineComponent({
 @import "../main";
 .enterprise {
   flex: 1;
-  padding: 0 12px;
+  padding: 0 12px 10px 12px;
   display: flex;
   flex-direction: column;
   overflow: hidden;
@@ -186,6 +186,9 @@ export default defineComponent({
         }
       }
     }
+    .__cus-pagination {
+      height: 20px;
+    }
   }
 }
 </style>

+ 158 - 3
src/views/gis/business/power/index.vue

@@ -1,5 +1,59 @@
 <template>
-  处置力量一张图
+  <BusinessMainCom title="企业一张图">
+    <div class="power">
+      <div class="__gis-business-main_title">数量统计</div>
+      <FocusContentCom class="one">1</FocusContentCom>
+      <div class="__gis-business-main_title">区域分布</div>
+      <FocusContentCom class="two">2</FocusContentCom>
+      <div class="__gis-business-main_title">处置力量列表</div>
+      <div class="form">
+        <div class="form-one">
+          <CusFormColumn
+              labelWidth="44"
+              :span="24"
+              link="select"
+              label="区域:"
+              v-model:param="power.tempForm.area"
+              static
+              :options="[]"
+          />
+          <CusFormColumn
+              labelWidth="44"
+              :span="24"
+              link="select"
+              label="状态:"
+              v-model:param="power.tempForm.status"
+              static
+              :options="[]"
+          />
+        </div>
+        <div class="form-two">
+          <CusFormColumn
+              labelWidth="44"
+              :span="24"
+              label="搜索:"
+              v-model:param="power.tempForm.text"
+          />
+          <div class="__cus-buttons-2">
+            <div class="__cus-button-submit __hover" @click="onSearch">搜索</div>
+            <div class="__cus-button-cancel __hover" @click="onReset">重置</div>
+          </div>
+        </div>
+      </div>
+      <div class="table">
+        <CusTable
+            ref="ref_cusTable"
+            :tableData="power.table.data"
+            :tableHead="power.table.head"
+            :total="power.table.total"
+            :page="power.table.pageNum"
+            :pageSize="power.table.pageSize"
+            @handlePage="handlePage"
+        >
+        </CusTable>
+      </div>
+    </div>
+  </BusinessMainCom>
 </template>
 
 <script lang="ts">
@@ -18,25 +72,126 @@ import {
 import {useStore} from 'vuex'
 import {useRouter, useRoute} from 'vue-router'
 import {ElMessage, ElMessageBox} from "element-plus";
+import BusinessMainCom from '../common/business-main.vue'
+import FocusContentCom from '../common/focus-content.vue'
 
 export default defineComponent({
   name: '',
-  components: {},
+  components: {
+    BusinessMainCom,
+    FocusContentCom,
+  },
   props: {},
   setup(props, {emit}) {
     const store = useStore();
     const router = useRouter();
     const route = useRoute();
     const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
-    const state = reactive({})
+    const state = reactive({
+      power: {
+        form: {},
+        tempForm: {
+          area: '',
+          status: '',
+          text: ''
+        },
+        table: {
+          head: [
+            {value: "name", label: "姓名", show: true,},
+            {value: "phone", label: "联系电话", show: true},
+            {value: "area", label: "管辖区域", show: true},
+            {value: "status", label: "状态", show: true},
+          ],
+          data: <any>[],
+          pageNum: 1,
+          pageSize: 10,
+          total: 0
+        }
+      }
+    })
+    const onSearch = () => {
+      state.power.table.pageNum = 1
+      state.power.form = JSON.parse(JSON.stringify(state.power.tempForm))
+      handleSearch()
+    }
+    const onReset = () => {
+      state.power.tempForm = {
+        area: '',
+        status: '',
+        text: ''
+      }
+      onSearch()
+    }
+    const handleSearch = () => {
+      state.power.table.data = []
+      state.power.table.total = 100
+      for (let i = 0; i < 10; i++) {
+        state.power.table.data.push({
+          name: '张三',
+          phone: '13810101010',
+          area: '海口市',
+          status: '可调度',
+        })
+      }
+    }
+    const handlePage = ({page, pageSize}: any) => {
+      state.power.table.pageNum = page
+      state.power.table.pageSize = pageSize
+      handleSearch()
+    }
     onMounted(() => {
+      state.power.form = JSON.parse(JSON.stringify(state.power.tempForm))
+      handleSearch()
     })
     return {
       ...toRefs(state),
+      onSearch,
+      onReset,
+      handlePage,
     }
   },
 })
 </script>
 
 <style scoped lang="scss">
+@import "../main";
+.power {
+  flex: 1;
+  padding: 0 12px 10px 12px;
+  display: flex;
+  flex-direction: column;
+  overflow: hidden;
+  .one {
+    height: 98px;
+  }
+  .two {
+    height: 262px;
+  }
+  .form {
+    :deep(.el-form-item) {
+      margin-bottom: 7px;
+    }
+    .form-one {
+      display: flex;
+      >div {
+        width: calc((100% - 10px) / 2);
+        flex: unset;
+        &:last-child {
+          margin-left: 10px;
+        }
+      }
+    }
+    .form-two {
+      display: flex;
+      align-items: flex-start;
+      .cus-form-column {
+        flex: 1;
+        margin-right: 8px;
+      }
+    }
+  }
+  .table {
+    flex: 1;
+  }
+}
 </style>

+ 1 - 1
src/views/gis/business/resources/index.vue

@@ -5,7 +5,7 @@
         类型分布
         <div class="area">
           <CusFormColumn
-              labelWidth="50"
+              labelWidth="44"
               :span="24"
               link="select"
               label="区域:"

+ 3 - 3
src/views/gis/business/situation/index.vue

@@ -44,7 +44,7 @@
             <div class="__cus-button-cancel __hover" @click="onResetFzssj">重置</div>
           </div>
         </div>
-        <div class="table" :style="`height: calc(60px + ${fzssj.table.data.length} * 40px);`">
+        <div class="table" :style="`height: calc(66px + ${fzssj.table.data.length} * 40px);`">
           <CusTable
               ref="ref_cusTable"
               :tableData="fzssj.table.data"
@@ -215,8 +215,8 @@ export default defineComponent({
 @import "../main";
 .situation {
   flex: 1;
-  padding: 0 12px;
-  display: flex;
+  padding: 0 12px 10px 12px;
+    display: flex;
   flex-direction: column;
   overflow: hidden;
   .statistic-form {