jeecg j-dict-select-tag组件在未选择值的时候,不显示j-modal的确认按钮

KongPluginModal文件

<template>
  <j-modal
    :title="title"
    :width="width"
    :visible="visible"
    switchFullscreen
    @ok="handleOk"
    :okButtonProps="{ class:{'jee-hidden': disable} }"
    @cancel="handleCancel"
    cancelText="关闭">
    <kong-plugin-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"
                      @okButton="okButton"></kong-plugin-form>

    <!--    <template slot="footer">-->
    <!--      <a-button @click="handleCancel">取消</a-button>-->
    <!--      <a-button type="primary" @click="handleOk">确定11</a-button>-->
    <!--    </template>-->

  </j-modal>
</template>

重点为
:okButtonProps="{ class:{‘jee-hidden’: disable} }"
和@okButton=“okButton”

data中  disable: true
method中      okButton(res) {
                //确定是否显示表单的确认按钮
                this.disable = res
              }

KongPluginForm

<template>
  <a-spin :spinning="confirmLoading">
    <j-form-container :disabled="formDisabled">
      <a-form :form="form" slot="detail">
        <a-row>
          <a-col :span="24">
            <a-form-item label="插件名" :labelCol="labelCol" :wrapperCol="wrapperCol">
              <j-dict-select-tag
                v-decorator="['name', { rules: [{ required: true, message: '请选择插件' }] }]"
                :triggerChange="true"
                placeholder="请选择插件"
                dictCode="kong_plugin_name"
                @change="getType"
              />
            </a-form-item>
          </a-col>

重点:@change=“getType”

data中  pluginName: ''
method中  	//当切换plugin类型的时候,得到他的值
            getType() {
                this.$nextTick(() => {
                    console.log('form:{}', this.form.getFieldValue('name'));
                    if (typeof this.form.getFieldValue('name') == 'undefined' || JSON.stringify(this.form.getFieldValue('name')) == "{}") {
                        //没有选择插件类型名的话,禁掉提交功能
                        this.$emit('okButton', true)
                    } else {
                        this.$emit('okButton', false)
                    }
                });
            },

效果图
在这里插入图片描述

在这里插入图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值