65723796 by 任超

style:进度查询

1 parent 0d199123
...@@ -51,10 +51,6 @@ ...@@ -51,10 +51,6 @@
51 @p-current-change="handleCurrentChange" :column="tableData.columns" :data="tableData.data"> 51 @p-current-change="handleCurrentChange" :column="tableData.columns" :data="tableData.data">
52 </lb-table> 52 </lb-table>
53 </div> 53 </div>
54
55 <dialogBox ref="dialog" title="标题" v-model="isDialog">
56 **在这里面写弹框内容**
57 </dialogBox>
58 </div> 54 </div>
59 </template> 55 </template>
60 <script> 56 <script>
...@@ -69,7 +65,6 @@ export default { ...@@ -69,7 +65,6 @@ export default {
69 }, 65 },
70 data () { 66 data () {
71 return { 67 return {
72 isDialog: false,
73 queryForm: { 68 queryForm: {
74 ywly: "", 69 ywly: "",
75 qllx: "", 70 qllx: "",
...@@ -106,7 +101,6 @@ export default { ...@@ -106,7 +101,6 @@ export default {
106 console.log(name, sort); 101 console.log(name, sort);
107 }, 102 },
108 openDialog () { 103 openDialog () {
109 this.isDialog = true
110 } 104 }
111 } 105 }
112 } 106 }
......