| | |
| | | </el-button> |
| | | </el-row> |
| | | |
| | | <el-dialog |
| | | title="歡迎新使用者" |
| | | :custom-class="'pam-register-dialog'" |
| | | :visible.sync="registerDialogVisible" |
| | | :fullscreen="true" |
| | | :close-on-click-modal="false" |
| | | :show-close="false" |
| | | center> |
| | | <span> |
| | | <PopUpFrame |
| | | :isOpen.sync="registerDialogVisible" |
| | | :dialogWidth="'90%'" |
| | | :drawerSize="'95%'" |
| | | class="pam-register-dialog" |
| | | @closePopUp="isReadContract = false" |
| | | > |
| | | <div class="subTitle text--center mb-20">歡迎新使用者</div> |
| | | <el-row> |
| | | <input |
| | | class="pam-input" |
| | |
| | | </el-row> |
| | | <el-row class="pt-10"> |
| | | <div |
| | | v-if="registerDialogVisible" |
| | | class="mdTxt pam-register-dialog__contract" |
| | | ref="contract" |
| | | @scroll="detectContractReadStatus"> |
| | |
| | | </label> |
| | | </div> |
| | | </el-row> |
| | | </span> |
| | | <span slot="footer" class="dialog-footer"> |
| | | <el-button |
| | | type="primary" |
| | | :disabled="!name || !agreeContract || !isReadContract" |
| | | @click="applyAccount" |
| | | >建立新帳號 |
| | | </el-button> |
| | | </span> |
| | | </el-dialog> |
| | | <div class="text--center mt-10"> |
| | | <el-button |
| | | type="primary" |
| | | :disabled="!name || !agreeContract || !isReadContract" |
| | | @click="applyAccount" |
| | | >建立新帳號 |
| | | </el-button> |
| | | </div> |
| | | </PopUpFrame> |
| | | |
| | | <PopUpFrame class="pam-popUpFrame" |
| | | :isOpen.sync="emailOtpConfirmVisable" |
| | |
| | | i { |
| | | font-size: 27px; |
| | | padding-right: 5px; |
| | | } |
| | | } |
| | | |
| | | .pam-register-dialog { |
| | | padding: 30px 20px; |
| | | display: flex; |
| | | flex-direction: column; |
| | | border-radius: 0; |
| | | &.el-dialog { |
| | | border-radius: 0; |
| | | } |
| | | .el-dialog__header { |
| | | padding: 0; |
| | | margin-bottom: 30px; |
| | | .el-dialog__title { |
| | | @extend .subTitle; |
| | | } |
| | | } |
| | | .el-dialog__body { |
| | | flex: 1; |
| | | padding: 0; |
| | | margin-bottom: 30px; |
| | | } |
| | | .el-dialog__footer { |
| | | padding: 0 !important; |
| | | } |
| | | } |
| | | |