|
@@ -1,5 +1,74 @@
|
|
|
<template>
|
|
|
- 线索一张图
|
|
|
+ <BusinessMainCom title="线索一张图">
|
|
|
+ <div class="clue">
|
|
|
+ <div class="statistic-form">
|
|
|
+ <CusFormColumn
|
|
|
+ labelWidth="72"
|
|
|
+ :span="24"
|
|
|
+ link="select"
|
|
|
+ label="搜索类型:"
|
|
|
+ v-model:param="clue.tempForm.type"
|
|
|
+ :options="[
|
|
|
+ {dictLabel: '零关税自用进口生产设备', dictValue: 'lgszyjkscsb'},
|
|
|
+ {dictLabel: '加工增值免关税', dictValue: 'jgzzmgs'},
|
|
|
+ {dictLabel: '零关税进口原辅料', dictValue: 'lgsjkyfl'},
|
|
|
+ ]"
|
|
|
+ />
|
|
|
+ <div class="statistic-form-two">
|
|
|
+ <CusFormColumn
|
|
|
+ labelWidth="72"
|
|
|
+ :span="24"
|
|
|
+ label="时间范围:"
|
|
|
+ link="datetime"
|
|
|
+ type="datetimerange"
|
|
|
+ v-model:param="clue.tempForm.datetime"
|
|
|
+ :disabled="datetimeType !== '0'"
|
|
|
+ :disabled-date="handleDisabledDate"
|
|
|
+ @calendar-change="(val) => calendarDate = val"
|
|
|
+ @clear="calendarStart = []"
|
|
|
+ />
|
|
|
+ <el-tooltip
|
|
|
+ effect="dark"
|
|
|
+ content="为避免数据量过大导致系统卡顿,本功能最多支持查询周期为6个月的有效线索"
|
|
|
+ placement="top"
|
|
|
+ >
|
|
|
+ <SvgIcon name="tips" size="18" color="#0096FF"/>
|
|
|
+ </el-tooltip>
|
|
|
+ </div>
|
|
|
+ <div class="datetime-buttons">
|
|
|
+ <template v-for="item in datetimeMapper">
|
|
|
+ <div class="datetime-buttons-item __hover" :class="{active: datetimeType === item.value}" @click="datetimeType = item.value">
|
|
|
+ {{item.label}}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+ <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 class="statistic-content">
|
|
|
+ <div class="__gis-business-main_title">有效线索TOP5</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="sh-area">
|
|
|
+ <CusFormColumn
|
|
|
+ :span="24"
|
|
|
+ link="select"
|
|
|
+ v-model:param="shArea"
|
|
|
+ placeholder="请选择区域"
|
|
|
+ static
|
|
|
+ :options="[]"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <FocusContentCom class="three">3</FocusContentCom>
|
|
|
+ <FocusContentCom class="four">4</FocusContentCom>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </BusinessMainCom>
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts">
|
|
@@ -18,25 +87,212 @@ 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,
|
|
|
+ clue: {
|
|
|
+ form: {},
|
|
|
+ tempForm: {
|
|
|
+ type: '',
|
|
|
+ datetime: <Array<string>>[]
|
|
|
+ },
|
|
|
+ },
|
|
|
+ datetimeType: '',
|
|
|
+ datetimeMapper: [
|
|
|
+ {label: '近一天', value: '1'},
|
|
|
+ {label: '近三天', value: '2'},
|
|
|
+ {label: '近一周', value: '3'},
|
|
|
+ {label: '近一月', value: '4'},
|
|
|
+ {label: '自定义', value: '0'},
|
|
|
+ ],
|
|
|
+ calendarDate: <any>[],
|
|
|
+ shArea: ''
|
|
|
+ })
|
|
|
+ const onSearch = () => {
|
|
|
+ state.clue.form = JSON.parse(JSON.stringify(state.clue.tempForm))
|
|
|
+ }
|
|
|
+ const onReset = () => {
|
|
|
+ state.datetimeType = '1'
|
|
|
+ const end = new Date().getTime()
|
|
|
+ const start = end - that.$util.oneDayTime
|
|
|
+ state.clue.tempForm = {
|
|
|
+ type: '',
|
|
|
+ datetime: [
|
|
|
+ that.$util.YMDHms(start),
|
|
|
+ that.$util.YMDHms(end),
|
|
|
+ ],
|
|
|
+ }
|
|
|
+ onSearch()
|
|
|
+ }
|
|
|
+ watch(() => state.datetimeType, (n) => {
|
|
|
+ const end = new Date().getTime()
|
|
|
+ if (n === '1') {
|
|
|
+ const start = end - that.$util.oneDayTime
|
|
|
+ state.clue.tempForm.datetime = [
|
|
|
+ that.$util.YMDHms(start),
|
|
|
+ that.$util.YMDHms(end),
|
|
|
+ ]
|
|
|
+ } else if (n === '2') {
|
|
|
+ const start = end - that.$util.oneDayTime * 3
|
|
|
+ state.clue.tempForm.datetime = [
|
|
|
+ that.$util.YMDHms(start),
|
|
|
+ that.$util.YMDHms(end),
|
|
|
+ ]
|
|
|
+ } else if (n === '3') {
|
|
|
+ const start = end - that.$util.oneDayTime * 7
|
|
|
+ state.clue.tempForm.datetime = [
|
|
|
+ that.$util.YMDHms(start),
|
|
|
+ that.$util.YMDHms(end),
|
|
|
+ ]
|
|
|
+ } else if (n === '4') {
|
|
|
+ const start = end - that.$util.oneDayTime * 30
|
|
|
+ state.clue.tempForm.datetime = [
|
|
|
+ that.$util.YMDHms(start),
|
|
|
+ that.$util.YMDHms(end),
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ })
|
|
|
+ watch(() => state.clue.tempForm.datetime, (n) => {
|
|
|
+ state.calendarDate = n
|
|
|
+ })
|
|
|
+ const handleDisabledDate = (d) => {
|
|
|
+ let flag = false
|
|
|
+ if (d > new Date()) {
|
|
|
+ flag = true
|
|
|
+ } else {
|
|
|
+ if (state.calendarDate?.length > 0) {
|
|
|
+ const s = state.calendarDate[0] ? new Date(state.calendarDate[0]).getTime() : null
|
|
|
+ const e = state.calendarDate[1] ? new Date(state.calendarDate[1]).getTime() : null
|
|
|
+ if (s && e) {
|
|
|
+ if (d.getTime() < s) {
|
|
|
+ flag = Math.abs(d.getTime() - e) / that.$util.oneDayTime > 180
|
|
|
+ } else if (d.getTime() > e) {
|
|
|
+ flag = Math.abs(d.getTime() - s) / that.$util.oneDayTime > 180
|
|
|
+ } else {
|
|
|
+ flag = flag
|
|
|
+ }
|
|
|
+ } else if (s) {
|
|
|
+ flag = Math.abs(d.getTime() - s) / that.$util.oneDayTime > 180
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return flag
|
|
|
+ }
|
|
|
onMounted(() => {
|
|
|
+ state.datetimeType = '1'
|
|
|
+ state.clue.form = JSON.parse(JSON.stringify(state.clue.tempForm))
|
|
|
})
|
|
|
return {
|
|
|
...toRefs(state),
|
|
|
+ onSearch,
|
|
|
+ onReset,
|
|
|
+ handleDisabledDate
|
|
|
}
|
|
|
},
|
|
|
})
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
+@import "../main";
|
|
|
+.clue {
|
|
|
+ flex: 1;
|
|
|
+ padding: 0 12px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ overflow: hidden;
|
|
|
+ .statistic-form {
|
|
|
+ :deep(.el-form-item) {
|
|
|
+ margin-bottom: 7px;
|
|
|
+ .el-range-editor {
|
|
|
+ .el-range-separator {
|
|
|
+ padding: 0;
|
|
|
+ }
|
|
|
+ .el-range-input {
|
|
|
+ width: calc((100% - 40px) / 2);
|
|
|
+ font-size: 12px;
|
|
|
+ }
|
|
|
+ //.el-range__close-icon {
|
|
|
+ // display: none;
|
|
|
+ //}
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .statistic-form-two {
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-start;
|
|
|
+ .cus-form-column {
|
|
|
+ flex: 1;
|
|
|
+ margin-right: 8px;
|
|
|
+ }
|
|
|
+ .svg-icon {
|
|
|
+ margin-top: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .datetime-buttons {
|
|
|
+ padding-left: 72px;
|
|
|
+ margin-bottom: 7px;
|
|
|
+ width: 100%;
|
|
|
+ height: 24px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ .datetime-buttons-item {
|
|
|
+ width: 58px;
|
|
|
+ height: 100%;
|
|
|
+ border-radius: 2px;
|
|
|
+ border: 1px solid #0093FF;
|
|
|
+ font-size: 14px;
|
|
|
+ font-family: PingFang SC, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #108DF3;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ &.active {
|
|
|
+ background-color: #79C6FF;
|
|
|
+ color: #FFFFFF;
|
|
|
+ border-color: #79C6FF;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .__cus-buttons-2 {
|
|
|
+ height: 28px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .statistic-content {
|
|
|
+ flex: 1;
|
|
|
+ overflow-y: auto;
|
|
|
+ .one {
|
|
|
+ height: 144px;
|
|
|
+ }
|
|
|
+ .two {
|
|
|
+ height: 210px;
|
|
|
+ }
|
|
|
+ .sh-area {
|
|
|
+ :deep(.el-form-item) {
|
|
|
+ margin-bottom: 7px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .three {
|
|
|
+ height: 140px;
|
|
|
+ }
|
|
|
+ .four {
|
|
|
+ margin-top: 10px;
|
|
|
+ height: 140px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
</style>
|