123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- /*
- * 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, onMounted, PropType, toRefs, watch } from 'vue'
- import Modal from '@/components/modal'
- import { NForm, NFormItem, NInput, NSelect } from 'naive-ui'
- import { useModalData } from './use-modalData'
- import { useI18n } from 'vue-i18n'
- const TenantModal = defineComponent({
- name: 'tenant-modal',
- emits: ['cancelModal', 'confirmModal'],
- setup(props, ctx) {
- const { variables, getListData, handleValidate} = useModalData(props, ctx)
- const { t } = useI18n()
- const cancelModal = () => {
- if (props.statusRef === 0) {
- variables.model.tenantCode = ''
- variables.model.description = ''
- }
- ctx.emit('cancelModal', props.showModalRef)
- }
- const confirmModal = () => {
- handleValidate(props.statusRef)
- }
- watch(() => props.showModalRef, () => {
- props.showModalRef && getListData()
- })
-
- watch(() => props.statusRef, () => {
- if (props.statusRef === 0) {
- variables.model.tenantCode = ''
- variables.model.description = ''
- } else {
- variables.model.id = props.row.id
- variables.model.tenantCode = props.row.tenantCode
- variables.model.queueId = props.row.queueId
- variables.model.description = props.row.description
- }
- })
- watch(() => props.row, () => {
- variables.model.id = props.row.id
- variables.model.tenantCode = props.row.tenantCode
- variables.model.queueId = props.row.queueId
- variables.model.description = props.row.description
- })
- return { t, ...toRefs(variables), cancelModal, confirmModal }
- },
- props: {
- showModalRef: {
- type: Boolean as PropType<boolean>,
- default: false,
- },
- statusRef: {
- type: Number as PropType<number>,
- default: 0,
- },
- row: {
- type: Object as PropType<any>,
- default: {},
- }
- },
- render() {
- const { t } = this
- return (
- <div>
- <Modal
- title={this.statusRef === 0 ? t('security.tenant.create_tenant') : t('security.tenant.edit_tenant')}
- show={this.showModalRef}
- onCancel={this.cancelModal}
- onConfirm={this.confirmModal}
- >
- {{
- default: () => (
- <NForm
- model={this.model}
- rules={this.rules}
- ref="tenantFormRef"
- label-placement="left"
- label-width={140}
- require-mark-placement="left"
- size="small"
- style="{ maxWidth: '240px' }"
- >
- <NFormItem label={t('security.tenant.tenant_code')} path="tenantCode">
- <NInput disabled={this.statusRef === 1} placeholder={t('security.tenant.tenant_code_tips')} v-model={[this.model.tenantCode, 'value']} />
- </NFormItem>
- <NFormItem label={t('security.tenant.queue_name')} path="queueId">
- <NSelect
- placeholder={t('security.tenant.queue_name_tips')}
- options={this.model.generalOptions}
- v-model={[this.model.queueId, 'value']}
- />
- </NFormItem>
- <NFormItem label={t('security.tenant.description')} path="description">
- <NInput
- placeholder={t('security.tenant.description_tips')}
- v-model={[this.model.description, 'value']}
- type="textarea"
- />
- </NFormItem>
- </NForm>
- ),
- }}
- </Modal>
- </div>
- )
- },
- })
- export default TenantModal
|