update TemperatureDIalog
This commit is contained in:
parent
8e76ced541
commit
1e7b7ba3e3
@ -0,0 +1,3 @@
|
|||||||
|
export default {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
export default {
|
||||||
|
|
||||||
|
}
|
@ -1,24 +1,63 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-dialog :visible="visible" title="temperatureDialogVisible">temperatureDialogVisible</el-dialog>
|
<el-dialog :visible="visible" title="烧制温度" class="temperature-dialog" width="80%">
|
||||||
|
<div class="data-list"></div>
|
||||||
|
<div class="temp-chart" id="temp-chart"></div>
|
||||||
|
</el-dialog>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import chartConfig from "./configs/chart";
|
||||||
|
import tableConfig from "./configs/tableProps";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "TemperatureDialog",
|
name: "TemperatureDialog",
|
||||||
props: {},
|
props: {},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
visible: false
|
visible: false,
|
||||||
|
hisId: null,
|
||||||
|
chartConfig,
|
||||||
|
tableConfig,
|
||||||
|
chart: null,
|
||||||
|
dataList: [],
|
||||||
|
page: 1,
|
||||||
|
size: 100,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {},
|
created() {},
|
||||||
mounted() {},
|
mounted() {},
|
||||||
methods: {
|
methods: {
|
||||||
init(id) {
|
init(id) {
|
||||||
this.visible = true
|
this.hisId = id;
|
||||||
}
|
this.visible = true;
|
||||||
|
},
|
||||||
|
getList() {},
|
||||||
|
handlePageChange(page) {
|
||||||
|
this.page = page;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
handleSizeChange(size) {
|
||||||
|
this.size = size;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped></style>
|
<style scoped>
|
||||||
|
.temperature-dialog >>> .el-dialog__body {
|
||||||
|
height: 70vh;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.data-list,
|
||||||
|
.temp-chart {
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
width: 45%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.temp-chart {
|
||||||
|
flex: 1;
|
||||||
|
margin-left: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user