Browse Source

首页

master
parent
commit
9ffc149925
  1. 21
      api/enterprise/index.js
  2. 30
      components/cs-echart/index.vue
  3. 9
      package.json
  4. 28
      pages.json
  5. 2
      pages/enterprise.vue
  6. 121
      pages/index.vue
  7. 80
      pages/owner.vue
  8. 42
      sub/enterprise/detail.vue
  9. 8
      sub/task/record.vue
  10. 45
      uni_modules/s-echarts/echarts.min.js

21
api/enterprise/index.js

@ -44,4 +44,25 @@ export function checkEnterprise(id) {
url: `/system/enterprise/audit?id=${id}`,
method: 'PUT',
})
}
/**
* 获取企业执法记录
*/
export function getTaskList(params) {
return request({
url: `/system/task-info/appPageByEnterpriseId`,
method: 'GET',
params
})
}
/**
* 获取企业执法日志
*/
export function getTaskLog(id) {
return request({
url: `/system/inspections-log/appList?inspectionsId=${id}`,
method: 'GET',
})
}

30
components/cs-echart/index.vue

@ -1,30 +0,0 @@
<template>
<view ref="echartRef" id="chart"></view>
</template>
<script>
import * as echarts from '@/uni_modules/s-echarts/echarts.min.js'
export default {
name: 'cs-echart',
data() {
return {
echart: null
}
},
mounted() {
this.init()
},
methods: {
init() {
this.echart = echarts.init(this.$refs.echartRef)
}
}
}
</script>
<style lang="scss" scoped>
.chart {
width: 100%;
height: 100%;
}
</style>

9
package.json

@ -1,9 +0,0 @@
{
"dependencies": {
"crypto-js": "^4.0.0"
},
"devDependencies": {
"sass": "^1.83.4",
"sass-loader": "^16.0.4"
}
}

28
pages.json

@ -3,9 +3,15 @@
"path": "pages/index",
"style": {
"navigationBarTitleText": "首页",
"navigationStyle": "custom"
"navigationStyle": "custom",
"usingComponents": {
"van-dropdown-menu": "/wxcomponents/vant/dropdown-menu/index",
"van-dropdown-item": "/wxcomponents/vant/dropdown-item/index",
"ec-canvas": "/wxcomponents/ec-canvas/ec-canvas"
}
}
}, {
},
{
"path": "pages/login",
"style": {
"navigationBarTitleText": "登录",
@ -83,7 +89,7 @@
}, {
"path": "enterprise/detail",
"style": {
"navigationBarTitleText": "企业详情",
"navigationBarTitleText": "档案详情",
"componentPlaceholder": {
"u-modal": "view"
}
@ -146,6 +152,22 @@
"style": {
"navigationBarTitleText": "结果反馈"
}
},
{
"path": "inspection/detail",
"style": {
"navigationBarTitleText": "",
"onReachBottonDistance": 50,
"enablePullDownRefresh": true
}
},
{
"path": "inspection/record",
"style": {
"navigationBarTitleText": "",
"onReachBottonDistance": 50,
"enablePullDownRefresh": true
}
}
]
}],

2
pages/enterprise.vue

@ -105,7 +105,7 @@
</view>
<view
class="audit"
v-if="!isAudit"
v-if="!enterprise.isAudit"
style="color: #f6b100; background-color: #fff8dd"
>
待审核

121
pages/index.vue

