fix : 修复项目立项/验收前置流程展示及系统部分页面分页bug

This commit is contained in:
2024-06-11 18:47:35 +08:00
parent ab83724056
commit 3f7de153da
14 changed files with 135 additions and 64 deletions

View File

@@ -77,7 +77,7 @@ const timer = ref(null)
const validComponents = ref(['processSetting', 'processDesign'])
// const activeSelect = ref('formDesign')
// const activeSelect = ref('processSetting')
const activeSelect = ref('processDesign')
const activeSelect = ref('processSetting')
const validVisible = ref(false)
const validStep = ref(0)
const validResult = ref({})
@@ -88,7 +88,7 @@ const validOptions = ref([
// {title: '扩展设置', description: '', icon: '', status: ''}
])
onActivated(()=>{
activeSelect.value = 'processDesign'
activeSelect.value = 'processSetting'
init()
})

View File

@@ -255,13 +255,13 @@ const handleSelect = async (selection, row) => {
//切换每页显示条数
const handleSizeChange = async (val) => {
pageInfo.value.pageSize = val
pageInfo.pageSize = val
await getList()
}
//点击页码进行分页功能
const handleCurrentChange = async (val) => {
pageInfo.value.pageNum = val
pageInfo.pageNum = val
await getList()
}