This commit is contained in:
parent
dbb60ccde6
commit
99f708c22b
|
@ -198,8 +198,13 @@ export default {
|
|||
},
|
||||
created() {
|
||||
this.GetUserAnswer();
|
||||
let that = this;
|
||||
window.getParameter = that.getParameter;
|
||||
},
|
||||
methods: {
|
||||
getParameter(data) {
|
||||
alert(data);
|
||||
},
|
||||
async save() {
|
||||
var obj = {
|
||||
wlgl_nw_name: this.tableData[0].wlgl_nw_name,
|
||||
|
|
|
@ -223,9 +223,15 @@ export default {
|
|||
}
|
||||
this.loading = false;
|
||||
},
|
||||
//交互方法
|
||||
getParameter(data) {
|
||||
alert(data);
|
||||
},
|
||||
},
|
||||
created() {
|
||||
this.GetUserAnswer();
|
||||
let that = this;
|
||||
window.getParameter = that.getParameter;
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
|
|
@ -100,6 +100,8 @@ export default {
|
|||
};
|
||||
},
|
||||
created() {
|
||||
let that = this;
|
||||
window.getParameter = that.getParameter;
|
||||
this.time = this.$moment().format("HH:mm:ss");
|
||||
this.productChartOption = productChart;
|
||||
this.mainshaftChartOption = mainshaftChart;
|
||||
|
@ -109,6 +111,9 @@ export default {
|
|||
this.stopChartOption = stopChart;
|
||||
},
|
||||
methods: {
|
||||
getParameter(data) {
|
||||
alert(data);
|
||||
},
|
||||
//根据屏幕自适应图表字体
|
||||
fontSize(res) {
|
||||
const clientWidth =
|
||||
|
|
Loading…
Reference in New Issue