From 48bf4ac213a25983016648b15547d6d797cb48ae Mon Sep 17 00:00:00 2001 From: charlie <charlie@lvguanqingdeMacBook-Pro.local> Date: 星期六, 22 一月 2022 10:25:32 +0800 Subject: [PATCH] update: 新增顧問結案和新增約訪介面中的紅色必填星號 --- PAMapp/components/Interview/InterviewAdd.vue | 16 +++++++++++++++- 1 files changed, 15 insertions(+), 1 deletions(-) diff --git a/PAMapp/components/Interview/InterviewAdd.vue b/PAMapp/components/Interview/InterviewAdd.vue index cb0f122..d86d7a6 100644 --- a/PAMapp/components/Interview/InterviewAdd.vue +++ b/PAMapp/components/Interview/InterviewAdd.vue @@ -5,7 +5,7 @@ <span>{{interviewRecord.lastModifiedDate | formatDate}} ��</span> </div> <el-row class="mdTxt mb-10"> - <el-col :xs="16" :sm="20">蝝赤����</el-col> + <el-col :xs="16" :sm="20" class="required">蝝赤����</el-col> <el-col :xs="8" :sm="4" class="text--right" v-if="interviewId"> <span v-if="!isEdit" @@ -248,4 +248,18 @@ font-size: 20px; } } +.required { + position: relative; + transform: translateX(10px); + + &::before { + content: '*'; + font-size: 15px; + font-weight: bold; + position: absolute; + color: #FF0000; + transform: translateX(-10px); + z-index: 5; + } +} </style> -- Gitblit v1.8.0