king
2022-11-23 1aef489df57146459a4cfdbfdcb8647327300acb
2022-11-23
8个文件已修改
28 ■■■■■ 已修改文件
src/menu/components/form/dragtitle/options.jsx 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/menu/components/form/simple-form/options.jsx 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/tabviews/rolemanage/index.scss 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/templates/modalconfig/settingform/index.jsx 7 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/design/sidemenu/editthdmenu/index.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/design/sidemenu/index.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/design/sidemenu/thdmenuform/index.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/design/sidemenu/thdmenuplus/index.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/menu/components/form/dragtitle/options.jsx
@@ -7,13 +7,13 @@
  if (appType === 'mob') {
    group.fields.forEach(f => {
      if (f.field && ['select', 'text', 'number'].includes(f.type) && f.hidden !== 'true' && f.readonly !== 'true') {
      if (f.field && ['select', 'text', 'number', 'textarea'].includes(f.type) && f.hidden !== 'true' && f.readonly !== 'true') {
        fields.push(f)
      }
    })
  } else {
    group.fields.forEach(f => {
      if (f.field && ['select', 'link', 'text', 'number'].includes(f.type) && f.hidden !== 'true' && f.readonly !== 'true') {
      if (f.field && ['select', 'link', 'text', 'number', 'textarea'].includes(f.type) && f.hidden !== 'true' && f.readonly !== 'true') {
        fields.push(f)
      }
    })
src/menu/components/form/simple-form/options.jsx
@@ -22,13 +22,13 @@
  if (appType === 'mob') {
    config.subcards[0].fields.forEach(f => {
      if (f.field && ['select', 'text', 'number'].includes(f.type) && f.hidden !== 'true' && f.readonly !== 'true') {
      if (f.field && ['select', 'text', 'number', 'textarea'].includes(f.type) && f.hidden !== 'true' && f.readonly !== 'true') {
        fields.push(f)
      }
    })
  } else {
    config.subcards[0].fields.forEach(f => {
      if (f.field && ['select', 'link', 'text', 'number'].includes(f.type) && f.hidden !== 'true' && f.readonly !== 'true') {
      if (f.field && ['select', 'link', 'text', 'number', 'textarea'].includes(f.type) && f.hidden !== 'true' && f.readonly !== 'true') {
        fields.push(f)
      }
    })
src/tabviews/rolemanage/index.scss
@@ -19,13 +19,12 @@
            margin-right: 5px;
          }
          .ant-input-affix-wrapper {
            width: calc(100% - 140px);
            max-width: 130px;
            width: calc(100% - 120px);
            max-width: 150px;
            margin-top: -2px;
            float: right;
            input {
              border-radius: 20px;
              // border: 1px solid #e9e9e9;
              height: 30px;
            }
          }
src/templates/modalconfig/settingform/index.jsx
@@ -111,12 +111,7 @@
            </Form.Item>
          </Col> */}
          <Col span={24}>
            <Form.Item label={
              <Tooltip placement="topLeft" title="对话框在仅有一个可输入表单(非隐藏、非只读的文本或数字)时有效。">
                <QuestionCircleOutlined className="mk-form-tip" />
                显示方式
              </Tooltip>
            }>
            <Form.Item label="显示方式">
              {getFieldDecorator('display', {
                initialValue: display || 'modal'
              })(
src/views/design/sidemenu/editthdmenu/index.jsx
@@ -288,7 +288,7 @@
        <Modal
          title="修改菜单"
          visible={this.state.handleMVisible}
          width={600}
          width={700}
          onOk={this.memuSubmit}
          confirmLoading={this.state.loading}
          onCancel={() => {this.setState({handleMVisible: false})}}
src/views/design/sidemenu/index.jsx
@@ -367,7 +367,7 @@
        <Modal
          title="修改菜单"
          visible={thdVisible}
          width={600}
          width={700}
          onOk={this.thdSubmit}
          confirmLoading={loading}
          onCancel={() => {this.setState({thdVisible: false})}}
src/views/design/sidemenu/thdmenuform/index.jsx
@@ -158,7 +158,7 @@
                    message: '地址最长为1024个字符!'
                  }
                ]
              })(<TextArea rows={2} />)}
              })(<TextArea rows={3} />)}
            </Form.Item>
          </Col> : null}
        </Row>
src/views/design/sidemenu/thdmenuplus/index.jsx
@@ -349,7 +349,7 @@
        <Modal
          title="添加菜单"
          visible={this.state.addVisible}
          width={600}
          width={700}
          onOk={this.memuSubmit}
          confirmLoading={loading}
          onCancel={() => {this.setState({addVisible: false})}}