| | |
| | | <view></view> |
| | | <scroll-view> |
| | | <!-- 客户列表 --> |
| | | <view class="c-list" @click="getDetails" v-for="(item,index) in csmtrList" :key="index"> |
| | | <view class="c-list" @click="getDetails(item.id)" v-for="(item,index) in csmtrList" :key="index"> |
| | | <view class="titles"><y-title :title="item.name"></y-title></view><view></view> |
| | | <!-- <view class="list-item1 title">{{item.name}}</view><view class="list-item"></view> --> |
| | | <view class="list-item1">客户代号</view><view class="list-item2">{{item.uuid}}</view> |
| | |
| | | } |
| | | }) |
| | | }, |
| | | getDetails() { |
| | | getDetails(id) { |
| | | uni.navigateTo({ |
| | | url: '/pages/business/cstmr/cstmrDetails' |
| | | url: '/pages/business/cstmr/cstmrDetails?id=' + id |
| | | }) |
| | | } |
| | | // --- |