@ -1,16 +1,133 @@
<template>
<cs-page :selected="0" title="智慧生态" isTab></cs-page>
<cs-page :selected="0" title="智慧生态" isTab>
<view class="view-container page">
<van-dropdown-menu safe-area-tab-bar active-color="#17C653">
<van-dropdown-item
:value="queryParams.dept"
:options="getDropdownOption('dept')"
@change="
v => {
querySelect(v, 'dept')
}
"
/>
<van-dropdown-item
:value="queryParams.week"
:options="getDropdownOption('select_week')"
@change="
v => {
querySelect(v, 'week')
}
"
/>
</van-dropdown-menu>
<scroll-view
direction="vertical"
:style="{ maxHeight: `${viewHeigth}px` }"
>
<ec-canvas
id="pieChart"
canvas-id="pieChart"
:ec="ec"
class="charts"
/>
</scroll-view>
</view>
</cs-page>
</template>
<script>
import { getDictBatchByType, getDeptTree } from '@/api/system/dict.js'
export default {
data() {
return {
dictMap: {},
queryParams: {
week: '',
dept: ''
},
ec: {
options: {
series: [
{
type: 'pie',
data: [5, 6]
}
]
}
},
viewHeigth: 0
}
},
onLoad: async function () {
await uni.hideTabBar()
uni.hideTabBar({
animation: false
})
this.getDict()
},
onReady() {
this.getPageHeight()
},
methods: {
getPageHeight() {
const query = uni.createSelectorQuery().in(this)
query
.select('.page')
.boundingClientRect(data => {
this.viewHeigth = data.height - 55
})
.exec()
},
async getDict() {
const dict = await getDictBatchByType({
type: ['select_week'].join(',')
})
const dept = await getDeptTree()
this.dictMap = {
...dict.data,
dept: dept.data
}
},
getDropdownOption(key) {
if (!this.dictMap[key]) return []
const keyMap = {
select_week: '周期',
dept: '部门'
}
if (key == 'dept') {
return [
...this.dictMap[key].map(d => {
return {
value: d.id,
text: d.name
}
}),
{ value: '', text: keyMap[key] }
]
}
return [
...this.dictMap[key].map(d => {
return {
value: d.value,
text: d.label
}
}),
{ value: '', text: keyMap[key] }
]
}
}
}
</script>
<style></style>
<style lang="scss" scoped>
.charts {
width: 100%;
height: 600rpx;
display: block;
}
::v-deep .van-dropdown-menu {
height: 40px;
}
</style>

80
pages/owner.vue

