Commit b7926791 authored by Z's avatar Z

🐛 Z: Hot: fix browser's devWindow's console's wrong info.

parent 781766ed
...@@ -335,7 +335,7 @@ export default { ...@@ -335,7 +335,7 @@ export default {
<style scoped> <style scoped>
.top { .top {
padding-bottom: 10px; padding-bottom: 10px;
border-bottom: 1px solid #f8f8f8; border-bottom: 1px solid #f8f8f8;
} }
.end { .end {
position: absolute; position: absolute;
...@@ -394,7 +394,7 @@ export default { ...@@ -394,7 +394,7 @@ export default {
.left { .left {
position: relative; position: relative;
width: 20%; width: 20%;
} }
.left, .left,
.right { .right {
......
...@@ -353,7 +353,7 @@ ...@@ -353,7 +353,7 @@
keys: '', keys: '',
}, },
page: { page: {
nowPageNum: '', nowPageNum: 1,
}, },
create: { create: {
taskName: '', taskName: '',
......
...@@ -219,7 +219,7 @@ ...@@ -219,7 +219,7 @@
keys: '', keys: '',
}, },
page:{ page:{
nowPageNum: '', nowPageNum: 1,
} }
}, },
rule:{ rule:{
......
...@@ -80,16 +80,16 @@ ...@@ -80,16 +80,16 @@
</div> </div>
<div class="ztask-pages"> <div class="ztask-pages">
<el-pagination <!-- <el-pagination-->
class="ztask-page" <!-- class="ztask-page"-->
@size-change="pagesSizeChange" <!-- @size-change="pagesSizeChange"-->
@current-change="pagesNowPageChange" <!-- @current-change="pagesNowPageChange"-->
:current-page="data.page.nowPageNum" <!-- :current-page="data.page.nowPageNum"-->
:page-sizes="[100, 200, 300, 400]" <!-- :page-sizes="[100, 200, 300, 400]"-->
:page-size="100" <!-- :page-size="100"-->
layout="prev, pager, next, sizes, jumper" <!-- layout="prev, pager, next, sizes, jumper"-->
:total="400" <!-- :total="400"-->
></el-pagination> <!-- ></el-pagination>-->
</div> </div>
</div> </div>
</template> </template>
......
<template> <template>
<!-- <d2-container type="card"> --> <!-- <d2-container type="card"> -->
<el-card class="box-card mains"> <el-card class="box-card mains">
<el-tabs class="ztabs" v-model="cache.nowMenu" @tab-click="handleClick"> <el-tabs class="ztabs" v-model="cache.nowMenu" @tab-click="ztabsClick">
<el-tab-pane label="柜组任务" name="taskBar"> <el-tab-pane label="柜组任务" name="taskBar">
<task-bar /> <task-bar />
</el-tab-pane> </el-tab-pane>
...@@ -32,6 +32,9 @@ export default { ...@@ -32,6 +32,9 @@ export default {
nowMenu: "taskBar" nowMenu: "taskBar"
} }
}; };
},
methods:{
ztabsClick(){},
} }
}; };
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment