Compare commits
2 Commits
c58053f654
...
646d471a19
| Author | SHA1 | Date |
|---|---|---|
|
|
646d471a19 | |
|
|
0f2fa1e98c |
|
|
@ -11,11 +11,11 @@ VITE_BUILD_COMPRESS = 'none'
|
|||
|
||||
|
||||
# Basic interface address SPA
|
||||
VITE_GLOB_API_URL=/basic-api
|
||||
VITE_GLOB_API_URL=http://192.168.10.104:9020
|
||||
|
||||
# File upload address, optional
|
||||
# It can be forwarded by nginx or write the actual address directly
|
||||
VITE_GLOB_UPLOAD_URL=/upload
|
||||
VITE_GLOB_UPLOAD_URL=http://60.213.14.14:6070
|
||||
|
||||
# Interface prefix
|
||||
VITE_GLOB_API_URL_PREFIX=
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
</a-form-item>
|
||||
<a-form-item label="查询地区">
|
||||
<a-tree-select
|
||||
v-model:value="listQuery.orgId"
|
||||
v-model:value="listQuery.countyid"
|
||||
:dropdown-style="{ maxHeight: '400px', width: '600px', overflow: 'auto' }"
|
||||
:tree-data="data.OrgList"
|
||||
:field-names="{ label: 'name', value: 'id' }"
|
||||
|
|
@ -136,7 +136,7 @@
|
|||
identification_user?: string;
|
||||
identification_time?: string;
|
||||
key?: string;
|
||||
orgId?: string;
|
||||
countyid?: string;
|
||||
}
|
||||
type dataModel = {
|
||||
dataList: any;
|
||||
|
|
@ -145,9 +145,9 @@
|
|||
intactDatas: any[];
|
||||
};
|
||||
const pagination = ref({
|
||||
onChange: (page: number) => {
|
||||
console.log(page);
|
||||
onChange: (page: number, pageSize: number) => {
|
||||
listQuery.value.page = page;
|
||||
listQuery.value.limit = pageSize;
|
||||
getList();
|
||||
},
|
||||
pageSize: 5,
|
||||
|
|
@ -241,6 +241,7 @@
|
|||
margin-top: 12px;
|
||||
padding: 10px 0;
|
||||
background-color: @component-background;
|
||||
position: relative;
|
||||
|
||||
.list {
|
||||
position: relative;
|
||||
|
|
@ -263,6 +264,10 @@
|
|||
}
|
||||
::v-deep .ant-spin-nested-loading {
|
||||
height: 90%;
|
||||
overflow: auto;
|
||||
}
|
||||
::v-deep .ant-list-pagination {
|
||||
background-color: @component-background;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,12 +1,7 @@
|
|||
<template>
|
||||
<div class="case-view">
|
||||
<div class="case-view_step">
|
||||
<a-steps
|
||||
v-model:current="current"
|
||||
type="navigation"
|
||||
size="small"
|
||||
:style="stepStyle"
|
||||
>
|
||||
<a-steps v-model:current="current" type="navigation" size="small" :style="stepStyle">
|
||||
<a-step
|
||||
v-for="(item, index) in flowLog"
|
||||
:key="index"
|
||||
|
|
|
|||
|
|
@ -0,0 +1,18 @@
|
|||
// 案件详情首页
|
||||
export { default as CaseView } from './caseview/index.vue';
|
||||
// 【案件下发信息】
|
||||
export { default as Issue } from './caseview/src/issue.vue';
|
||||
// 【案件核查信息】
|
||||
export { default as Inspect } from './caseview/src/inspect.vue';
|
||||
// 【案件审核信息】
|
||||
export { default as Audit } from './caseview/src/audit.vue';
|
||||
// 【案件办理信息-违法-拟拆除】
|
||||
export { default as Dismantle } from './caseview/src/dismantle.vue';
|
||||
// 地图位置
|
||||
export { default as MapDetail } from './caseview/src/mapDetail.vue';
|
||||
// 案件办理信息-合法举证
|
||||
export { default as Evidence } from './caseview/src/evidence.vue';
|
||||
// 【案件办理信息-违法-查处】
|
||||
export { default as Investigate } from './caseview/src/investigate.vue';
|
||||
// 【案件办理信息-违法-拟完善手续】
|
||||
export { default as Procedure } from './caseview/src/procedure.vue';
|
||||
Loading…
Reference in New Issue