Browse Source

修改资质图片信息

master
赵鹏 1 month ago
parent
commit
1eb82056a0
  1. 438
      pages/index - 副本.vue
  2. 2
      sub/common/waiting.vue
  3. 77
      sub/enterprise/edit.vue
  4. 2
      sub/task/enforce.vue

438
pages/index - 副本.vue

@ -1,438 +0,0 @@
<template>
<cs-page :selected="0" title="智慧生态" isTab>
<view class="view-container">
<van-dropdown-menu safe-area-tab-bar active-color="#17C653">
<van-dropdown-item
:value="queryParams.deptId"
:options="getDropdownOption('dept')"
@change="
v => {
querySelect(v, 'deptId')
}
"
/>
<van-dropdown-item
:value="queryParams.selectWeek"
:options="getDropdownOption('select_week')"
@change="
v => {
querySelect(v, 'selectWeek')
}
"
/>
</van-dropdown-menu>
<scroll-view
:scroll-y="true"
:style="{ maxHeight: `${viewHeigth}px` }"
class="view"
:refresher-enabled="true"
@refresherrefresh="refresherrefresh"
:refresher-triggered="refresherTriggered"
@refresherpulling="refresherpulling"
>
<view class="box row-1">
<view class="wd-flex" style="justify-content: space-around">
<view
class="wd-flex wd-flex-col wd-flex-center"
style="gap: 4px"
>
<u-count-to
:start-val="0"
:end-val="detail.taskCount"
bold
font-size="24"
color="#071437"
></u-count-to>
<view class="">任务数量</view>
</view>
<view
class="wd-flex wd-flex-col wd-flex-center"
style="gap: 4px"
>
<u-count-to
:start-val="0"
:end-val="detail.inspectionsCount"
bold
font-size="24"
color="#071437"
></u-count-to>
<view class="">执法记录</view>
</view>
<view
class="wd-flex wd-flex-col wd-flex-center"
style="gap: 4px"
>
<u-count-to
:start-val="0"
:end-val="detail.enterpriseCount"
bold
font-size="24"
color="#071437"
></u-count-to>
<view class="">企业数量</view>
</view>
</view>
<qiun-data-charts
type="ring"
:opts="opts"
:chartData="chartData"
:canvas2d="true"
style="height: 144px"
></qiun-data-charts>
<view class="wd-flex" style="gap: 12px; flex-wrap: wrap">
<view
class="wd-flex wd-flex-col wd-flex-center"
v-for="item in detail.legendData"
:key="item"
style="
border: 1px solid #f9f9f9;
width: calc(100% / 3 - 8px);
padding: 12px;
gap: 4px;
border-radius: 4px;
"
>
<view class="wd-flex wd-flex-col" style="gap: 4px">
<view
class="wd-flex"
style="align-items: center; gap: 4px"
>
<view
:style="{
width: '8px',
height: '4px',
borderRadius: '4px',
backgroundColor: item.color
}"
></view>
<view class="">{{ item.name }}</view>
</view>
<view class="wd-flex wd-flex-center">
<u-count-to
:start-val="0"
:end-val="Number(item.value)"
bold
font-size="16"
color="#071437"
></u-count-to>
%
</view>
</view>
</view>
</view>
</view>
<view class="box row-1">
<view
class="wd-flex"
style="margin-top: 12px; justify-content: center"
>
<view
style="
background-color: #f9f9f9;
display: inline-flex;
padding: 4px;
"
>
<view
class="tab"
v-for="(item, index) in tabs"
:key="index"
:style="{
'--index': tabs.findIndex(
i => i.type == queryParams.type
)
}"
@tap="changeTab(item.type)"
>
<view
class="name"
:style="{
color:
queryParams.type == item.type ? '#071437' : '#78829d'
}"
>
{{ item.name }}
</view>
</view>
</view>
</view>
<view class="">
<view
v-for="(item, index) in list"
:key="index"
class="wd-flex"
style="justify-content: space-between; padding: 12px"
>
<view class="wd-font-800">{{ item.name }}</view>
<view class="wd-font-800" style="color: #ff6f1e">
<view>
<u-count-to
:start-val="0"
:end-val="item.count"
bold
font-size="14"
color="#FF6F1E"
></u-count-to>
<text>{{ queryParams.type == 1 ? '天' : '次' }}</text>
</view>
</view>
</view>
</view>
</view>
</scroll-view>
</view>
</cs-page>
</template>
<script>
import { getDictBatchByType, getDeptTree } from '@/api/system/dict.js'
import { HomeApi } from '@/api/common/home.js'
export default {
data() {
return {
dictMap: {},
queryParams: {
selectWeek: '',
deptId: '',
type: 1
},
detail: {},
opts: {},
chartData: {},
viewHeigth: 0,
tabs: [
{
name: '资质逾期',
type: 1
},
{
name: '整改次数',
type: 2
}
],
refresherTriggered: false,
list: [],
color: ['#1B84FF', '#7239EA', '#F6B100', '#F8285A', '#17C653']
}
},
onLoad: async function () {
await uni.hideTabBar()
uni.hideTabBar({
animation: false
})
this.getDict()
this.init()
},
onReady() {
this.$nextTick(() => {
this.getPageHeight()
})
},
onShow() {
this.init()
},
methods: {
getPageHeight() {
const query = uni.createSelectorQuery().in(this)
query
.select('.view-container')
.boundingClientRect(data => {
this.viewHeigth = data.height - 35 - 25
})
.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') {
const data = [
...this.dictMap[key].map(d => {
return {
value: d.id,
text: d.name
}
})
]
if (!this.$roles.checkRole(['director'])) {
this.queryParams.deptId = this.$store.getters.deptId
return [...data]
}
return [...data, { value: '', text: keyMap[key] }]
}
return [
...this.dictMap[key].map(d => {
return {
value: d.value,
text: d.label
}
}),
{ value: '', text: keyMap[key] }
]
},
async init() {
if (!this.$roles.checkRole(['director'])) {
this.queryParams.deptId = this.$store.getters.deptId
}
const res = await HomeApi.getPieData(this.queryParams)
this.detail = res.data
let curIndex = 0
const data = this.detail.completionRate.map((item, index) => {
const res = { ...item, color: this.color[curIndex] }
curIndex > this.color.length ? 0 : curIndex++
return res
})
this.detail.legendData = data
this.setPieData(data, this.detail.taskCompletionRate)
this.getList()
},
async getList() {
const res = await HomeApi.getListData(this.queryParams)
this.list = res.data
},
setPieData(data, max) {
const pieData = data.map(i => {
return {
name: i.name,
value: Number(i.pieValue)
}
})
if (Number(max) < 100) {
pieData.push({
name: '',
value: 100 - Number(max),
color: '#fff'
})
}
this.opts = {
legend: {
show: false
},
color: this.color,
rotate: false,
rotateLock: false,
padding: [0, 0, 0, 0],
dataLabel: false,
enableScroll: false,
title: {
name: `${max}%`,
fontSize: 24,
color: '#071437',
fontWeight: 'bold'
},
subtitle: {
name: '完成率',
fontSize: 14,
color: '#78829D'
},
extra: {
ring: {
ringWidth: 15,
activeOpacity: 0.5,
offsetAngle: 90,
labelWidth: 15,
border: false,
borderColor: '#FFFFFF',
linearType: 'none'
}
}
}
this.chartData = {
series: [
{
data: pieData
}
]
}
},
sectionChange(index) {
this.queryParams.enterprise = index
},
querySelect(v, key) {
this.queryParams[key] = v.detail
this.init()
},
changeTab(type) {
this.queryParams.type = type
this.getList()
},
refresherpulling() {
const that = this
if (!this.refresherTriggered) {
this.refresherTriggered = true
setTimeout(() => {
that.refresherTriggered = false
}, 1000)
}
},
refresherrefresh() {
this.init()
}
}
}
</script>
<style lang="scss" scoped>
.view-container {
height: 100%;
}
.view {
padding: 0 12px;
padding-bottom: 12px;
display: flex;
gap: 12px;
flex-flow: column nowrap;
.box {
padding: 12px;
background-color: #fff;
border: 1px solid #f9f9f9;
border-radius: 12px;
margin-top: 12px;
&:last-child {
margin-bottom: 12px;
}
}
.row-1 {
display: flex;
flex-flow: column nowrap;
gap: 12px;
}
.tab {
position: relative;
padding: 4px 16px;
.name {
z-index: 2;
position: inherit;
font-weight: bold;
}
&:first-child::before {
content: '';
position: absolute;
inset: 0;
background-color: #fff;
border-radius: 2px;
transform: translateX(calc(var(--index) * 100%));
transition: 0.2s all;
z-index: 1;
}
}
}
::v-deep .van-dropdown-menu {
box-shadow: none;
height: 35px !important;
font-size: 13px;
border-bottom: 1px solid #f1f1f4;
}
</style>

