Commit 0784efa31ebf74887b03bbf71291c63e72c726af

Authored by Min
1 parent 80a81cb6

1.修复订单工艺评审样式

2.修复上批对比重复问题
src/components/Common/CommonViewTable/index.js
... ... @@ -266,7 +266,7 @@ export default class CommonViewTable extends Component {
266 266 <Col key={viewRowSId} span={iColValueView} order={viewOrder || 5} style={{ flex: app.currentPane.title === '功能模块界面设置单据' ? 1 : undefined }}>
267 267 <Row type="flex" className="viewStyle" style={{ height: 'auto', overflow: 'auto', marginTop: 0 }}>
268 268 {
269   - tableConfig.sChinese === '上批对比' ?
  269 + tableConfig.sChinese === '上批对比1' ?
270 270 <Col span={24}>
271 271 <Divider
272 272 orientation={'left'}
... ... @@ -430,7 +430,7 @@ export default class CommonViewTable extends Component {
430 430 </AntdDraggableModal>
431 431 : ''
432 432 }
433   -
  433 +
434 434 </Col> : ''
435 435 );
436 436 }
... ...
src/index.less
... ... @@ -4053,13 +4053,27 @@ table tr td .ant-select-auto-complete.ant-select .ant-input {
4053 4053  
4054 4054 .commonAntSpace {
4055 4055 width: 100%;
4056   -
4057   - .ant-space-item:nth-child(1) {
4058   - width: 100%;
  4056 + :global {
  4057 + .ant-space-item:nth-child(1) {
  4058 + width: 100%;
  4059 + }
  4060 + .ant-space-item:nth-child(2) {
  4061 + width: auto;
  4062 + }
4059 4063 }
  4064 +}
4060 4065  
4061   - .ant-space-item:nth-child(2) {
4062   - width: auto;
  4066 +.commonNewBillContainer {
  4067 + :global {
  4068 + .ant-form-item-control-input-content {
  4069 + .ant-input-number {
  4070 + width: 100% !important;
  4071 +
  4072 + .ant-input-number-input {
  4073 + height: 28px;
  4074 + }
  4075 + }
  4076 + }
4063 4077 }
4064 4078 }
4065 4079  
... ...