debugger
This commit is contained in:
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user