|
@@ -83,12 +83,6 @@
|
|
></el-table-column>
|
|
></el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
</div>
|
|
</div>
|
|
-
|
|
|
|
- <my-pagination
|
|
|
|
- :total="total"
|
|
|
|
- :pagination="pagination"
|
|
|
|
- @current-change="currentPageNoChange"
|
|
|
|
- />
|
|
|
|
</div>
|
|
</div>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</template>
|
|
</template>
|
|
@@ -107,14 +101,12 @@ export default {
|
|
methods: {
|
|
methods: {
|
|
open (data) {
|
|
open (data) {
|
|
this.oData = data
|
|
this.oData = data
|
|
- this.pagination.pageNo = 1
|
|
|
|
this.visible = true
|
|
this.visible = true
|
|
this.list = data.details
|
|
this.list = data.details
|
|
},
|
|
},
|
|
close () {
|
|
close () {
|
|
this.oData = null
|
|
this.oData = null
|
|
this.visible = true
|
|
this.visible = true
|
|
- this.total = 0
|
|
|
|
this.list = Object.freeze([])
|
|
this.list = Object.freeze([])
|
|
}
|
|
}
|
|
}
|
|
}
|