fix: BUG修改
This commit is contained in:
parent
7cc79f85a7
commit
00dc207110
@ -212,11 +212,6 @@
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
:deep() {
|
|
||||||
.tabs-option {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// :deep(.el-dialog__body) {
|
// :deep(.el-dialog__body) {
|
||||||
// padding: 0 0 0 0 !important;
|
// padding: 0 0 0 0 !important;
|
||||||
// background-color: pink;
|
// background-color: pink;
|
||||||
|
|||||||
@ -22,6 +22,7 @@
|
|||||||
border
|
border
|
||||||
disabeld
|
disabeld
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
|
height="150"
|
||||||
max-height="360"
|
max-height="360"
|
||||||
:header-cell-style="{ backgroundColor: '#e1eeff', textAlign: 'center' }"
|
:header-cell-style="{ backgroundColor: '#e1eeff', textAlign: 'center' }"
|
||||||
:cell-style="{ textAlign: 'center' }"
|
:cell-style="{ textAlign: 'center' }"
|
||||||
|
|||||||
@ -121,8 +121,7 @@
|
|||||||
|
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<el-form-item label="所属国企:" prop="authorityEnterprise" v-if="ruleForm.isAuthority == 1">
|
<el-form-item label="所属国企:" prop="authorityEnterprise" v-if="ruleForm.isAuthority == 1">
|
||||||
<el-input disabled style="width: 100%" v-model="ruleForm.authorityEnterprise" placeholder="国企所属集团">
|
<el-input disabled style="width: 100%" v-model="ruleForm.authorityEnterprise"> </el-input>
|
||||||
</el-input>
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="手机号码:" prop="phone">
|
<el-form-item label="手机号码:" prop="phone">
|
||||||
<el-input disabled v-model.number="ruleForm.phone" placeholder="13670780605" />
|
<el-input disabled v-model.number="ruleForm.phone" placeholder="13670780605" />
|
||||||
|
|||||||
@ -41,7 +41,7 @@
|
|||||||
<div class="table">
|
<div class="table">
|
||||||
<el-table
|
<el-table
|
||||||
:data="workTypeList"
|
:data="workTypeList"
|
||||||
max-height="340"
|
height="350"
|
||||||
class="el-table"
|
class="el-table"
|
||||||
:header-cell-style="{ backgroundColor: '#F5F7FA', textAlign: 'center' }"
|
:header-cell-style="{ backgroundColor: '#F5F7FA', textAlign: 'center' }"
|
||||||
:cell-style="{ textAlign: 'center' }"
|
:cell-style="{ textAlign: 'center' }"
|
||||||
@ -54,6 +54,15 @@
|
|||||||
<span>{{ scope.row.ratio ? scope.row.ratio : 0 }}%</span>
|
<span>{{ scope.row.ratio ? scope.row.ratio : 0 }}%</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</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>
|
</el-table>
|
||||||
</div>
|
</div>
|
||||||
</el-card>
|
</el-card>
|
||||||
@ -64,7 +73,7 @@
|
|||||||
<div class="table">
|
<div class="table">
|
||||||
<el-table
|
<el-table
|
||||||
:data="workAddressList"
|
:data="workAddressList"
|
||||||
max-height="340"
|
height="350"
|
||||||
class="el-table"
|
class="el-table"
|
||||||
:header-cell-style="{ backgroundColor: '#F5F7FA', textAlign: 'center' }"
|
:header-cell-style="{ backgroundColor: '#F5F7FA', textAlign: 'center' }"
|
||||||
:cell-style="{ textAlign: 'center' }"
|
:cell-style="{ textAlign: 'center' }"
|
||||||
@ -87,7 +96,7 @@
|
|||||||
<div class="table">
|
<div class="table">
|
||||||
<el-table
|
<el-table
|
||||||
:data="workNationList"
|
:data="workNationList"
|
||||||
max-height="340"
|
height="350"
|
||||||
class="el-table"
|
class="el-table"
|
||||||
:header-cell-style="{ backgroundColor: '#F5F7FA', textAlign: 'center' }"
|
:header-cell-style="{ backgroundColor: '#F5F7FA', textAlign: 'center' }"
|
||||||
:cell-style="{ textAlign: 'center' }"
|
:cell-style="{ textAlign: 'center' }"
|
||||||
@ -448,6 +457,14 @@ onMounted(async () => {
|
|||||||
}
|
}
|
||||||
.table {
|
.table {
|
||||||
margin-top: 22px;
|
margin-top: 22px;
|
||||||
|
.table-empty {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
height: 100%;
|
||||||
|
flex-direction: column;
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -23,3 +23,17 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
:deep() {
|
||||||
|
.el-upload-list {
|
||||||
|
width: 30%;
|
||||||
|
}
|
||||||
|
.tabs-option {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.el-progress-bar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.el-progress__text {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@ -27,6 +27,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="上传附件:" prop="annexFileList">
|
<el-form-item label="上传附件:" prop="annexFileList">
|
||||||
<el-upload
|
<el-upload
|
||||||
|
style="width: 100%"
|
||||||
ref="upload"
|
ref="upload"
|
||||||
:headers="headers"
|
:headers="headers"
|
||||||
:file-list="annexFileList"
|
:file-list="annexFileList"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user