| | |
| | | const projectName = ref(''); |
| | | const thickNess = ref(route.params.thickNess); |
| | | const model = ref(route.params.model); |
| | | const quantitys = ref(route.params.quantity); |
| | | const areas = ref(route.params.area); |
| | | onBeforeUnmount(() => { |
| | | localStorage.setItem('projectNo', projectNo.value); |
| | | }); |
| | |
| | | <el-button id="button" type="primary" @click="openDialog(4)">优化</el-button> |
| | | <el-dialog v-model="dialogVisible[4]" title="优化计算" destroy-on-close |
| | | style="width: 75%;height:90%;margin-top: 3vh;"> |
| | | <optimize-compute/> |
| | | <optimize-compute :quantity="quantitys" :area="areas" @send-data-event="handleTrimmingData"/> |
| | | </el-dialog> |
| | | </div> |
| | | </div> |