fix: BUG修改
This commit is contained in:
parent
56cb274fd7
commit
a7d29d0f03
@ -213,6 +213,7 @@ const getDicMainList = async () => {
|
||||
}
|
||||
});
|
||||
dicMainData.value = result;
|
||||
dicMainData.value.splice(0, 1);
|
||||
}
|
||||
console.log(dicMainData.value);
|
||||
};
|
||||
|
||||
@ -262,6 +262,7 @@ const getDicMainList = async () => {
|
||||
}
|
||||
});
|
||||
dicMainData.value = result;
|
||||
dicMainData.value.splice(0, 1);
|
||||
}
|
||||
console.log(dicMainData.value);
|
||||
};
|
||||
|
||||
@ -311,6 +311,7 @@ const getDicMainList = async () => {
|
||||
}
|
||||
});
|
||||
dicMainData.value = result;
|
||||
dicMainData.value.splice(0, 1);
|
||||
}
|
||||
console.log(dicMainData.value);
|
||||
};
|
||||
|
||||
@ -52,7 +52,7 @@
|
||||
<div><span>评分</span></div>
|
||||
</div>
|
||||
<div class="table-head-six">
|
||||
<div><span>优秀(10分)良好(8-9分)一般(6-7分)差(0-5分)</span></div>
|
||||
<div><span>90分(含)以上为优秀,80分(含)—89分为良好,60分(含)—79分为合格,60以下为不合格</span></div>
|
||||
</div>
|
||||
<div class="table-head-combo" v-for="(value, key, index) in recordData" :key="index">
|
||||
<div class="table-head-six-add">
|
||||
@ -562,10 +562,10 @@ onMounted(async () => {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
white-space: nowrap;
|
||||
// overflow-wrap: anywhere;
|
||||
border-right: 2px solid #086d93;
|
||||
// text-align: left !important;
|
||||
}
|
||||
.category-content {
|
||||
width: calc(85% - 8px);
|
||||
@ -582,6 +582,7 @@ onMounted(async () => {
|
||||
> div:nth-child(2) {
|
||||
width: 54%;
|
||||
overflow-wrap: anywhere;
|
||||
text-align: left !important;
|
||||
}
|
||||
> div:nth-child(3) {
|
||||
width: 13%;
|
||||
|
||||
@ -333,6 +333,7 @@ const getDicMainList = async () => {
|
||||
}
|
||||
});
|
||||
dicMainData.value = result;
|
||||
dicMainData.value.splice(0, 1);
|
||||
}
|
||||
console.log(dicMainData.value);
|
||||
};
|
||||
|
||||
@ -32,5 +32,6 @@
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 20px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
@ -42,7 +42,7 @@
|
||||
</el-table-column>
|
||||
<el-table-column prop="jobId" label="职务">
|
||||
<template #default="{ row }">
|
||||
<el-select class="select" v-model="row.jobId" size="small">
|
||||
<el-select class="select" v-model="row.jobId">
|
||||
<el-option v-for="item in jobOptions" :key="item.dictCode" :label="item.dictValue" :value="item.dictLabel" />
|
||||
</el-select>
|
||||
</template>
|
||||
@ -168,10 +168,6 @@ onMounted(async () => {
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import "./dutyForm.scss";
|
||||
|
||||
.test :deep(.el-input__wrapper) {
|
||||
box-shadow: 0 0 0 0;
|
||||
}
|
||||
.test :deep(.el-input__inner) {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@ -194,7 +194,7 @@
|
||||
</el-table-column>
|
||||
<el-table-column prop="shape" label="结构形式">
|
||||
<template #default="{ row }">
|
||||
<el-select class="select" v-model="row.shape" size="small">
|
||||
<el-select class="select" v-model="row.shape">
|
||||
<el-option v-for="item in structuralStyle" :key="item.dictCode" :label="item.dictValue" :value="item.dictLabel" />
|
||||
</el-select>
|
||||
</template>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user