|
|
@@ -67,9 +67,9 @@
|
|
|
<el-descriptions-item label="手机号:" width="33%">{{ dataDetail?.mobile }}</el-descriptions-item>
|
|
|
<el-descriptions-item label="证件号:" width="33%">{{ dataDetail?.identity }}</el-descriptions-item>
|
|
|
<el-descriptions-item label="证件有效期始:" width="33%">{{ dataDetail?.identityTimeStart
|
|
|
- }}</el-descriptions-item>
|
|
|
+ }}</el-descriptions-item>
|
|
|
<el-descriptions-item label="证件有效期止:" width="33%">{{ dataDetail?.identityTimeEnd
|
|
|
- }}</el-descriptions-item>
|
|
|
+ }}</el-descriptions-item>
|
|
|
</el-descriptions>
|
|
|
<el-descriptions title="其他信息">
|
|
|
<el-descriptions-item label="管理人:" width="33%">{{ dataDetail?.leaderName }}</el-descriptions-item>
|
|
|
@@ -207,11 +207,7 @@
|
|
|
<el-dialog v-model="allocationShow" title="分配管理人" width="800">
|
|
|
<allocation ref="AllocationRef" @closeDialog="closeAllocation"></allocation>
|
|
|
</el-dialog>
|
|
|
- <el-dialog v-model="imageShow" title="预览" width="500">
|
|
|
- <div class="image-box">
|
|
|
- <img class="image-view" :src="imageUrl" />
|
|
|
- </div>
|
|
|
- </el-dialog>
|
|
|
+ <el-image-viewer v-if="imageShow" :url-list="[imageUrl]" @close="imageShow = false" />
|
|
|
<el-dialog title="文件预览" v-model="fileShow">
|
|
|
<vue-office-docx :src="fileUrl" style="height: 600px; margin: 0; padding: 0"></vue-office-docx>
|
|
|
</el-dialog>
|
|
|
@@ -818,63 +814,61 @@ onMounted(async () => {
|
|
|
.message {
|
|
|
background: white;
|
|
|
|
|
|
- .other {
|
|
|
- .fileItem {
|
|
|
+ .fileItem {
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-start;
|
|
|
+ align-items: center;
|
|
|
+ margin: 10px 0;
|
|
|
+
|
|
|
+ .label {
|
|
|
+ width: 200px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .fileName {
|
|
|
+ width: calc(100% - 500px);
|
|
|
+ line-height: 30px;
|
|
|
display: flex;
|
|
|
- justify-content: flex-start;
|
|
|
align-items: center;
|
|
|
- margin: 10px 0;
|
|
|
+ padding: 0 20px;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ background: #ccc;
|
|
|
+ }
|
|
|
|
|
|
- .label {
|
|
|
+ .file-name {
|
|
|
width: 200px;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+ margin-right: 20px;
|
|
|
}
|
|
|
|
|
|
- .fileName {
|
|
|
- width: calc(100% - 500px);
|
|
|
- line-height: 30px;
|
|
|
+ .file-icon {
|
|
|
display: flex;
|
|
|
+ justify-content: flex-start;
|
|
|
align-items: center;
|
|
|
- padding: 0 20px;
|
|
|
+ height: 30px;
|
|
|
+ margin-left: 10px;
|
|
|
+ font-size: 16px;
|
|
|
+ cursor: pointer;
|
|
|
|
|
|
&:hover {
|
|
|
- background: #ccc;
|
|
|
- }
|
|
|
-
|
|
|
- .file-name {
|
|
|
- width: 200px;
|
|
|
- overflow: hidden;
|
|
|
- text-overflow: ellipsis;
|
|
|
- white-space: nowrap;
|
|
|
- margin-right: 20px;
|
|
|
- }
|
|
|
-
|
|
|
- .file-icon {
|
|
|
- display: flex;
|
|
|
- justify-content: flex-start;
|
|
|
- align-items: center;
|
|
|
- height: 30px;
|
|
|
- margin-left: 10px;
|
|
|
- font-size: 16px;
|
|
|
- cursor: pointer;
|
|
|
-
|
|
|
- &:hover {
|
|
|
- color: #00a0f4;
|
|
|
- }
|
|
|
+ color: #00a0f4;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- .cardImage {
|
|
|
- display: block;
|
|
|
- width: 80px;
|
|
|
- height: 80px;
|
|
|
- border-radius: 5px;
|
|
|
- }
|
|
|
+ .cardImage {
|
|
|
+ display: block;
|
|
|
+ width: 80px;
|
|
|
+ height: 80px;
|
|
|
+ border-radius: 5px;
|
|
|
+ }
|
|
|
|
|
|
- :deep(.el-descriptions__title) {
|
|
|
- padding-left: 20px;
|
|
|
- font-size: 16px;
|
|
|
- }
|
|
|
+ :deep(.el-descriptions__title) {
|
|
|
+ padding-left: 20px;
|
|
|
+ font-size: 16px;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -883,10 +877,6 @@ onMounted(async () => {
|
|
|
align-content: center;
|
|
|
justify-content: center;
|
|
|
|
|
|
- .image-view {
|
|
|
- width: 300px;
|
|
|
- height: 200px;
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
:deep(.el-table th.el-table__cell) {
|