@ -1,11 +1,23 @@
<template>
<cs-page :selected="4" isTab title="个人中心">
<scroll-view class="owner-container" scroll-y>
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center" @tap="edit">
<view
class="section wd-flex wd-flex-row wd-justify-between wd-items-center"
@tap="edit"
>
<view class="wd-flex wd-flex-col" style="gap: 4px">
<view class="wd-flex wd-flex-row" style="gap: 8px; align-items: center">
<view
class="wd-flex wd-flex-row"
style="gap: 8px; align-items: center"
>
<text class="wd-font-800 wd-text-20">{{ user.realName }}</text>
<u-tag :text="user.dept.name" shape="circle" bgColor="#000" borderColor="#000" size="mini"></u-tag>
<u-tag
:text="user.dept.name"
shape="circle"
bgColor="#000"
borderColor="#000"
size="mini"
></u-tag>
</view>
<view class="moblie">{{ user.mobile }}</view>
</view>
@ -16,37 +28,75 @@
</view>
<view class="section wd-flex wd-flex-row wd-justify-between">
<view class="wd-flex wd-flex-row" style="gap: 8px">
<u--image src="/static/images/owner/message.png" width="20px" height="20px" mode="aspectFit"></u--image>
<u--image
src="/static/images/owner/message.png"
width="20px"
height="20px"
mode="aspectFit"
></u--image>
<text class="wd-font-800">消息通知</text>
</view>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<u-count-to :startVal="30" :endVal="500" fontSize="14px" separator=","></u-count-to>
<u-count-to
:startVal="30"
:endVal="500"
fontSize="14px"
separator=","
></u-count-to>
<u-icon name="arrow-right"></u-icon>
</view>
</view>
<view class="section wd-flex wd-flex-row wd-justify-between">
<view class="wd-flex wd-flex-row" style="gap: 8px">
<u--image src="/static/images/owner/edit.png" width="20px" height="20px" mode="aspectFit"></u--image>
<u--image
src="/static/images/owner/edit.png"
width="20px"
height="20px"
mode="aspectFit"
></u--image>
<text class="wd-font-800">执法记录</text>
</view>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<u-count-to :startVal="30" :endVal="500" fontSize="14px" separator=","></u-count-to>
<u-count-to
:startVal="30"
:endVal="500"
fontSize="14px"
separator=","
></u-count-to>
<u-icon name="arrow-right"></u-icon>
</view>
</view>
<view class="section wd-flex wd-flex-row wd-justify-between">
<view class="wd-flex wd-flex-row" style="gap: 8px">
<u--image src="/static/images/owner/list.png" width="20px" height="20px" mode="aspectFit"></u--image>
<u--image
src="/static/images/owner/list.png"
width="20px"
height="20px"
mode="aspectFit"
></u--image>
<text class="wd-font-800">政策法规</text>
</view>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<u-count-to :startVal="30" :endVal="500" fontSize="14px" separator=","></u-count-to>
<u-count-to
:startVal="30"
:endVal="500"
fontSize="14px"
separator=","
></u-count-to>
<u-icon name="arrow-right"></u-icon>
</view>
</view>
<view class="section wd-flex wd-flex-row wd-justify-between" @click="invite">
<view
class="section wd-flex wd-flex-row wd-justify-between"
@click="invite"
>
<view class="wd-flex wd-flex-row" style="gap: 8px">
<u--image src="/static/images/owner/list.png" width="20px" height="20px" mode="aspectFit"></u--image>
<u--image
src="/static/images/owner/list.png"
width="20px"
height="20px"
mode="aspectFit"
></u--image>
<text class="wd-font-800">企业入驻</text>
</view>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
@ -55,7 +105,12 @@
</view>
<view class="section wd-flex wd-flex-row wd-justify-between">
<view class="wd-flex wd-flex-row" style="gap: 8px">
<u--image src="/static/images/owner/phone.png" width="20px" height="20px" mode="aspectFit"></u--image>
<u--image
src="/static/images/owner/phone.png"
width="20px"
height="20px"
mode="aspectFit"
></u--image>
<text class="wd-font-800">内部专线</text>
</view>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
@ -117,7 +172,6 @@ export default {
.section {
border-radius: $cs-border-radius;
background: #fff;
box-shadow: 0 0 4px 2px $cs-shadow-color;
margin-bottom: $cs-gap;
padding: 24px;
}

42
sub/enterprise/detail.vue

@ -46,7 +46,10 @@
class="image"
></image>
</view>
<text class="address">{{ detail.introduction }}</text>
<cs-text-more
color="#4B5675"
:value="detail.introduction"
></cs-text-more>
<view class="status">
<cs-dict-tag
:dict="dictMap.enterprises_status"
@ -113,7 +116,14 @@
>
确认审核
</view>
<view :class="['btn', 'grey']">执法记录</view>
<view
:class="['btn', total > 0 ? 'green' : 'grey']"
@tap="goInspections"
v-else
>
执法记录
<text v-if="total > 0">({{ total }})</text>
</view>
</view>
</cs-bottom-wrapper>
@ -138,7 +148,11 @@
</template>
<script>
import { getEnterPrise, checkEnterprise } from '@/api/enterprise/index.js'
import {
getEnterPrise,
checkEnterprise,
getTaskList
} from '@/api/enterprise/index.js'
import { getDictBatchByType } from '@/api/system/dict.js'
export default {
data() {
@ -149,7 +163,8 @@ export default {
region: ''
},
showModel: false,
dictMap: {}
dictMap: {},
total: 0
}
},
onLoad(res) {
@ -179,6 +194,7 @@ export default {
async init() {
const res = await getEnterPrise(this.detail.id)
this.detail = res.data
this.getTaskLength()
},
goBack() {
uni.switchTab({
@ -207,7 +223,25 @@ export default {
title: '操作成功'
})
this.showModel = false
this.init()
})
},
getTaskLength() {
const data = {
enterpriseId: this.detail.id,
pageNo: 1,
pageSize: 10
}
getTaskList(data).then(res => {
this.total = res.data.total
})
},
goInspections() {
if (this.total > 0) {
uni.navigateTo({
url: `/sub/inspection/detail?enterprisesId=${this.detail.id}&enterprisesName=${this.detail.enterprisesName}`
})
}
}
}
}

8
sub/task/record.vue

@ -145,7 +145,10 @@
{{ $util.formatDate(item.createTime, 'YYYY/M/D h:m') }}
</text>
</view>
<scroll-view scroll-x="true" enable-flex="true">
<scroll-view
scroll-x="true"
style="flex-flow: row nowrap; white-space: nowrap"
>
<view
class="row"
v-for="people in item.userList"
@ -273,7 +276,8 @@ export default {
this.queryParams.recordId
)
this.list = feedBack.data
this.inspectionsState = this.list[this.list.length - 1].status
this.inspectionsState =
this.list[this.list.length - 1]?.status || null
},
goEnterprise(enterprise) {
uni.navigateTo({

45
uni_modules/s-echarts/echarts.min.js vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save