|
@@ -1,11 +1,55 @@
|
|
|
<template>
|
|
|
- <div class="__gis-content-main __box-shadow">
|
|
|
- <div class="__gis-content-main_head">
|
|
|
- <div class="__gis-content-main_head-title"></div>
|
|
|
- <SvgIcon name="close_2" color="#0096FF" size="18"/>
|
|
|
+ <BusinessMainCom title="企业一张图">
|
|
|
+ <div class="enterprise">
|
|
|
+ <div class="__gis-business-main_title">数量统计</div>
|
|
|
+ <FocusContentCom class="one">1</FocusContentCom>
|
|
|
+ <FocusContentCom class="two">2</FocusContentCom>
|
|
|
+ <div class="__gis-business-main_title">企业列表</div>
|
|
|
+ <div class="form">
|
|
|
+ <CusFormColumn
|
|
|
+ labelWidth="50"
|
|
|
+ :span="24"
|
|
|
+ link="select"
|
|
|
+ label="类型:"
|
|
|
+ v-model:param="enterprise.tempForm.type"
|
|
|
+ :options="[
|
|
|
+ {dictLabel: '零关税自用进口生产设备', dictValue: 'lgszyjkscsb'},
|
|
|
+ {dictLabel: '加工增值免关税', dictValue: 'jgzzmgs'},
|
|
|
+ {dictLabel: '零关税进口原辅料', dictValue: 'lgsjkyfl'},
|
|
|
+ ]"
|
|
|
+ />
|
|
|
+ <div class="form-two">
|
|
|
+ <CusFormColumn
|
|
|
+ labelWidth="50"
|
|
|
+ :span="24"
|
|
|
+ label="搜索:"
|
|
|
+ v-model:param="enterprise.tempForm.name"
|
|
|
+ />
|
|
|
+ <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">
|
|
|
+ <div class="table-card">
|
|
|
+ <template v-for="(item, index) in enterprise.table.data">
|
|
|
+ <div class="table-card-item">
|
|
|
+ {{(enterprise.table.pageNum - 1) * enterprise.table.pageSize + index + 1}}.{{item.name}}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+ <el-pagination
|
|
|
+ class="__cus-pagination"
|
|
|
+ :current-page="enterprise.table.pageNum"
|
|
|
+ :page-size="enterprise.table.pageSize"
|
|
|
+ :total="enterprise.table.total"
|
|
|
+ layout="total,prev,pager,next,jumper"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- 企业一张图
|
|
|
- </div>
|
|
|
+ </BusinessMainCom>
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts">
|
|
@@ -24,21 +68,72 @@ 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({
|
|
|
+ expend: true,
|
|
|
+ enterprise: {
|
|
|
+ form: {},
|
|
|
+ tempForm: {
|
|
|
+ type: '',
|
|
|
+ name: ''
|
|
|
+ },
|
|
|
+ table: {
|
|
|
+ data: <any>[],
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ total: 0
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ const onSearch = () => {
|
|
|
+ state.enterprise.table.pageNum = 1
|
|
|
+ state.enterprise.form = JSON.parse(JSON.stringify(state.enterprise.tempForm))
|
|
|
+ handleSearch()
|
|
|
+ }
|
|
|
+ const onReset = () => {
|
|
|
+ state.enterprise.tempForm = {
|
|
|
+ name: '',
|
|
|
+ type: ''
|
|
|
+ }
|
|
|
+ onSearch()
|
|
|
+ }
|
|
|
+ const handleCurrentChange = (val: number) => {
|
|
|
+ state.enterprise.table.pageNum = val
|
|
|
+ handleSearch()
|
|
|
+ }
|
|
|
+ const handleSearch = () => {
|
|
|
+ state.enterprise.table.data = []
|
|
|
+ state.enterprise.table.total = 100
|
|
|
+ for (let i = 0; i < 10; i++) {
|
|
|
+ state.enterprise.table.data.push({
|
|
|
+ name: '永恒印记市场营销策划(海口)有限公司——',
|
|
|
+ type: '零关税自用进口生产设备'
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
onMounted(() => {
|
|
|
+ state.enterprise.form = JSON.parse(JSON.stringify(state.enterprise.tempForm))
|
|
|
+ handleSearch()
|
|
|
})
|
|
|
return {
|
|
|
...toRefs(state),
|
|
|
+ onSearch,
|
|
|
+ onReset,
|
|
|
+ handleCurrentChange
|
|
|
}
|
|
|
},
|
|
|
})
|
|
@@ -46,4 +141,52 @@ export default defineComponent({
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
@import "../main";
|
|
|
+.enterprise {
|
|
|
+ flex: 1;
|
|
|
+ padding: 0 12px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ overflow: hidden;
|
|
|
+ .one {
|
|
|
+ height: 238px;
|
|
|
+ }
|
|
|
+ .two {
|
|
|
+ margin-top: 10px;
|
|
|
+ height: 100px;
|
|
|
+ }
|
|
|
+ .form {
|
|
|
+ :deep(.el-form-item) {
|
|
|
+ margin-bottom: 7px;
|
|
|
+ }
|
|
|
+ .form-two {
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-start;
|
|
|
+ .cus-form-column {
|
|
|
+ flex: 1;
|
|
|
+ margin-right: 8px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .table {
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ overflow: hidden;
|
|
|
+ .table-card {
|
|
|
+ flex: 1;
|
|
|
+ overflow-y: auto;
|
|
|
+ display: grid;
|
|
|
+ row-gap: 10px;
|
|
|
+ .table-card-item {
|
|
|
+ width: 100%;
|
|
|
+ height: 62px;
|
|
|
+ border: 1px solid #D6D6D6;
|
|
|
+ border-radius: 2px;
|
|
|
+ &:hover {
|
|
|
+ background-color: rgba(16,140,243,0.1);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|