|
|
@ -27,26 +27,15 @@ |
|
|
|
</van-col> |
|
|
|
</van-row> |
|
|
|
<van-row class="graphite_operate"> |
|
|
|
<<<<<<< HEAD |
|
|
|
<van-col class="w-56"> |
|
|
|
<van-button size="large" class="btn_size" @click="onChooseCaft">选择工艺</van-button> |
|
|
|
</van-col> |
|
|
|
<van-col class="w-[13.5rem]"> |
|
|
|
======= |
|
|
|
<van-col span="11"> |
|
|
|
<van-button size="large" class="btn_size" @click="onChooseCaft">选择工艺</van-button> |
|
|
|
</van-col> |
|
|
|
<van-col span="11"> |
|
|
|
>>>>>>> d371cd3 (完善溶液配置页面) |
|
|
|
<van-button size="large" class="btn_size">执行工艺</van-button> |
|
|
|
</van-col> |
|
|
|
</van-row> |
|
|
|
<van-row class="graphite_operate"> |
|
|
|
<<<<<<< HEAD |
|
|
|
<van-col class="w-56"> |
|
|
|
======= |
|
|
|
<van-col span="11"> |
|
|
|
>>>>>>> d371cd3 (完善溶液配置页面) |
|
|
|
<van-button size="large" class="btn_size" @click="onAddLiquid">添加溶液</van-button> |
|
|
|
</van-col> |
|
|
|
<van-col class="w-[13.5rem]"> |
|
|
@ -83,18 +72,12 @@ |
|
|
|
</div> |
|
|
|
</van-overlay> |
|
|
|
<!--选择工艺--> |
|
|
|
<<<<<<< HEAD |
|
|
|
<OverlayModal :visible="craftVisible"> |
|
|
|
<CraftList @changeVisible="changeVisible"></CraftList> |
|
|
|
======= |
|
|
|
<OverlayModal :visible="carfVisible"> |
|
|
|
<CarfList @changeVisible="changeVisible"></CarfList> |
|
|
|
>>>>>>> d371cd3 (完善溶液配置页面) |
|
|
|
</OverlayModal> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
<script lang="ts" setup> |
|
|
|
<<<<<<< HEAD |
|
|
|
import { ref, onMounted } from 'vue'; |
|
|
|
import {HeatPosition, TakePickture, AddLiquid} from './components' |
|
|
|
import OverlayModal from '@/components/OverlayModal.vue'; |
|
|
@ -120,14 +103,6 @@ |
|
|
|
console.log('selectedTrayList.value--', selectedTrayList.value) |
|
|
|
} |
|
|
|
|
|
|
|
======= |
|
|
|
import { ref } from 'vue'; |
|
|
|
import {HeatPosition, TakePickture, AddLiquid} from './components' |
|
|
|
import OverlayModal from '@/components/OverlayModal.vue'; |
|
|
|
import CarfList from './components/CarfList.vue'; |
|
|
|
const heatList:any = ref([1,2,3,4,5,6]) |
|
|
|
const carfVisible = ref(false) |
|
|
|
>>>>>>> d371cd3 (完善溶液配置页面) |
|
|
|
//添加溶液 |
|
|
|
const liquidVisible = ref(false) |
|
|
|
const onAddLiquid = () => { |
|
|
@ -135,19 +110,11 @@ |
|
|
|
} |
|
|
|
|
|
|
|
const changeVisible = () => { |
|
|
|
<<<<<<< HEAD |
|
|
|
craftVisible.value = false; |
|
|
|
} |
|
|
|
//选择工艺 |
|
|
|
const onChooseCaft = () => { |
|
|
|
craftVisible.value = true; |
|
|
|
======= |
|
|
|
carfVisible.value = false; |
|
|
|
} |
|
|
|
//选择工艺 |
|
|
|
const onChooseCaft = () => { |
|
|
|
carfVisible.value = true; |
|
|
|
>>>>>>> d371cd3 (完善溶液配置页面) |
|
|
|
} |
|
|
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
|
|