From c20a0f1a1dbaa23d1b073f9a9377cac5d572f277 Mon Sep 17 00:00:00 2001 From: Mila <Mila@pollex.com.tw> Date: 星期四, 23 十二月 2021 15:10:18 +0800 Subject: [PATCH] fixed TODO#131357 進行預約: 職業選擇畫面調整 --- PAMapp/components/careerSelect.vue | 39 ++++++++++++++++++++++++--------------- 1 files changed, 24 insertions(+), 15 deletions(-) diff --git a/PAMapp/components/careerSelect.vue b/PAMapp/components/careerSelect.vue index 82c8159..0dc24dc 100644 --- a/PAMapp/components/careerSelect.vue +++ b/PAMapp/components/careerSelect.vue @@ -1,6 +1,6 @@ <template> <div> - <div class="mdTxt pt-10 pb-10">�璆�</div> + <div class="mdTxt pt-10 pb-10">���璆�</div> <div class="ques-career__select" @click="openPopUp"> <div class="ques-career__select-input"> <span v-if="!syncCareerSelect">隢���</span> @@ -10,9 +10,9 @@ <i class="icon-down down-icon"></i> </div> </div> - <PopUpFrame :isOpen.sync="showJobDrawer" drawerSize='60%'> + <PopUpFrame :isOpen.sync="showJobDrawer" :dialogWidth="'400px'"> <div class="pam-career"> - <div class="subTitle">�璆�</div> + <div class="subTitle">���璆�</div> <el-radio-group class="pam-single__select--col" v-model="career" @change="handleChange"> <el-radio-button v-for="(career,index) in options" :key="index" @@ -20,8 +20,10 @@ {{career.title}} </el-radio-button> </el-radio-group> - <div class="mt-10" v-if="career === '�隞�'"> - <input class="pam-career__other-input" + <div class="mt-20 h-50 pam-career__other"> + <input + v-if="career === '�隞�'" + class="pam-career__other-input" :class="{'warning':!career_Other}" v-model="career_Other" > </div> @@ -41,6 +43,7 @@ <script lang="ts"> import { Component , PropSync , Vue} from "vue-property-decorator"; import * as _ from 'lodash'; + @Component export default class CareerSelect extends Vue { @PropSync('careerSelect',{ type: String, default :''}) syncCareerSelect! :string; @@ -127,23 +130,29 @@ } } } - .pam-career__other-input{ + .h-50 { height: 50px; + } + .pam-career__other { width: 100%; - border: 1px #CCCCCC solid; - width: 300px; - padding-left: 15px; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - &.warning{ - border: 1px $PRIMARY_RED solid; + .pam-career__other-input { + height: 50px; + border: 1px #CCCCCC solid; + width: 100%; + padding-left: 15px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + &.warning{ + border: 1px $PRIMARY_RED solid; + } } + } .pam-career__confirm{ width: 120px; height: 50px; - margin-top: 30px; + margin-top: 20px; } </style> -- Gitblit v1.8.0