fix : 征集公司校验,单文件显示改为表格,手机端审批后刷新,需求征集回车触发搜索,组织机构管理搜索

This commit is contained in:
2024-07-22 20:39:26 +08:00
parent ae6da83a1a
commit 3c1fcc327c
17 changed files with 470 additions and 169 deletions

View File

@@ -60,7 +60,7 @@ import Opinion from "@/components/DetailComponent/Opinion.vue";
const route = useRoute()
const editShow = ref(false)
const applyTitle = ref('apply')
const applyTitle = ref('filing')
const loading = ref(false)
const processStore = useProcessStore()
const fileListShow = ref('READ')
@@ -83,6 +83,9 @@ localStorage.removeItem('projectChargePersonUserList')
localStorage.removeItem('projectPersonUserList')
const getAllInfo = async (state) => {
const loading = ElLoading.service({fullscreen: true})
detailData.value = {
state: "0"
}
try {
detailShow.value = false
fileListShow.value = 'READ'
@@ -125,14 +128,16 @@ const getAllInfo = async (state) => {
}
}
const changeModel = (active, mode) => {
// console.log('active, mode',active, mode)
editShow.value = false
nextTick(() => {
editShow.value = mode === 'submit' || mode === 'resubmit';
if (route.query.step === '20' && active === '20') {
// route.query.step === '20' &&
if (active === '20') {
applyTitle.value = 'apply'
} else if (route.query.step === '40' && active === '40') {
} else if (active === '40') {
applyTitle.value = 'check'
} else if (route.query.step === '50' && active === '50') {
}else if ( active === '50') {
applyTitle.value = 'filing'
}
})
@@ -146,14 +151,9 @@ const stepChange = (data) => {
showActive.value = data.active
getAllInfo(data.active)
}
</script>
<style scoped lang="scss">
//.detail-block{
// padding-top: 15px;
//}
:deep(.el-tabs__nav-scroll) {
width: 100%;
@@ -167,11 +167,6 @@ const stepChange = (data) => {
flex: 1;
font-size: 16px;
}
//.is-active {
// color: black;
// //background-color: #DED0B2;
//}
}
}
</style>