2
sub/common/waiting.vue

@ -1,5 +1,5 @@
<template>
<view class="waiting">
<view class="waiting" >
<u--image
src="/static/favicon.png"
width="144px"

77
sub/enterprise/edit.vue

@ -188,6 +188,22 @@
<text class="placeholder" v-else>请选择到期日期</text>
<u-icon slot="right" name="arrow-right"></u-icon>
</u-form-item>
<!-- 企业照片 -->
<u-form-item
label="资质照片"
prop="photo"
borderBottom
labelPosition="top"
labelWidth="80"
>
<u-upload
:fileList="prove.form.photo"
@afterRead="addEnterpriseProvePhoto"
@delete="delEnterpriseProvePhoto"
multiple
:maxCount="3"
></u-upload>
</u-form-item>
<u-form-item
label="描述"
prop="qualificationDescription"
@ -369,20 +385,22 @@ export default {
expiryDate: '',
qualificationDescription: '',
handleDate: '',
enterpriseAuth: ''
enterpriseAuth: '',
photo: []
}
}
}
},
onLoad(res) {
if (res.invateId) {
console.log(res)
this.invateId = res.invateId
}
this.getDict()
},
onReady() {
this.step.active == 0 &&
this.$refs.infoFormRef.setRules(this.info.rules)
this.$refs.infoFormRef.setRules(this.info.rules)
this.initProveList()
},
methods: {
@ -401,8 +419,8 @@ export default {
* 选择图片并上传
* @param {Object} e
*/
async addEnterprisePhoto(e) {
this.info.form.photo = e.file.map(p => {
async addEnterpriseProvePhoto(e) {
this.prove.form.photo = e.file.map(p => {
console.log(p.url)
return {
...p,
@ -412,7 +430,7 @@ export default {
})
// 使promise.all()
await Promise.all(
this.info.form.photo.map(async (p, i) => {
this.prove.form.photo.map(async (p, i) => {
const res = await uploadFile({ name: `file`, filePath: p.url })
return {
...res.data,
@ -421,7 +439,7 @@ export default {
}
})
).then(res => {
this.info.form.photo = res
this.prove.form.photo = res
console.log('pthoto3', this.info.form.photo)
})
},
@ -429,9 +447,47 @@ export default {
* 删除图片
* @param {Object} e
*/
delEnterprisePhoto(e) {
this.info.form.photo.splice(e.index, 1)
delEnterpriseProvePhoto(e) {
this.prove.form.photo.splice(e.index, 1)
},
/**
* 选择图片并上传
* @param {Object} e
*/
async addEnterprisePhoto(e) {
this.info.form.photo = e.file.map(p => {
console.log(p.url)
return {
...p,
status: 'uploading',
message: '上传中'
}
})
// 使promise.all()
await Promise.all(
this.info.form.photo.map(async (p, i) => {
const res = await uploadFile({ name: `file`, filePath: p.url })
return {
...res.data,
status: 'success',
message: ''
}
})
).then(res => {
this.info.form.photo = res
console.log('pthoto3', this.info.form.photo)
})
},
/**
* 删除图片
* @param {Object} e
*/
delEnterprisePhoto(e) {
this.info.form.photo.splice(e.index, 1)
},
/**
* 弹出选择器
* @param {String} type 字典类型
@ -524,7 +580,7 @@ export default {
*/
async handlerInfoApi() {
const data = this.info.form
data.fileIds = this.info.form.photo.map(p => p.file_id)
data.fileIds = this.info.form.photo.map(p => p.id)
data.userId = this.invateId
let enterprise
if (this.info.form.id) {
@ -571,8 +627,9 @@ export default {
*/
async handlerProveApi() {
let prove
const data = this.prove.form
let data = this.prove.form
data.enterpriseId = this.info.form.id
data.files = this.prove.form.photo.map(p => p.id)
if (data.id) {
prove = await updateProve(data)
} else {

2
sub/task/enforce.vue

@ -162,7 +162,7 @@ export default {
...this.form,
status: this.form.state,
feedBack: this.form.advice,
fileIds: this.form.photo.map(i => i.file_id),
fileIds: this.form.photo.map(i => i.id),
correctionTime: new Date(this.form.date).getTime()
}
InspectionsApi.feeback(data).then(res => {

Loading…
Cancel
Save