| | |
| | | <el-row |
| | | class="pam-paragraph"> |
| | | <UiField label="未成交原因" :labelSize="20" class="required"> |
| | | <UiSelect :closeReason.sync="appointmentCloseInfo.closedReason" |
| | | :options="appointmentFailReason"/> |
| | | </UiField> |
| | | <div class="appointment-client-detail-close__select-box"> |
| | | <select |
| | | class="appointment-client-detail-close__select" |
| | | name="closedReason" id="closedReason" v-model="appointmentCloseInfo.closedReason"> |
| | | <option :value="failReason.value" v-for="(failReason, index) in appointmentFailReason" :key="index"> |
| | | {{ failReason.key }} |
| | | </option> |
| | | </select> |
| | | <i class="icon-down down-icon"></i> |
| | | </div> |
| | | <div class="mt-10"> |
| | | <input |
| | | v-if="appointmentCloseInfo.closedReason === 'other' |
| | | || appointmentCloseInfo.closedReason === 'no_suitable_commodity'" |
| | | class="appointment-client-detail-close__input" |
| | | v-model="appointmentCloseInfo.closedOtherReason" |
| | | placeholder="請輸入原因,限50字。" |
| | | type="text"> |
| | | </div> |
| | | <input |
| | | v-if="appointmentCloseInfo.closedReason === 'other' |
| | | || appointmentCloseInfo.closedReason === 'no_suitable_commodity'" |
| | | class="appointment-client-detail-close__input mt-10" |
| | | v-model="appointmentCloseInfo.closedOtherReason" |
| | | placeholder="請輸入原因,限50字。" |
| | | type="text"> |
| | | </el-row> |
| | | </template> |
| | | |
| | |
| | | |
| | | <style lang="scss" scoped> |
| | | .appointment-close__remark, |
| | | .appointment-client-detail-close__input, |
| | | .appointment-client-detail-close__select { |
| | | .appointment-client-detail-close__input { |
| | | border-radius: 5px; |
| | | border : 1px solid #707070; |
| | | font-size: 20px; |
| | |
| | | } |
| | | &.is-invalid { |
| | | border-color: $PRIMARY_RED !important; |
| | | } |
| | | } |
| | | .appointment-client-detail-close__select-box { |
| | | position: relative; |
| | | |
| | | & .appointment-client-detail-close__select{ |
| | | appearance: none; |
| | | } |
| | | & .down-icon { |
| | | position: absolute; |
| | | right: 7px; |
| | | bottom: 10px; |
| | | } |
| | | } |
| | | .invite-review{ |