修复merge
This commit is contained in:
28
.gitignore
vendored
Normal file
28
.gitignore
vendored
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
# Logs
|
||||||
|
logs
|
||||||
|
*.log
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
pnpm-debug.log*
|
||||||
|
lerna-debug.log*
|
||||||
|
|
||||||
|
node_modules
|
||||||
|
.DS_Store
|
||||||
|
dist
|
||||||
|
dist-ssr
|
||||||
|
coverage
|
||||||
|
*.local
|
||||||
|
|
||||||
|
/cypress/videos/
|
||||||
|
/cypress/screenshots/
|
||||||
|
|
||||||
|
# Editor directories and files
|
||||||
|
.vscode
|
||||||
|
!.vscode/extensions.json
|
||||||
|
.idea
|
||||||
|
*.suo
|
||||||
|
*.ntvs*
|
||||||
|
*.njsproj
|
||||||
|
*.sln
|
||||||
|
*.sw?
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="tag-style">
|
<div class="tag-style">
|
||||||
<el-tag v-if="tagConfig.isType" :type="tagConfig.listClass" :effect="tagConfig.theme || 'plain'">
|
<el-tag v-if="tagConfig?.isType" :type="tagConfig?.listClass" :effect="tagConfig?.theme || 'plain'">
|
||||||
{{ filterDict(cacheStore.getDict(dictType), value) }}
|
{{ filterDict(cacheStore.getDict(dictType), value) }}
|
||||||
</el-tag>
|
</el-tag>
|
||||||
<el-tag v-else :color="tagConfig.listClass" :effect="tagConfig.theme || 'plain'"
|
<el-tag v-else :color="tagConfig?.listClass" :effect="tagConfig?.theme || 'plain'"
|
||||||
:class="{'null-tag':filterDict(cacheStore.getDict(dictType), value)===undefined}">
|
:class="{'null-tag':filterDict(cacheStore.getDict(dictType), value)===undefined}">
|
||||||
{{ filterDict(cacheStore.getDict(dictType), value) }}
|
{{ filterDict(cacheStore.getDict(dictType), value) }}
|
||||||
</el-tag>
|
</el-tag>
|
||||||
@@ -45,7 +45,7 @@ const filterDict = (data, value) => {
|
|||||||
tagConfig.value = data.find(item => item.value == value)
|
tagConfig.value = data.find(item => item.value == value)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return tagConfig.value.label
|
return tagConfig.value?.label || '未知'
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="call-history"><h3 >历史通话记录</h3>
|
<div class="call-history"><h3 >历史通话记录</h3>
|
||||||
<fvTable ref="tableIns" :tableConfig="tableConfig" :data="mockData" @headBtnClick="headBtnClick"></fvTable>
|
<fvTable ref="tableIns" :tableConfig="tableConfig" :data="mockData" @headBtnClick="headBtnClick"></fvTable>
|
||||||
<Voice ref="voiceRef" />
|
<voice ref="voiceRef" />
|
||||||
<infoLiveCall ref="infoLiveCallRef"/>
|
<infoLiveCall ref="infoLiveCallRef"/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user