Commit d765b5694c354606ac758d4291c98c6ae09926c9

Authored by 陈鑫涛
2 parents b21129f5 7aa82046

Merge branch 'main' of http://git.xlyprint.cn/zhangz/xlyUmi into main

src/components/QuickQuote/index.jsx
... ... @@ -2431,7 +2431,10 @@ const BackendParamsExtraComponent = props => {
2431 2431  
2432 2432 const viewProps = {
2433 2433 ...props,
2434   - viewConfigs: viewConfigs,
  2434 + viewConfigs: viewConfigs.map(item => ({
  2435 + ...item,
  2436 + costomStyle: styles.sParamConfig,
  2437 + })),
2435 2438 tableConfig: { ...slaveConfig, gdsconfigformslave: viewConfigs },
2436 2439 iColValueView: 24,
2437 2440 getViewRow: config => {
... ... @@ -2478,7 +2481,7 @@ const BackendParamsExtraComponent = props => {
2478 2481 return (
2479 2482 <>
2480 2483 <Divider style={{ margin: "5px 0" }} />
2481   - <div className={`${styles.viewTable} ${styles.viewTableDownView1}`}>
  2484 + <div className={`${styles.viewTable} ${styles.viewTableDownView1} ${styles.viewTableDownView2}`}>
2482 2485 <CommonViewTable {...viewProps} />
2483 2486 </div>
2484 2487 </>
... ...
src/components/QuickQuote/index.less
... ... @@ -173,6 +173,10 @@
173 173 }
174 174 }
175 175  
  176 + .viewTableDownView2 {
  177 + background-color: #3275b734;
  178 + }
  179 +
176 180 .viewTable1 {
177 181 padding: 0 20px 0 0;
178 182 }
... ...