123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- /*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- import { defineComponent, inject } from 'vue'
- import { useI18n } from 'vue-i18n'
- import {
- NInput,
- NForm,
- NFormItem,
- NSelect,
- NRadio,
- NRadioGroup,
- NSpace,
- NAlert
- } from 'naive-ui'
- import Modal from '@/components/modal'
- import {
- useModal,
- useSharedUserModalState,
- UserModalSharedStateKey
- } from './use-modal'
- export const UserModal = defineComponent({
- name: 'user-modal',
- setup() {
- const { t } = useI18n()
- const sharedState =
- inject(UserModalSharedStateKey) || useSharedUserModalState()
- const modalState = useModal(sharedState)
- return {
- t,
- ...modalState
- }
- },
- render() {
- const { t } = this
- return (
- <Modal
- show={this.show}
- title={this.titleMap?.[this.mode || 'add']}
- onCancel={this.onModalCancel}
- confirmLoading={this.confirmLoading}
- onConfirm={this.onConfirm}
- >
- {{
- default: () => {
- if (this.mode === 'delete') {
- return (
- <NAlert type='error' title={t('security.user.delete_confirm')}>
- {t('security.user.delete_confirm_tip')}
- </NAlert>
- )
- }
- return (
- <NForm
- ref='formRef'
- model={this.formValues}
- rules={this.formRules}
- labelPlacement='left'
- labelAlign='left'
- labelWidth={80}
- >
- <NFormItem label={t('security.user.username')} path='userName'>
- <NInput
- inputProps={{ autocomplete: 'off' }}
- v-model:value={this.formValues.userName}
- />
- </NFormItem>
- <NFormItem
- label={t('security.user.user_password')}
- path='userPassword'
- >
- <NInput
- inputProps={{ autocomplete: 'off' }}
- type='password'
- v-model:value={this.formValues.userPassword}
- />
- </NFormItem>
- <NFormItem
- label={t('security.user.tenant_code')}
- path='tenantId'
- >
- <NSelect
- options={this.tenants}
- v-model:value={this.formValues.tenantId}
- />
- </NFormItem>
- <NFormItem label={t('security.user.queue')} path='queue'>
- <NSelect
- options={this.queues}
- v-model:value={this.formValues.queue}
- />
- </NFormItem>
- <NFormItem label={t('security.user.email')} path='email'>
- <NInput v-model:value={this.formValues.email} />
- </NFormItem>
- <NFormItem label={t('security.user.phone')} path='phone'>
- <NInput v-model:value={this.formValues.phone} />
- </NFormItem>
- <NFormItem label={t('security.user.state')} path='state'>
- <NRadioGroup v-model:value={this.formValues.state}>
- <NSpace>
- <NRadio value={1}>启用</NRadio>
- <NRadio value={0}>停用</NRadio>
- </NSpace>
- </NRadioGroup>
- </NFormItem>
- </NForm>
- )
- }
- }}
- </Modal>
- )
- }
- })
- export default UserModal
|