update
This commit is contained in:
@@ -197,7 +197,7 @@ export let cases = {
|
||||
params: {},
|
||||
keys: {
|
||||
prj_uid: dt.PRO_UID
|
||||
},
|
||||
}
|
||||
})
|
||||
},
|
||||
/**
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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 +
|
||||
|
||||
Reference in New Issue
Block a user