This commit is contained in:
Henry Jordan
2021-01-21 20:48:51 +00:00
parent 991e3ede34
commit 0c5113928f
3 changed files with 12 additions and 12 deletions

View File

@@ -197,7 +197,7 @@ export let cases = {
params: {},
keys: {
prj_uid: dt.PRO_UID
},
}
})
},
/**

View File

@@ -68,11 +68,11 @@ export default {
perPage: 200,
filterable: true,
pagination: {
show: false,
show: false
},
headings: {
key: this.$i18n.t("ID_NAME"),
value: this.$i18n.t("ID_VALUE"),
value: this.$i18n.t("ID_FIELD_DYNAFORM_TEXT")
},
},
optionsDebugVars: {
@@ -80,9 +80,9 @@ export default {
options: [
{ text: this.$i18n.t("ID_OPT_ALL"), value: "all" },
{ text: this.$i18n.t("ID_DYNAFORM"), value: "dyn" },
{ text: this.$i18n.t("ID_SYSTEM"), value: "sys" },
],
},
{ text: this.$i18n.t("ID_SYSTEM"), value: "sys" }
]
}
};
},
mounted() {
@@ -106,7 +106,7 @@ export default {
_.forIn(response.data.data[0], function (value, key) {
dt.push({
key,
value,
value
});
});
this.dataTable = dt;
@@ -123,7 +123,7 @@ export default {
_.forIn(response.data.data[0], function (value, key) {
dt.push({
key,
value,
value
});
});
this.dataTableTriggers = dt;
@@ -135,7 +135,7 @@ export default {
*/
changeOption(opt) {
this.getDebugVars({ filter: opt });
},
}
},
};
</script>

View File

@@ -19,16 +19,16 @@ import api from "../api/index";
export default {
name: "XCase",
components: {
Debugger,
Debugger
},
props: {
data: Object,
data: Object
},
mounted() {
let that = this;
this.height = window.innerHeight - this.diffHeight;
this.dataCase = this.$parent.dataCase;
if (this.dataCase.ACTION == "jump") {
if (this.dataCase.ACTION === "jump") {
this.path =
window.config.SYS_SERVER +
window.config.SYS_URI +