| | |
| | | </UiField> |
| | | </el-row> |
| | | |
| | | |
| | | <AddAndReservedBtns |
| | | v-if="currentRole!==role.ADMIN" |
| | | :cusClass="'pam-paragraph'" |
| | | :agentInfo="agentInfo" |
| | | @openPopUp="alertAddSuccess" |
| | |
| | | |
| | | <script lang="ts"> |
| | | import { Context } from '@nuxt/types'; |
| | | import { namespace } from 'nuxt-property-decorator'; |
| | | import { Vue, Component } from 'vue-property-decorator'; |
| | | import { getConsultantDetail } from '~/assets/ts/api/consultant'; |
| | | |
| | | import { Role } from '~/assets/ts//models/enum/Role'; |
| | | const roleStorage = namespace('localStorage'); |
| | | @Component |
| | | export default class AgentInfoComponent extends Vue { |
| | | @roleStorage.Getter currentRole!:string|null; |
| | | role = Role; |
| | | agentInfo!: AgentInfo; |
| | | isAlertAddSuccess = false; |
| | | isAlertFieldInfo = false; |