king
2024-01-25 cabb1d314fd0d59a747331512b8ac3ecf1ef7cd3
2024-01-25
3个文件已修改
56 ■■■■■ 已修改文件
src/views/billprint/index.jsx 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/design/header/index.scss 36 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/menudesign/printmenuform/index.jsx 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/billprint/index.jsx
@@ -167,8 +167,6 @@
        sessionStorage.setItem('LoginUID', result.LoginUID || '')
        sessionStorage.setItem('dataM', 'false')
        this.getMenuParam()
        // 获取系统信息
        let _param = {
          func: 's_Get_style',
@@ -199,6 +197,8 @@
              document.getElementsByTagName('head')[0].appendChild(link)
            }
          }
          this.getMenuParam()
        })
      } else {
        notification.warning({
@@ -252,6 +252,10 @@
          return
        }
        if (config.webTitle) {
          document.title = config.webTitle
        }
        config.style = config.style || {}
        config.pageSize = ['A4', 'A3', 'A5'].includes(config.pageSize) ? config.pageSize : 'A4'
        config.pageLayout = config.pageLayout !== 'horizontal' ? 'vertical' : 'horizontal'
src/views/design/header/index.scss
@@ -65,24 +65,24 @@
    }
  }
  .header-menu.level4 {
    li {
      cursor: default;
      &:hover {
        span {
          cursor: default;
          color: rgba(255, 255, 255, 0.65);
          border-bottom: none;
        }
      }
      &.active {
        span {
          color: #ffffff;
          border-bottom: 4px solid #1890ff;
        }
      }
    }
  }
  // .header-menu.level4 {
  //   li {
  //     cursor: default;
  //     &:hover {
  //       span {
  //         cursor: default;
  //         color: rgba(255, 255, 255, 0.65);
  //         border-bottom: none;
  //       }
  //     }
  //     &.active {
  //       span {
  //         color: #ffffff;
  //         border-bottom: 4px solid #1890ff;
  //       }
  //     }
  //   }
  // }
  .header-setting {
    float: right;
src/views/menudesign/printmenuform/index.jsx
@@ -257,6 +257,18 @@
              })(<Input onChange={(e) => this.selectChange('callNo', e.target.value)}/>)}
            </Form.Item>
          </Col> : null}
          <Col span={24}>
            <Form.Item label={
              <Tooltip placement="topLeft" title="可自定义在浏览器标题栏中显示的网页标题。">
                <QuestionCircleOutlined className="mk-form-tip" />
                网页标题
              </Tooltip>
            }>
              {getFieldDecorator('webTitle', {
                initialValue: config.webTitle || ''
              })(<Input onChange={(e) => this.selectChange('webTitle', e.target.value)}/>)}
            </Form.Item>
          </Col>
        </Row>
      </Form>
    )