123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <template>
- <view class="center">
- <view v-for="(item , index) in lists" :Key="index">
- <view>
- <view class="company">{{item.customerType}}</view>
- <view class="guess-item" @click="navToDetailPage(item)">
- <view class="infos">
- <view class="info">{{item.customerName}}
- <view class='cu-tag radius line-pink but'>{{item.authenticationStatus}}</view>
- </view>
- <view class="info">{{item.customerPhone}}</view>
- <label>
- <checkbox /><text>设置默认</text>
- </label>
-
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- mapState
- } from 'vuex';
- export default {
- name: "buy",
- data() {
- return {
- lists:[],
- PageCur: "buy",
- buyInfo: [],
- pages: 1, //页数
- limit: 10, //每次取条目数
- loadStatus: 'loading', //加载样式:more-加载前样式,loading-加载中样式,nomore-没有数据样式
- isLoadMore: false, //是否加载中
- showTran: true,
- scrollTop: 0,
- TabCur: 0,
- current: 1,
- identityAuthenticationInfo: {
- pageSize: 10,
- currentPage: 1,
- commonId: "",
-
-
- },
- };
- },
- onLoad() {
- this.getList()
- },
- computed: {
- ...mapState(['hasLogin', 'userInfo'])
- },
- methods: {
- getList() {
- this.identityAuthenticationInfo.commonId = this.userInfo.id
- console.log(12313)
- this.$api.doRequest('get', '/identityAuthenticationInfo/selectIdentityAuthenticationInfo', {
- pageSize: 10,
- currentPage: 1,
- commonId: this.userInfo.id
- }, 'application/json;charset=UTF-8').then(res => {
- console.log("成功连接123")
- this.lists = res.data.data.records
- })
- .catch(res => {
- uni.showToast({
- title: res.errmsg,
- icon: 'none',
- duration: 2000
- })
- });
- },
- // adddriver(index) {
- // if (index == 1) {
- // uni.navigateTo({
- // url: `/pageD/identity/companyIdentity`
- // })
- // } else {
- // uni.navigateTo({
- // url: `/pageD/identity/driverIdentity`
- // })
- // }
- // },
- navToDetailPage(item) {
- // if (index == 1) {
- uni.navigateTo({
- url: `/pageA/product/business_buy?id=${item.id}&customerName=${item.customerName}`
- })
- },
- // } else {
- // uni.navigateTo({
- // url: `/pageD/identity/driverIdentityLook`
- // })
-
- // }
- }
- }
- </script>
- <style>
- .center {
- padding: 10px 20px;
- }
- .title {
- font-size: 18px;
- font-weight: 900;
- margin-right: 20px;
- display: initial;
- }
- .company {
- font-size: 16px;
- margin-top: 10px;
- }
- .infos {
- /* margin: 10px 20px; */
- width: 100%;
- display: inline-table;
- }
- .info {
- line-height: 20px;
- }
- .but {
- right: 3px;
- float: right;
- }
- </style>
|