zhuzhuanzhuan
2023-07-18 4c31f76a8db1f1d503f50cf4f367786882b18d62
src/views/mdc/base/modules/MdcplancloseList/MdcplancloseForm.vue
@@ -5,7 +5,10 @@
        <a-row>
          <a-col :span="24">
            <a-form-model-item label="类型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="planCloseType">
              <a-input v-model="model.planCloseType" placeholder="请输入类型"  ></a-input>
              <j-dict-select-tag :readOnly="disableSubmit" placeholder="请选择类型"
                                 :triggerChange="true" dictCode="mdc_plan_type   "
                                 v-model="model.planCloseType" allow-clear/>
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
@@ -20,7 +23,7 @@
          </a-col>
          <a-col :span="24">
            <a-form-model-item label="时长(分钟)" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="planCloseTimeLong">
              <a-input v-model="model.planCloseTimeLong" placeholder="请输入时长(分钟)"  ></a-input>
              <a-input-number :min="0" v-model="model.planCloseTimeLong" placeholder="请输入时长(分钟)"  ></a-input-number>
            </a-form-model-item>
          </a-col>
          <a-col :span="24">
@@ -71,7 +74,6 @@
        url: {
          add: "/mdc/mdcPlanClose/add",
          edit: "/mdc/mdcPlanClose/edit",
          queryById: "/plan/mdcplanclose/queryById"
        }
      }
    },
@@ -123,4 +125,9 @@
      },
    }
  }
</script>
</script>
<style scoped lang="less">
  /deep/ .ant-input-number{
    width: 100%!important;
  }
</style>