| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <view class="handlecase">
- <List class="caseList" v-for="(item,index) in caseList" :key="index"></List>
- </view>
- </template>
-
- <script>
- import List from './component/list.vue'
- import {respondentList} from '../../api/handlecase/index.js'
- export default {
- components: {
- List,
- },
- data() {
- return {
- caseList:[1,2,3,4]
- }
- },
- methods: {
- getList(parms){
- respondentList(parms).then(res=>{
- console.log(res,"LLLLLLLLLLLLLLL");
- })
- }
- },
- onLoad(){
- let obj = {
- identityNum:"333",
- pageNum:1,
- pageSize:10
- }
- this.getList(obj)
- }
- }
- </script>
-
- <style lang="scss">
- .handlecase{
- .caseList{
- // height: 360rpx;
- // background-color: #ffffff;
- // border-radius: 30rpx;
- // margin-top: 20rpx;
- }
- }
- </style>
|