fix: BUG修改

This commit is contained in:
kun 2023-09-15 14:59:10 +08:00
parent 7cc79f85a7
commit 00dc207110
6 changed files with 37 additions and 10 deletions

View File

@ -212,11 +212,6 @@
display: none;
}
}
:deep() {
.tabs-option {
display: none;
}
}
// :deep(.el-dialog__body) {
// padding: 0 0 0 0 !important;
// background-color: pink;

View File

@ -22,6 +22,7 @@
border
disabeld
style="width: 100%"
height="150"
max-height="360"
:header-cell-style="{ backgroundColor: '#e1eeff', textAlign: 'center' }"
:cell-style="{ textAlign: 'center' }"

View File

@ -121,8 +121,7 @@
<div class="right">
<el-form-item label="所属国企:" prop="authorityEnterprise" v-if="ruleForm.isAuthority == 1">
<el-input disabled style="width: 100%" v-model="ruleForm.authorityEnterprise" placeholder="国企所属集团">
</el-input>
<el-input disabled style="width: 100%" v-model="ruleForm.authorityEnterprise"> </el-input>
</el-form-item>
<el-form-item label="手机号码:" prop="phone">
<el-input disabled v-model.number="ruleForm.phone" placeholder="13670780605" />

View File

@ -41,7 +41,7 @@
<div class="table">
<el-table
:data="workTypeList"
max-height="340"
height="350"
class="el-table"
:header-cell-style="{ backgroundColor: '#F5F7FA', textAlign: 'center' }"
:cell-style="{ textAlign: 'center' }"
@ -54,6 +54,15 @@
<span>{{ scope.row.ratio ? scope.row.ratio : 0 }}%</span>
</template>
</el-table-column>
<!-- 表格无数据情况 -->
<template #empty>
<div class="table-empty">
<slot name="empty">
<img src="@/assets/images/notData.png" alt="notData" />
<div>暂无数据</div>
</slot>
</div>
</template>
</el-table>
</div>
</el-card>
@ -64,7 +73,7 @@
<div class="table">
<el-table
:data="workAddressList"
max-height="340"
height="350"
class="el-table"
:header-cell-style="{ backgroundColor: '#F5F7FA', textAlign: 'center' }"
:cell-style="{ textAlign: 'center' }"
@ -87,7 +96,7 @@
<div class="table">
<el-table
:data="workNationList"
max-height="340"
height="350"
class="el-table"
:header-cell-style="{ backgroundColor: '#F5F7FA', textAlign: 'center' }"
:cell-style="{ textAlign: 'center' }"
@ -448,6 +457,14 @@ onMounted(async () => {
}
.table {
margin-top: 22px;
.table-empty {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
flex-direction: column;
color: #999;
}
}
}
}

View File

@ -23,3 +23,17 @@
display: flex;
}
}
:deep() {
.el-upload-list {
width: 30%;
}
.tabs-option {
display: none;
}
.el-progress-bar {
display: none;
}
.el-progress__text {
display: none;
}
}

View File

@ -27,6 +27,7 @@
</el-form-item>
<el-form-item label="上传附件:" prop="annexFileList">
<el-upload
style="width: 100%"
ref="upload"
:headers="headers"
:file-list="annexFileList"