|
|
@@ -981,7 +981,12 @@ export default class extends Vue {
|
|
|
const uDesignStyle = this.DesignStyle === '无' ? '' : this.DesignStyle;
|
|
|
const uColorCard = this.ColorCard === '无' ? '' : this.ColorCard;
|
|
|
const uSelectedProcess = this.selectedProcess === '无' ? '' : this.selectedProcess;
|
|
|
- let uSelectedSplit = this.selectedSplit === '无' ? '' : this.selectedSplit;
|
|
|
+ let uSelectedSplit = '';
|
|
|
+ if (this.selectedProcess === '无' || this.selectedProcess === '平涂'){
|
|
|
+ uSelectedSplit === '平涂';
|
|
|
+ }else {
|
|
|
+ uSelectedSplit = this.selectedSplit === '无' ? '' : this.selectedSplit;
|
|
|
+ }
|
|
|
const uWindowsColor = (this.selectedWindowFrame === '无' || this.selectedWindowStyle === '无') ? '' : this.selectedWindowFrame;//窗套样式为空也传空
|
|
|
const uCastRailing = this.selectedRailing === '无' ? '' : this.selectedRailing;
|
|
|
const uColumnType = this.selectedColumnType === '无' ? '' : this.selectedColumnType;//没有传空
|