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: {}, params: {},
keys: { keys: {
prj_uid: dt.PRO_UID prj_uid: dt.PRO_UID
}, }
}) })
}, },
/** /**

View File

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

View File

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