no message
This commit is contained in:
parent
ad6e1a3340
commit
93acecce70
1 changed files with 9 additions and 4 deletions
|
|
@ -128,7 +128,7 @@ function onAdd(type: string) {
|
|||
modal.value = true;
|
||||
}
|
||||
|
||||
const rows = ref<any>([]);
|
||||
const rows = ref<any[]>([]);
|
||||
const lists = ref<any>([]);
|
||||
// const resultEvaluation = ref<string | 0>(0);
|
||||
|
||||
|
|
@ -290,7 +290,7 @@ function onLevel(num: number, list: any) {
|
|||
modalLevel.value = true;
|
||||
}
|
||||
|
||||
const competencyType = ref<DataOptions[]>([]);
|
||||
const competencyType = ref<any[]>([]);
|
||||
onMounted(() => {
|
||||
setTimeout(async () => {
|
||||
// console.log("posTypeName===>", store.dataEvaluation.posTypeName);
|
||||
|
|
@ -325,7 +325,12 @@ onMounted(() => {
|
|||
<div class="col">
|
||||
<span class="text-weight-medium">{{ item.name }}</span>
|
||||
<q-btn
|
||||
v-if="!checkRoutePermisson && isEditStep1 && item.id != 'HEAD' && item.id != 'GROUP'"
|
||||
v-if="
|
||||
!checkRoutePermisson &&
|
||||
isEditStep1 &&
|
||||
item.id != 'HEAD' &&
|
||||
item.id != 'GROUP'
|
||||
"
|
||||
class="q-ml-xs"
|
||||
flat
|
||||
round
|
||||
|
|
@ -358,7 +363,7 @@ onMounted(() => {
|
|||
<d-table
|
||||
ref="table"
|
||||
:columns="columns"
|
||||
:rows="rows[item.id]"
|
||||
:rows="rows[item.id] && rows[item.id].length !== 0 ? rows[item.id] : []"
|
||||
row-key="id"
|
||||
flat
|
||||
bordered
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue