Browse Source

首页列表接口

master
parent
commit
6a04c5f1ca
  1. 10
      api/common/home.js
  2. 35
      pages/index.vue
  3. 10
      pages/owner.vue

10
api/common/home.js

@ -10,5 +10,15 @@ export const HomeApi = {
method: 'GET', method: 'GET',
params params
}) })
},
/**
* 获取列表数据
*/
getListData: params => {
return request({
url: '/system/home/appCount2',
method: 'GET',
params
})
} }
} }

35
pages/index.vue

@ -132,16 +132,18 @@
class="tab" class="tab"
v-for="(item, index) in tabs" v-for="(item, index) in tabs"
:key="index" :key="index"
:style="{ '--index': queryParams.enterprise }" :style="{
@tap="queryParams.enterprise = item.type" '--index': tabs.findIndex(
i => i.type == queryParams.type
)
}"
@tap="changeTab(item.type)"
> >
<view <view
class="name" class="name"
:style="{ :style="{
color: color:
queryParams.enterprise == item.type queryParams.type == item.type ? '#071437' : '#78829d'
? '#071437'
: '#78829d'
}" }"
> >
{{ item.name }} {{ item.name }}
@ -151,22 +153,22 @@
</view> </view>
<view class=""> <view class="">
<view <view
v-for="item in 10" v-for="(item, index) in list"
:key="item" :key="index"
class="wd-flex" class="wd-flex"
style="justify-content: space-between; padding: 12px" style="justify-content: space-between; padding: 12px"
> >
<view class="wd-font-800">企业名称</view> <view class="wd-font-800">{{ item.name }}</view>
<view class="wd-font-800" style="color: #ff6f1e"> <view class="wd-font-800" style="color: #ff6f1e">
<view> <view>
<u-count-to <u-count-to
:start-val="0" :start-val="0"
:end-val="200" :end-val="item.count"
bold bold
font-size="14" font-size="14"
color="#FF6F1E" color="#FF6F1E"
></u-count-to> ></u-count-to>
<text></text> <text>{{ queryParams.type == 1 ? '' : '次' }}</text>
</view> </view>
</view> </view>
</view> </view>
@ -203,6 +205,7 @@ export default {
type: 2 type: 2
} }
], ],
list: [],
color: ['#1B84FF', '#7239EA', '#F6B100', '#F8285A', '#17C653'] color: ['#1B84FF', '#7239EA', '#F6B100', '#F8285A', '#17C653']
} }
}, },
@ -283,6 +286,14 @@ export default {
return res return res
}) })
this.detail.legendData = data this.detail.legendData = data
this.setPieData(data)
this.getList()
},
async getList() {
const res = await HomeApi.getListData(this.queryParams)
this.list = res.data
},
setPieData(data) {
const isMax = data.reduce( const isMax = data.reduce(
(pre, cur) => pre + Number(cur.pieValue), (pre, cur) => pre + Number(cur.pieValue),
0 0
@ -347,6 +358,10 @@ export default {
querySelect(v, key) { querySelect(v, key) {
this.queryParams[key] = v.detail this.queryParams[key] = v.detail
this.init() this.init()
},
changeTab(type) {
this.queryParams.type = type
this.getList()
} }
} }
} }

10
pages/owner.vue

@ -111,7 +111,10 @@
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> </view>
</view> </view>
<view class="section wd-flex wd-flex-row wd-justify-between"> <view
class="section wd-flex wd-flex-row wd-justify-between"
@click="callPhone"
>
<view class="wd-flex wd-flex-row" style="gap: 8px"> <view class="wd-flex wd-flex-row" style="gap: 8px">
<u--image <u--image
src="/static/images/owner/phone.png" src="/static/images/owner/phone.png"
@ -168,6 +171,11 @@ export default {
url: '/sub/owner/invite' url: '/sub/owner/invite'
// url: '/sub/enterprise/edit' // url: '/sub/enterprise/edit'
}) })
},
callPhone() {
uni.makePhoneCall({
phoneNumber: ''
})
} }
} }
} }

Loading…
Cancel
Save