|
|
|
@ -38,12 +38,6 @@
|
|
|
|
|
.transition-custom {
|
|
|
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
|
|
}
|
|
|
|
|
/*.scale-hover {*/
|
|
|
|
|
/* transition: transform 0.2s ease-in-out;*/
|
|
|
|
|
/*}*/
|
|
|
|
|
/*.scale-hover:hover {*/
|
|
|
|
|
/* transform: scale(1.02);*/
|
|
|
|
|
/*}*/
|
|
|
|
|
}
|
|
|
|
|
.text-sm {
|
|
|
|
|
font-size: 1.4rem;
|
|
|
|
@ -114,12 +108,12 @@
|
|
|
|
|
|
|
|
|
|
<!-- 曾用名 -->
|
|
|
|
|
<div class="space-y-3">
|
|
|
|
|
<label for="formerName" class="block text-sm font-medium text-gray-700">曾用名</label>
|
|
|
|
|
<label for="formerName" class="block text-sm font-medium text-gray-700 is-required control-label">曾用名</label>
|
|
|
|
|
<div class="relative">
|
|
|
|
|
<span class="absolute inset-y-0 left-0 flex items-center pl-3 text-gray-500">
|
|
|
|
|
<i class="fa-solid fa-user-tag"></i>
|
|
|
|
|
</span>
|
|
|
|
|
<input type="text" id="formerName" v-model="formData.formerName" class="w-full pl-10 pr-4 py-2 border border-gray-300 rounded-lg" placeholder="请输入曾用名">
|
|
|
|
|
<input required type="text" id="formerName" v-model="formData.formerName" class="w-full pl-10 pr-4 py-2 border border-gray-300 rounded-lg" placeholder="请输入曾用名(没有填无)">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -475,19 +469,6 @@
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
// 从后端获取转义后的 JSON 字符串
|
|
|
|
|
// if ([[${applyInfoList}]]){
|
|
|
|
|
// this.formData = {...[[${applyInfoList}]]}
|
|
|
|
|
// // 获取图片并转换为 Blob
|
|
|
|
|
// if (this.formData.photoUrl) {
|
|
|
|
|
// fetch(this.formData.photoUrl)
|
|
|
|
|
// .then(response => response.blob())
|
|
|
|
|
// .then(blob => {
|
|
|
|
|
// this.selectedFile = blob;
|
|
|
|
|
// })
|
|
|
|
|
// .catch(error => console.error('处理图片时出错:', error));
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
//图片上传
|
|
|
|
|