解析列表添加未解析状态

This commit is contained in:
zhujiyan
2024-07-24 15:36:40 +08:00
parent 26136c79e6
commit f1174d0e7d

View File

@@ -39,20 +39,21 @@ const tableStore: any = new TableStore({
width: 100,
render: 'tag',
custom: {
0: 'warning',
1: 'success',
2: 'danger',
3: 'primary',
null:''
3: 'primary'
},
replaceValue: {
0: '未解析',
1: '解析成功',
2: '解析失败',
3: '文件不存在',
3: '文件不存在'
}
// formatter: row => {
// return row.cellValue == 1 ? '未注册' : row.cellValue == 2 ? '注册' : '接入'
// },
},
}
],
beforeSearchFun: () => {
@@ -75,10 +76,8 @@ const open=()=>{
const close = () => {
dialogVisible.value = false
}
const initTable = () => {
}
onMounted(() => {
})
const initTable = () => {}
onMounted(() => {})
defineExpose({ open })
</script>
<style lang="scss" scoped></style>