This commit is contained in:
Henry Jordan
2021-01-11 13:35:23 +00:00
parent c42c510298
commit a792e5666a
2 changed files with 252 additions and 4 deletions

View File

@@ -8,20 +8,29 @@
:height="height"
allowfullscreen
></iframe>
<Debugger />
</div>
</template>
<script>
import Debugger from '../components/home/debugger/Debugger.vue';
export default {
name: "XCase",
components: {},
components: {
Debugger,
},
props: {
data: Object,
},
data() {
return {
openCaseState:true
};
},
mounted() {
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 +
@@ -32,7 +41,6 @@ export default {
window.config.SYS_URI +
`cases/open?APP_UID=${this.dataCase.APP_UID}&DEL_INDEX=${this.dataCase.DEL_INDEX}&action=${this.dataCase.ACTION}`;
}
},
data() {
return {
@@ -41,7 +49,6 @@ export default {
diffHeight: 10,
dataCase: null,
path: "",
};
},
methods: {