fix: BUG修改

This commit is contained in:
kun 2023-08-29 18:46:05 +08:00
parent 56cb274fd7
commit a7d29d0f03
8 changed files with 11 additions and 9 deletions

View File

@ -213,6 +213,7 @@ const getDicMainList = async () => {
} }
}); });
dicMainData.value = result; dicMainData.value = result;
dicMainData.value.splice(0, 1);
} }
console.log(dicMainData.value); console.log(dicMainData.value);
}; };

View File

@ -262,6 +262,7 @@ const getDicMainList = async () => {
} }
}); });
dicMainData.value = result; dicMainData.value = result;
dicMainData.value.splice(0, 1);
} }
console.log(dicMainData.value); console.log(dicMainData.value);
}; };

View File

@ -311,6 +311,7 @@ const getDicMainList = async () => {
} }
}); });
dicMainData.value = result; dicMainData.value = result;
dicMainData.value.splice(0, 1);
} }
console.log(dicMainData.value); console.log(dicMainData.value);
}; };

View File

@ -52,7 +52,7 @@
<div><span>评分</span></div> <div><span>评分</span></div>
</div> </div>
<div class="table-head-six"> <div class="table-head-six">
<div><span>优秀10良好8-9一般6-70-5</span></div> <div><span>90()以上为优秀80()89分为良好60()79分为合格60以下为不合格</span></div>
</div> </div>
<div class="table-head-combo" v-for="(value, key, index) in recordData" :key="index"> <div class="table-head-combo" v-for="(value, key, index) in recordData" :key="index">
<div class="table-head-six-add"> <div class="table-head-six-add">
@ -562,10 +562,10 @@ onMounted(async () => {
height: 100%; height: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center;
justify-content: center; justify-content: center;
white-space: nowrap; // overflow-wrap: anywhere;
border-right: 2px solid #086d93; border-right: 2px solid #086d93;
// text-align: left !important;
} }
.category-content { .category-content {
width: calc(85% - 8px); width: calc(85% - 8px);
@ -582,6 +582,7 @@ onMounted(async () => {
> div:nth-child(2) { > div:nth-child(2) {
width: 54%; width: 54%;
overflow-wrap: anywhere; overflow-wrap: anywhere;
text-align: left !important;
} }
> div:nth-child(3) { > div:nth-child(3) {
width: 13%; width: 13%;

View File

@ -333,6 +333,7 @@ const getDicMainList = async () => {
} }
}); });
dicMainData.value = result; dicMainData.value = result;
dicMainData.value.splice(0, 1);
} }
console.log(dicMainData.value); console.log(dicMainData.value);
}; };

View File

@ -32,5 +32,6 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
margin-bottom: 20px; margin-bottom: 20px;
margin-top: 10px;
} }
} }

View File

@ -42,7 +42,7 @@
</el-table-column> </el-table-column>
<el-table-column prop="jobId" label="职务"> <el-table-column prop="jobId" label="职务">
<template #default="{ row }"> <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-option v-for="item in jobOptions" :key="item.dictCode" :label="item.dictValue" :value="item.dictLabel" />
</el-select> </el-select>
</template> </template>
@ -168,10 +168,6 @@ onMounted(async () => {
<style lang="scss" scoped> <style lang="scss" scoped>
@import "./dutyForm.scss"; @import "./dutyForm.scss";
.test :deep(.el-input__wrapper) {
box-shadow: 0 0 0 0;
}
.test :deep(.el-input__inner) { .test :deep(.el-input__inner) {
text-align: center; text-align: center;
} }

View File

@ -194,7 +194,7 @@
</el-table-column> </el-table-column>
<el-table-column prop="shape" label="结构形式"> <el-table-column prop="shape" label="结构形式">
<template #default="{ row }"> <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-option v-for="item in structuralStyle" :key="item.dictCode" :label="item.dictValue" :value="item.dictLabel" />
</el-select> </el-select>
</template> </template>