You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

445 lines
12 KiB

3 years ago
<template>
<div class="shop app_content">
<!-- 导航栏 -->
<!-- <div class="header_body">-->
<!-- <header-nav :leftArrow="false" titelText="行政检查通知"></header-nav>-->
<!-- </div>-->
3 years ago
<van-search
v-model="searchParam.searchValue"
3 years ago
show-action
placeholder="请输入(检查项/执法部门/企业名称)查询"
3 years ago
@search="onSearch"
>
<template #action>
<div @click="onClickButton">搜索</div>
</template>
</van-search>
<!-- 顶部弹出 -->
<van-popup v-model:show="data.showTop" position="top" :style="{ height: '30%' }" >
<van-cell-group>
<van-field
v-model="searchParam.beginTime"
label="时间范围"
@click=""
readonly
/>
</van-cell-group>
</van-popup>
3 years ago
<div class="search-button-list">
<van-button plain hairline class="search-button" @click="searchDateType()" round type="primary" size="mini">全部</van-button>
<van-button plain hairline class="search-button" @click="searchDateType(1)" round type="primary" size="mini">本月</van-button>
<van-button plain hairline class="search-button" @click="searchDateType(2)" round type="primary" size="mini">本季度</van-button>
<van-button plain hairline class="search-button" @click="searchDateType(3)" round type="primary" size="mini">本年度</van-button>
<!-- <van-button plain hairline class="search-button" @click="searchFilter" round type="primary" size="mini">筛选</van-button>-->
<van-button plain hairline class="search-button" @click="selectDate" round type="primary" size="mini">筛选</van-button>
3 years ago
</div>
<div class="search-button-date">
<span class="date-select" @click="selectDate">{{ data.dateSearch }}</span>
<div style="border-color: black;" class="van-hairline--bottom"></div>
2 years ago
<!-- <van-button class="search-button" type="primary" size="mini">统计分析</van-button> -->
3 years ago
<van-popup v-model:show="data.showDatePicker" position="bottom">
<van-date-picker
title="选择日期"
v-model="data.currentDate"
:min-date="data.minDate"
:max-date="data.maxDate"
:columns-type="data.columnsType"
@confirm="onDateConfirm"
@cancel="cancelSelectDate"
/>
</van-popup>
</div>
<!-- 中间 -->
<div class="shop-center">
<lodding-card :isLodding="isLodding">
<refresh-list v-model:freshMap="freshMap" @refresh="onRefresh" @onLoad="onLoad"
3 years ago
:resetScroll="resetScroll" class="refresh_box">
<div class="refresh_content" v-if="data?.dataList.length">
<div class="goods_box" v-for="(item, index) in data?.dataList" :key="index">
<van-swipe-cell class="swipe_cell">
<div class="card_box" @click="toDetailView(item.id)">
3 years ago
<div class="card_box_span">
2 years ago
<p>执法时间{{ formattedTimeYYYYmmdd(item.checkTime) }} <span class="card_box_action">
3 years ago
<!-- <van-button @click="toComplaintView(item.id,item.lawEnforcementIncident)" type="primary" size="mini">投诉</van-button> -->
</span></p>
</div>
<!-- <van-divider :style="{ color: '#1989fa', borderColor: '#1989fa',padding: '0 5px' }" /> -->
<div class="van-hairline--bottom"></div>
3 years ago
<div class="card_box_span">
<p>{{ item.checkItem }}</p>
3 years ago
</div>
2 years ago
<!-- <div class="card_box_span">
<p><span class="card_box_label">登记编号</span> {{ item.lawEnforcementCode }}</p>
2 years ago
</div> -->
3 years ago
<div class="card_box_span">
<p><span class="card_box_label">执法部门</span> {{ item.lawEnforcement }}</p>
3 years ago
</div>
<div class="card_box_span">
<p><span class="card_box_label">企业名称</span> {{ item.enterpriseName }}</p>
3 years ago
</div>
</div>
</van-swipe-cell>
</div>
</div>
<van-empty v-else class="no_data" description="暂无数据" />
</refresh-list>
</lodding-card>
</div>
<!-- 底部 -->
<div class="shop_footer_body">
<footer-nav></footer-nav>
</div>
</div>
</template>
<script setup name="registrationList">
import { showToast } from "vant";
import {queryEnforcementList} from '../../api/enterprise';
2 years ago
import { formattedTimeYYYYmmdd } from "@/util/util";
import {queryLinkage, queryLinkageById, queryLinkageDictByValueAndParentId} from "@/api/linkage";
3 years ago
const { useCommon, useShopCard } = $globalStore;
const router = useRouter();
let allchecked = ref(false); // 是否全选
let refreshLoad = ref(false); // 是否加载中
let value = ref('')
let totalPrice = ref(0); // 总钱数
let searchParam = reactive({
//执法事件
lawEnforcementIncident:"",
//执法部门
lawEnforcement:"",
//搜索框
searchText: ref(''),
3 years ago
//时间类型
dateType: null,
//是否投诉
isComplaint: null,
//企业统一信用码
enterpriseNumber: ref(useCommon.enterpriseNumber),
//查询日期
searchDate:null,
beginTime:"",
endTime:""
3 years ago
});
const data = reactive({
cartList: [],
dataList: [],
dateSearch: ref(),
showDatePicker:false,
currentDate:ref(['2024', '01']),
minDate: new Date(2020, 0, 1),
maxDate: new Date(2125, 5, 1),
columnsType :['year', 'month'],
showTop:false,
2 years ago
ga_columns: [],
3 years ago
});
// 设置初始值为当前时间
onMounted(() => {
console.log(useCommon.enterpriseNumber);
// getCard();
searchParam.enterpriseNumber = useCommon.enterpriseNumber;
console.log(useCommon.enterpriseNumber)
2 years ago
// queryList();
queryLinkageDictByValueAndParentId({"value": "check_item", "parentId": "100"}, success => {
getLinkageByParentIdToItem(success.id)
},error=>{});
3 years ago
data.dateSearch = nowDate(new Date());
});
const queryList = () =>{
queryEnforcementList(searchParam,success =>{
3 years ago
console.log(success)
2 years ago
for (var i=0; i<success.data.length; i++) {
var itemTxt = success.data[i].checkItem;
for (var j=0; j<data.ga_columns.length; j++) {
if (itemTxt == data.ga_columns[j].value) {
success.data[i].checkItem = data.ga_columns[j].text;
break;
}
}
}
3 years ago
data.dataList = success.data;
},error =>{
})
}
2 years ago
const getLinkageByParentIdToItem = (parentId) => {
// 查询检查要求字典信息
queryLinkage({"parentId": parentId}, success => {
for(var i=0; i<success.length; i++) {
data.ga_columns.push({ text: success[i].title, value: success[i].id, id: success[i].id })
}
queryList();
},error=>{});
}
3 years ago
const onSearch = (val) => {
queryRegistrationList(
{
"searchValue": searchParam.searchValue
3 years ago
}
,success =>{
console.log(success)
data.dataList = success.data;
},error =>{
})
};
const onClickButton = () =>{
console.log(searchParam.searchValue)
3 years ago
queryList();
}
const toDetailView = (id) =>{
console.log(id)
3 years ago
router.push(
{
path: "/enterprise/enterpriseInspectionDetail",
3 years ago
query: {
id: id,
}
});
}
onActivated(() => {
});
onDeactivated(() => {
});
// 返回
const goBack = () => {
router.go(-1);
};
let resetScroll = ref(0); // 滚动记录
let isLodding = ref(true); // 是否加载中
let freshMap = reactive({
refreshLoad: false, // 是否刷新
listLoading: false, // 是否加载中
listFinished: false, // 是否加载完成标识
});
//下拉刷新
const onRefresh = () => {
freshMap.listFinished = false;
freshMap.listLoading = true;
getGoodslist();
};
// 触底加载
const onLoad = () => {
freshMap.listFinished = true;
getGoodslist(true);
};
//获取分类下的商品列表
const getGoodslist = async (onLoad) => {
// const res = await useClassify.classifyGoods();
// if (res?.code === 20000) {
// goodsList = onLoad ? goodsList.concat(res?.data) : res?.data;
// freshMap.refreshLoad = false;
// freshMap.listLoading = false;
// freshMap.listFinished = res?.listFinished;
// if (goodsList.length > 50) {
// freshMap.listFinished = true;
// }
// }
freshMap.refreshLoad = false;
freshMap.listLoading = false;
freshMap.listFinished = true;
isLodding.value = false;
};
onMounted(async () => {
// let res = await getClassify();
// if (res && res?.length) {
// classifyId = res?.[0]?.id;
// classifyId && getGoodslist();
// } else {
// isLodding.value = false;
// }
queryList();
isLodding.value = false;
});
const selectDate = () =>{
data.showDatePicker = true;
console.log(data.showDatePicker)
}
const onDateConfirm = (value)=> {
data.dateSearch = value.selectedValues[0] + "/" + value.selectedValues[1];
searchParam.searchDate = value.selectedValues[0] + "-" + value.selectedValues[1];
3 years ago
data.showDatePicker = false;
//查询数据
queryList();
3 years ago
}
const nowDate = (time) => {
var year = time.getFullYear(); // 年
var month = (time.getMonth() + 1).toString().padStart(2, '0'); // 月
var date = time.getDate().toString().padStart(2, '0'); // 日
var hour = time.getHours().toString().padStart(2, '0'); // 时
var minute = time.getMinutes().toString().padStart(2, '0'); // 分
var second = time.getSeconds().toString().padStart(2, '0'); // 秒
return (
year + "/" + month
)
}
const searchDateType = (val) =>{
searchParam.dateType = val;
searchParam.isComplaint = null;
queryList();
}
const searchFilter = () =>{
data.showTop = true;
queryList();
}
3 years ago
const searchComplaint = (val) =>{
searchParam.isComplaint = val;
searchParam.dateType = null;
queryList();
}
const cancelSelectDate = () =>{
data.showDatePicker = false;
}
3 years ago
</script>
<style lang="less" scoped>
.shop {
height: 100%;
display: flex;
flex-direction: column;
overflow: hidden;
background-color: #f4f4f4;
.header_body {
height: 50px;
}
.shop-center {
flex: 1;
overflow-y: scroll;
position: relative;
.goods_box {
display: flex;
background-color: #fff;
margin: 6px;
border-radius: 10px;
.swipe_cell {
width: 100%;
}
.card_box {
display: flex;
width: 100%;
padding: 10px 0px;
3 years ago
flex-direction: column;
.card_body {
background-color: #fff;
border-radius: 10px;
flex: 1;
}
.card_box_span {
3 years ago
display: flex;
align-items: center;
margin: 2% 0;
padding-left: 3%;
font-size: 0.38rem;
line-height: 1.5;
p {
margin: 0;
}
3 years ago
}
.card_box_action{
position: absolute;
right: 4%;
}
}
}
}
.shop_footer_body {
height: 101px;
position: relative;
.footer-one-btn {
height: 50px;
bottom: 51px;
}
}
}
.search-button-list{
height: 3%;
display: flex;
flex-direction: row;
padding-left: 10px;
margin-top: 6px;
align-items: end;
.search-button{
width: 15%;
height: 80%;
}
}
.search-button-date{
height: 3%;
display: flex;
flex-direction: row;
padding-left: 10px;
margin-top: 6px;
align-items: end;
position: relative;
.date-select{
font-size: 20px;
margin-left: 2%;
}
.search-button{
width: 15%;
height: 80%;
position: absolute;
top: 1%;
right: 1%;
}
}
2 years ago
/deep/ .van-hairline--bottom {
margin: -1% 0 3% 0;
2 years ago
height: 0;
background-color: transparent;
border: 1px;
}
/deep/ .card_box_span:first-child {
color: #c1bfbf;
}
3 years ago
2 years ago
/deep/ .card_box_span:nth-child(2) p {
font-size: 0.4rem;
font-weight: bold;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.card_box_label {
color: rgba(128, 128, 128, 0.65);
}
3 years ago
</style>