kts-component-invoice-operate 3.2.114 → 3.2.115

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kts-component-invoice-operate",
3
- "version": "3.2.114",
3
+ "version": "3.2.115",
4
4
  "scripts": {
5
5
  "dev": "dumi dev",
6
6
  "start": "dumi dev",
@@ -87,7 +87,7 @@ export default () => {
87
87
  <div className='statistics-digtal-total-tax' >
88
88
  <div>价税合计(大写)</div>
89
89
  <div style={{ paddingLeft: 30 }} >
90
- <Icon component={ForkSvg} />
90
+ <Icon style={{fontSize: 16}} component={ForkSvg} />
91
91
  <span style={{ fontWeight: 'bold', marginLeft: 4 }} >{nzhcn.toMoney(lineAmountIncludeTax, { outSymbol: false })}</span>
92
92
  </div>
93
93
  <div style={{ flex: 1 }} />
@@ -60,6 +60,11 @@
60
60
 
61
61
  .ktsAnt3x-form-item-control {
62
62
  line-height: 1.4;
63
+
64
+ .digtal-stakeholder-form-text {
65
+ word-break: break-all;
66
+ line-height: 29px;
67
+ }
63
68
  }
64
69
 
65
70
  .ktsAnt3x-form-item-control-wrapper {
@@ -70,7 +75,17 @@
70
75
  }
71
76
 
72
77
  .kts-invoice-operate-invoice-digtal-stakeholder.readOnly {
78
+ &>div:nth-child(even) {
79
+ justify-content: start;
80
+ }
81
+
73
82
  .digtal-stakeholder-form .ktsAnt3x-row.ktsAnt3x-form-item .ktsAnt3x-form-item-label {
74
83
  line-height: 1.4;
75
84
  }
85
+
86
+ .digtal-stakeholder-form .ktsAnt3x-row.ktsAnt3x-form-item .ktsAnt3x-form-item-control {
87
+ .digtal-stakeholder-form-text {
88
+ line-height: 1.4;
89
+ }
90
+ }
76
91
  }
@@ -357,7 +357,7 @@ function BuyerNameInput(props: InputProps & { fieldName: string; myform: Wrapped
357
357
  }
358
358
  }, [autoComplete.onBuyerNameSearch, fieldName])
359
359
 
360
- if (props.readOnly) return <span>{props.value}</span>;
360
+ if (props.readOnly) return <span className='digtal-stakeholder-form-text'>{props.value}</span>;
361
361
 
362
362
  return (
363
363
  <AutoComplete
@@ -375,7 +375,7 @@ class MyInput extends React.Component<InputProps>{
375
375
  render() {
376
376
  const props = this.props;
377
377
  if (props.readOnly) {
378
- return <span>{props.value}</span>
378
+ return <span className='digtal-stakeholder-form-text'>{props.value}</span>
379
379
  } else {
380
380
  return <Input {...props} />
381
381
  }