Browse Source

样式调整

master
parent
commit
a6ac1c6c6d
  1. 4
      components/cs-dict-tag/index.vue
  2. 19
      components/cs-text-more/index.vue
  3. 4
      config.js
  4. 13
      pages.json
  5. 84
      pages/enterprise.vue
  6. 147
      pages/index.vue
  7. 49
      pages/owner.vue
  8. 76
      pages/task.vue
  9. BIN
      static/favicon.png
  10. BIN
      static/images/owner/bill.png
  11. BIN
      static/images/owner/message-grey.png
  12. BIN
      static/images/owner/policy.png
  13. BIN
      static/images/tabbers/home-select.png
  14. BIN
      static/images/tabbers/home.png
  15. BIN
      static/images/tabbers/logo.png
  16. BIN
      static/images/tabbers/position-select.png
  17. BIN
      static/images/tabbers/position.png
  18. BIN
      static/images/tabbers/task-select.png
  19. BIN
      static/images/tabbers/task.png
  20. BIN
      static/images/tabbers/user-select.png
  21. BIN
      static/images/tabbers/user.png
  22. 24
      static/scss/global.scss
  23. 4
      static/scss/index.scss
  24. 62
      sub/enterprise/detail.vue
  25. 59
      sub/inspection/detail.vue
  26. 3
      sub/inspection/record.vue
  27. 242
      sub/owner/notic.vue
  28. 0
      sub/owner/notice-detail.vue
  29. 18
      sub/owner/policy-detail.vue
  30. 62
      sub/owner/policy.vue
  31. 206
      sub/task/detail.vue
  32. 33
      sub/task/enforce.vue
  33. 2
      sub/task/locate.vue
  34. 166
      sub/task/record.vue
  35. 1073
      uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts.vue
  36. 4
      uni_modules/qiun-data-charts/js_sdk/u-charts/config-echarts.js
  37. 287
      uni_modules/qiun-data-charts/js_sdk/u-charts/config-ucharts.js
  38. 941
      uni_modules/qiun-data-charts/js_sdk/u-charts/u-charts.js
  39. 7542
      uni_modules/qiun-data-charts/js_sdk/u-charts/u-charts.min.js
  40. 43
      uni_modules/s-components/s-header/index.vue
  41. 17
      uni_modules/s-components/s-tabber/index.vue
  42. 142
      uni_modules/uview-ui/components/u-count-to/u-count-to.vue
  43. 419
      uni_modules/uview-ui/components/u-upload/u-upload.vue
  44. 1
      utils/request.js
  45. 33
      wxcomponents/vant/dropdown-item/index.wxss
  46. 1
      wxcomponents/vant/dropdown-menu/index.wxml
  47. 7
      wxcomponents/vant/dropdown-menu/index.wxs
  48. 8
      wxcomponents/vant/dropdown-menu/index.wxss

4
components/cs-dict-tag/index.vue

@ -97,9 +97,9 @@ export default {
color: #99a1b7; color: #99a1b7;
} }
.dict-tag { .dict-tag {
min-width: 200rpx; min-width: 212rpx;
text-align: center; text-align: center;
font-size: 24rpx; font-size: 24rpx;
padding: 16rpx 40rpx; padding: 4rpx 40rpx;
} }
</style> </style>

19
components/cs-text-more/index.vue

@ -1,11 +1,10 @@
<template> <template>
<view :style="{ color }"> <view :style="{ color: color }">
<view <view
style=" style="
font-size: 26rpx; font-size: 28rpx;
line-height: 160%; line-height: 160%;
position: relative; position: relative;
transform: 0.2s all;
color: inherit; color: inherit;
white-space: normal; white-space: normal;
" "
@ -16,17 +15,16 @@
<view <view
v-else v-else
style=" style="
font-size: 26rpx; font-size: 28rpx;
line-height: 160%; line-height: 160%;
position: relative; position: relative;
transform: 0.2s all;
color: inherit; color: inherit;
white-space: normal; white-space: normal;
" "
@tap="isShowAllText = !isShowAllText" @tap.native.stop="isShowAllText = !isShowAllText"
> >
{{ isShowAllText ? value : `${value.slice(1, splitLength)}...` }} {{ isShowAllText ? value : `${value.slice(0, splitLength)}...` }}
<text style="color: #17c653; padding-left: 4px"> <text style="color: #17c653; padding-left: 8rpx">
{{ isShowAllText ? '收起' : '展开' }} {{ isShowAllText ? '收起' : '展开' }}
</text> </text>
</view> </view>
@ -47,11 +45,12 @@ export default {
default: '文本简介'.repeat(20) default: '文本简介'.repeat(20)
}, },
color: { color: {
type: String type: String,
default: '#4b5675'
}, },
splitLength: { splitLength: {
type: Number, type: Number,
default: 100 default: 62
} }
} }
} }

4
config.js

@ -1,8 +1,8 @@
// 应用全局配置 // 应用全局配置
module.exports = { module.exports = {
// baseUrl: 'http://188.188.5.188:48080', // baseUrl: 'http://188.188.5.188:48080',
baseUrl: 'https://hb.jzce.com', // baseUrl: 'https://hb.jzce.com',
// baseUrl: 'http://188.188.3.232:48080', baseUrl: 'http://188.188.3.232:48080',
// baseUrl: 'http://localhost:48080', // baseUrl: 'http://localhost:48080',
baseApi: '/admin-api', baseApi: '/admin-api',
imgUrl: 'https://hb.jzce.com', imgUrl: 'https://hb.jzce.com',

13
pages.json

@ -3,13 +3,15 @@
"path": "pages/login", "path": "pages/login",
"style": { "style": {
"navigationBarTitleText": "登录", "navigationBarTitleText": "登录",
"navigationStyle": "custom" "navigationStyle": "custom",
"disableScroll": true
} }
}, { }, {
"path": "pages/index", "path": "pages/index",
"style": { "style": {
"navigationBarTitleText": "首页", "navigationBarTitleText": "首页",
"navigationStyle": "custom", "navigationStyle": "custom",
"disableScroll": true,
"usingComponents": { "usingComponents": {
"van-dropdown-menu": "/wxcomponents/vant/dropdown-menu/index", "van-dropdown-menu": "/wxcomponents/vant/dropdown-menu/index",
"van-dropdown-item": "/wxcomponents/vant/dropdown-item/index" "van-dropdown-item": "/wxcomponents/vant/dropdown-item/index"
@ -21,6 +23,7 @@
"style": { "style": {
"navigationBarTitleText": "企业", "navigationBarTitleText": "企业",
"navigationStyle": "custom", "navigationStyle": "custom",
"disableScroll": true,
"usingComponents": { "usingComponents": {
"van-dropdown-menu": "/wxcomponents/vant/dropdown-menu/index", "van-dropdown-menu": "/wxcomponents/vant/dropdown-menu/index",
"van-dropdown-item": "/wxcomponents/vant/dropdown-item/index", "van-dropdown-item": "/wxcomponents/vant/dropdown-item/index",
@ -40,6 +43,7 @@
"style": { "style": {
"navigationBarTitleText": "任务", "navigationBarTitleText": "任务",
"navigationStyle": "custom", "navigationStyle": "custom",
"disableScroll": true,
"usingComponents": { "usingComponents": {
"van-dropdown-menu": "/wxcomponents/vant/dropdown-menu/index", "van-dropdown-menu": "/wxcomponents/vant/dropdown-menu/index",
"van-dropdown-item": "/wxcomponents/vant/dropdown-item/index", "van-dropdown-item": "/wxcomponents/vant/dropdown-item/index",
@ -250,6 +254,13 @@
"style": { "style": {
"navigationBarTitleText": "" "navigationBarTitleText": ""
} }
},
{
"path": "owner/notic",
"style": {
"navigationBarTitleText": "消息通知",
"disableScroll": true
}
} }
] ]
}], }],

84
pages/enterprise.vue

@ -9,7 +9,8 @@
id="sreach" id="sreach"
@change="handleSearch" @change="handleSearch"
/> />
<van-dropdown-menu safe-area-tab-bar active-color="#17C653"> <view class="drop-box">
<van-dropdown-menu active-color="#17C653">
<van-dropdown-item <van-dropdown-item
:value="queryParams.region" :value="queryParams.region"
:options="getDropdownOption('enterprises_area')" :options="getDropdownOption('enterprises_area')"
@ -47,6 +48,8 @@
" "
/> />
</van-dropdown-menu> </van-dropdown-menu>
</view>
<scroll-view <scroll-view
scroll-y="true" scroll-y="true"
:refresher-enabled="true" :refresher-enabled="true"
@ -68,11 +71,24 @@
shape="square" shape="square"
size="64" size="64"
></u-avatar> ></u-avatar>
<view class="wd-flex wd-flex-col" style="gap: 4px"> <view class="wd-flex wd-flex-col">
<text class="wd-font-800 wd-text-15"> <text
class="wd-font-800 wd-text-15"
style="
padding-right: 3rem;
margin-bottom: 4rpx;
white-space: nowrap;
text-overflow: ellipsis;
width: 432rpx;
overflow: hidden;
"
>
{{ enterprise.enterprisesName }} {{ enterprise.enterprisesName }}
</text> </text>
<view class="wd-flex wd-pb-8px"> <view
class="wd-flex"
style="margin-bottom: 16rpx; margin-top: 4rpx"
>
<u-icon name="map" size="14" color="#17C653"></u-icon> <u-icon name="map" size="14" color="#17C653"></u-icon>
<text class="address wd-text-12" style="margin-left: 4px"> <text class="address wd-text-12" style="margin-left: 4px">
{{ enterprise.address }} {{ enterprise.address }}
@ -206,35 +222,37 @@ export default {
getDropdownOption(key) { getDropdownOption(key) {
if (!this.dictMap[key]) return [] if (!this.dictMap[key]) return []
const keyMap = { const keyMap = {
enterprises_area: '区域', enterprises_area: '区域',
hy: '行业', hy: '行业',
st: '生态', st: '生态',
wr: '污染' wr: '污染'
} }
if (['enterprises_area'].includes(key)) { if (['enterprises_area'].includes(key)) {
return [ return [
{
value: '',
text: keyMap[key]
},
...this.dictMap[key].map(i => { ...this.dictMap[key].map(i => {
return { return {
value: i.value, value: i.value,
text: i.label text: i.label
} }
}), })
]
}
const data = [
{ {
value: '', value: '',
text: keyMap[key] text: keyMap[key]
} },
] ...this.dictMap[key].map(d => {
}
const data = this.dictMap[key].map(d => {
return { return {
value: d.id, value: d.id,
text: d.tagName text: d.tagName
} }
}) })
data.push({ ]
value: '',
text: keyMap[key]
})
return data return data
}, },
querySelect(v, key) { querySelect(v, key) {
@ -328,26 +346,14 @@ export default {
font-size: 24rpx; font-size: 24rpx;
.address { .address {
color: $uni-text-color-grey; color: $uni-text-color-grey;
white-space: nowrap;
text-overflow: ellipsis;
width: 448rpx;
overflow: hidden;
} }
&:active { &:active {
background-color: $cs-color-touch; background-color: $cs-color-touch;
} }
.tagList {
margin-top: 16rpx;
display: flex;
gap: 8rpx;
color: $uni-text-color-grey;
flex-flow: row wrap;
.tag {
font-size: 24rpx;
display: flex;
padding: 4rpx 12rpx;
justify-content: center;
align-items: center;
border-radius: 4rpx;
background: #f9f9f9;
}
}
.audit { .audit {
position: absolute; position: absolute;
right: -38rpx; right: -38rpx;
@ -359,13 +365,17 @@ export default {
text-align: center; text-align: center;
} }
} }
::v-deep .van-dropdown-menu { .drop-box {
padding: 24rpx;
border-bottom: 2rpx solid #f1f1f4;
background-color: #fff;
::v-deep .van-dropdown-menu {
box-shadow: none; box-shadow: none;
height: 70rpx; height: fit-content !important;
font-size: 26rpx; font-size: 26rpx;
border-bottom: 1px solid #f1f1f4; padding: 12rpx 24rpx;
}
} }
::v-deep .u-list { ::v-deep .u-list {
padding: 24rpx; padding: 24rpx;
} }

147
pages/index.vue

@ -1,21 +1,22 @@
<template> <template>
<cs-page :selected="0" title="智慧生态" isTab> <cs-page :selected="0" isTab title="智慧环保">
<view class="view-container"> <view class="view-container">
<van-dropdown-menu safe-area-tab-bar active-color="#17C653"> <view class="drop-box">
<van-dropdown-menu active-color="#17C653">
<van-dropdown-item <van-dropdown-item
:value="queryParams.deptId" :value="queryParams.deptId"
:options="dropOption.dept" :options="dropOption.dept"
use-before-toggle title="按部门"
@before-toggle="dorpToggle"
@change=" @change="
v => { v => {
querySelect(v, 'deptId') querySelect(v, 'deptId')
} }
" "
/> ></van-dropdown-item>
<van-dropdown-item <van-dropdown-item
:value="queryParams.selectWeek" :value="queryParams.selectWeek"
:options="dropOption.select_week" :options="dropOption.select_week"
title="按周期"
@change=" @change="
v => { v => {
querySelect(v, 'selectWeek') querySelect(v, 'selectWeek')
@ -23,11 +24,12 @@
" "
/> />
</van-dropdown-menu> </van-dropdown-menu>
</view>
<scroll-view <scroll-view
:scroll-y="true" :scroll-y="true"
:style="{ maxHeight: `${viewHeigth}px` }" :style="{ maxHeight: `${viewHeigth}px` }"
class="view"
:refresher-enabled="true" :refresher-enabled="true"
class="view"
@refresherrefresh="refresherrefresh" @refresherrefresh="refresherrefresh"
:refresher-triggered="refresherTriggered" :refresher-triggered="refresherTriggered"
@refresherpulling="refresherpulling" @refresherpulling="refresherpulling"
@ -39,43 +41,43 @@
> >
<view <view
class="wd-flex wd-flex-col wd-flex-center" class="wd-flex wd-flex-col wd-flex-center"
style="gap: 4px" style="gap: 8rpx"
> >
<u-count-to <u-count-to
:start-val="0" :start-val="0"
:end-val="detail.taskCount" :end-val="detail.taskCount"
bold
font-size="24" font-size="24"
blod="500"
color="#071437" color="#071437"
class="number" class="number"
></u-count-to> ></u-count-to>
<view class="">任务数量</view> <view style="color: #4b5675">任务数量</view>
</view> </view>
<view <view
class="wd-flex wd-flex-col wd-flex-center" class="wd-flex wd-flex-col wd-flex-center"
style="gap: 4px" style="gap: 8rpx"
> >
<u-count-to <u-count-to
:start-val="0" :start-val="0"
:end-val="detail.inspectionsCount" :end-val="detail.inspectionsCount"
bold
font-size="24" font-size="24"
blod="500"
color="#071437" color="#071437"
></u-count-to> ></u-count-to>
<view class="">执法记录</view> <view style="color: #4b5675">执法记录</view>
</view> </view>
<view <view
class="wd-flex wd-flex-col wd-flex-center" class="wd-flex wd-flex-col wd-flex-center"
style="gap: 4px" style="gap: 8rpx"
> >
<u-count-to <u-count-to
:start-val="0" :start-val="0"
:end-val="detail.enterpriseCount" :end-val="detail.enterpriseCount"
bold
font-size="24" font-size="24"
blod="500"
color="#071437" color="#071437"
></u-count-to> ></u-count-to>
<view class="">企业数量</view> <view style="color: #4b5675">企业数量</view>
</view> </view>
</view> </view>
<qiun-data-charts <qiun-data-charts
@ -117,7 +119,6 @@
<u-count-to <u-count-to
:start-val="0" :start-val="0"
:end-val="Number(item.value)" :end-val="Number(item.value)"
bold
font-size="16" font-size="16"
color="#071437" color="#071437"
></u-count-to> ></u-count-to>
@ -130,13 +131,13 @@
<view class="box row-1"> <view class="box row-1">
<view <view
class="wd-flex" class="wd-flex"
style="margin-top: 12px; justify-content: center" style="margin-top: 24rpx; justify-content: center"
> >
<view <view
style=" style="
background-color: #f9f9f9; background-color: #f9f9f9;
display: inline-flex; display: inline-flex;
padding: 4px; padding: 8rpx;
" "
> >
<view <view
@ -158,7 +159,7 @@
? '#071437' ? '#071437'
: '#78829d', : '#78829d',
fontWeight: fontWeight:
queryParams.type == item.type ? '800' : 'normal' queryParams.type == item.type ? 'bold' : '400'
}" }"
> >
{{ item.name }} {{ item.name }}
@ -166,15 +167,15 @@
</view> </view>
</view> </view>
</view> </view>
<view style="min-height: 220px"> <view style="min-height: 440rpx">
<view <view
v-for="(item, index) in list" v-for="(item, index) in list"
:key="index" :key="index"
class="wd-flex" class="wd-flex"
style="justify-content: space-between; padding: 12px" style="justify-content: space-between; padding: 24rpx"
> >
<view class="wd-font-800">{{ item.name }}</view> <view class="wd-font-500">{{ item.name }}</view>
<view class="wd-font-800" style="color: #17c653"> <view class="wd-font-500" style="color: #17c653">
<view> <view>
<u-count-to <u-count-to
:start-val="0" :start-val="0"
@ -202,7 +203,7 @@ export default {
return { return {
dictMap: {}, dictMap: {},
queryParams: { queryParams: {
selectWeek: '', selectWeek: '3',
deptId: '', deptId: '',
type: 1 type: 1
}, },
@ -212,7 +213,7 @@ export default {
viewHeigth: 0, viewHeigth: 0,
tabs: [ tabs: [
{ {
name: '资质期', name: '资质期',
type: 1 type: 1
}, },
{ {
@ -223,7 +224,7 @@ export default {
refresherTriggered: false, refresherTriggered: false,
list: [], list: [],
dropOption: {}, dropOption: {},
color: ['#1B84FF', '#7239EA', '#F6B100', '#F8285A', '#17C653'] color: []
} }
}, },
onLoad: async function () { onLoad: async function () {
@ -231,11 +232,11 @@ export default {
uni.hideTabBar({ uni.hideTabBar({
animation: false animation: false
}) })
this.getDict() await this.getDict()
if (!this.$roles.checkRole(['director'])) { if (!this.$roles.checkRole(['director'])) {
this.queryParams.deptId = this.$store.getters.deptId this.queryParams.deptId = this.$store.getters.deptId
} }
this.init() await this.init()
}, },
onReady() { onReady() {
this.$nextTick(() => { this.$nextTick(() => {
@ -250,16 +251,34 @@ export default {
const query = uni.createSelectorQuery().in(this) const query = uni.createSelectorQuery().in(this)
query query
.select('.view-container') .select('.view-container')
.boundingClientRect(data => { .boundingClientRect()
this.viewHeigth = data.height - 35 - 25 .select('.drop-box')
.boundingClientRect()
.select('.cs-tabber-container')
.boundingClientRect()
.exec(res => {
this.viewHeigth = res[0].height - res[1].height
}) })
.exec()
}, },
async getDict() { async getDict() {
const dict = await getDictBatchByType({ const dict = await getDictBatchByType({
type: ['select_week'].join(',') type: ['select_week'].join(',')
}) })
const dept = await getDeptTree() const dept = await getDeptTree()
if (!this.$roles.checkRole(['director'])) {
this.dropOption.dept = [
...dept.data
.filter(i => {
return i.id == this.$store.getters.deptId
})
.map(i => {
return {
value: i.id,
text: i.name
}
})
]
} else {
this.dropOption.dept = [ this.dropOption.dept = [
...dept.data.map(i => { ...dept.data.map(i => {
return { return {
@ -272,17 +291,15 @@ export default {
text: '全部' text: '全部'
} }
] ]
}
this.dropOption.select_week = [ this.dropOption.select_week = [
...dict.data.select_week.map(i => { ...dict.data.select_week.map(i => {
return { return {
value: i.value, value: i.value,
text: i.label text: i.label
} }
}), })
{
value: '',
text: '全部'
}
] ]
}, },
async init() { async init() {
@ -305,6 +322,7 @@ export default {
colorMap.push(color) colorMap.push(color)
return res return res
}) })
colorMap.push('#F9F9F9')
this.color = colorMap this.color = colorMap
this.detail.legendData = data this.detail.legendData = data
this.setPieData(data, this.detail.taskCompletionRate) this.setPieData(data, this.detail.taskCompletionRate)
@ -322,10 +340,9 @@ export default {
} }
}) })
if (Number(max) < 100) { if (Number(max) < 100) {
pieData.push({ pieData.splice(pieData.length, 0, {
name: '', name: '',
value: 100 - Number(max), value: 100 - Number(max)
color: '#F9F9F9'
}) })
} }
this.opts = { this.opts = {
@ -341,9 +358,7 @@ export default {
title: { title: {
name: `${max}%`, name: `${max}%`,
fontSize: 24, fontSize: 24,
color: '#071437', color: '#071437'
fontWeight: 'bold',
fontFamily: 'Tahoma'
}, },
subtitle: { subtitle: {
name: '完成率', name: '完成率',
@ -366,7 +381,7 @@ export default {
this.chartData = { this.chartData = {
series: [ series: [
{ {
data: pieData data: [...pieData]
} }
] ]
} }
@ -394,13 +409,7 @@ export default {
refresherrefresh() { refresherrefresh() {
this.init() this.init()
}, },
dorpToggle(e) {
if (!this.$roles.checkRole(['director'])) {
e.detail.callback(false)
} else {
e.detail.callback(true)
}
},
numFilter(value) { numFilter(value) {
// //
let tempVal = parseFloat(value).toFixed(3) let tempVal = parseFloat(value).toFixed(3)
@ -420,33 +429,24 @@ export default {
.view-container { .view-container {
height: 100%; height: 100%;
} }
.number {
font-family: 'Tahoma';
}
::v-deep .u-count-num {
font-family: 'Tahoma';
}
.view { .view {
padding: 0 24rpx; padding: 0 24rpx 48rpx;
padding-bottom: 24rpx;
display: flex;
gap: 24rpx;
flex-flow: column nowrap;
.box { .box {
padding: 24rpx; padding: 24rpx;
background-color: #fff; background-color: #fff;
border: 2rpx solid #f9f9f9; border: 2rpx solid #f9f9f9;
border-radius: 24rpx; border-radius: 24rpx;
margin-top: 24rpx;
&:last-child {
margin-bottom: 24rpx;
}
} }
.row-1 { .row-1 {
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
gap: 24rpx; gap: 24rpx;
margin-top: 24rpx;
&:last-child {
margin-bottom: 84rpx;
}
} }
.people-name { .people-name {
max-width: 4rem; max-width: 4rem;
@ -454,10 +454,11 @@ export default {
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
color: #4b5675;
} }
.tab { .tab {
position: relative; position: relative;
padding: 16rpx 32rpx; padding: 8rpx 32rpx;
.name { .name {
z-index: 2; z-index: 2;
position: inherit; position: inherit;
@ -474,10 +475,18 @@ export default {
} }
} }
} }
::v-deep .van-dropdown-menu { .drop-box {
padding: 24rpx;
border-bottom: 2rpx solid #f1f1f4;
background-color: #fff;
::v-deep .van-dropdown-menu {
box-shadow: none; box-shadow: none;
height: 70rpx !important; height: fit-content !important;
font-size: 26rpx; font-size: 26rpx;
border-bottom: 2rpx solid #f1f1f4; padding: 8rpx 24rpx;
}
::v-deep .van-dropdown-item {
margin-bottom: 64rpx;
}
} }
</style> </style>

49
pages/owner.vue

@ -26,13 +26,16 @@
<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
<view class="wd-flex wd-flex-row" style="gap: 8px"> class="section wd-flex wd-flex-row wd-justify-between"
@click="openSubMessage"
>
<view class="wd-flex wd-flex-row" style="gap: 16rpx">
<u--image <u--image
src="/static/images/owner/message.png" src="/static/images/owner/message.png"
width="20px" width="40rpx"
height="20px" height="40rpx"
mode="aspectFit" mode="aspectFill"
></u--image> ></u--image>
<text class="wd-font-800">消息通知</text> <text class="wd-font-800">消息通知</text>
</view> </view>
@ -48,7 +51,6 @@
<view <view
class="wd-flex wd-flex-row wd-items-center" class="wd-flex wd-flex-row wd-items-center"
style="gap: 16rpx" style="gap: 16rpx"
@click="openSubMessage"
> >
<text></text> <text></text>
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
@ -81,9 +83,9 @@
<view class="wd-flex wd-flex-row" style="gap: 16rpx"> <view class="wd-flex wd-flex-row" style="gap: 16rpx">
<u--image <u--image
src="/static/images/owner/list.png" src="/static/images/owner/list.png"
width="20px" width="40rpx"
height="20px" height="40rpx"
mode="aspectFit" mode="aspectFill"
></u--image> ></u--image>
<text class="wd-font-800">政策法规</text> <text class="wd-font-800">政策法规</text>
</view> </view>
@ -108,9 +110,9 @@
<view class="wd-flex wd-flex-row" style="gap: 16rpx"> <view class="wd-flex wd-flex-row" style="gap: 16rpx">
<u--image <u--image
src="/static/images/owner/edit.png" src="/static/images/owner/edit.png"
width="20px" width="40rpx"
height="20px" height="40rpx"
mode="aspectFit" mode="aspectFill"
></u--image> ></u--image>
<text class="wd-font-800">企业入驻</text> <text class="wd-font-800">企业入驻</text>
</view> </view>
@ -128,9 +130,9 @@
<view class="wd-flex wd-flex-row" style="gap: 16rpx"> <view class="wd-flex wd-flex-row" style="gap: 16rpx">
<u--image <u--image
src="/static/images/owner/phone.png" src="/static/images/owner/phone.png"
width="20px" width="40rpx"
height="20px" height="40rpx"
mode="aspectFit" mode="aspectFill"
></u--image> ></u--image>
<text class="wd-font-800">内部专线</text> <text class="wd-font-800">内部专线</text>
</view> </view>
@ -148,10 +150,10 @@
> >
<view class="wd-flex wd-flex-row" style="gap: 16rpx"> <view class="wd-flex wd-flex-row" style="gap: 16rpx">
<u--image <u--image
src="/static/images/owner/edit.png" src="/static/images/owner/bill.png"
width="20px" width="40rpx"
height="20px" height="40rpx"
mode="aspectFit" mode="aspectFill"
></u--image> ></u--image>
<text class="wd-font-800">工作汇报</text> <text class="wd-font-800">工作汇报</text>
</view> </view>
@ -215,8 +217,10 @@ export default {
uni.requestSubscribeMessage({ uni.requestSubscribeMessage({
//ID //ID
tmplIds: ['E8RK91cPLMios6ZHoKx6FJOV4H2kodx6yPWYp7jpLJY'], tmplIds: ['E8RK91cPLMios6ZHoKx6FJOV4H2kodx6yPWYp7jpLJY'],
success(res) { complete(res) {
console.log('requestSubscribeMessage', res) uni.navigateTo({
url: '/sub/owner/notic'
})
} }
}) })
}, },
@ -230,8 +234,7 @@ export default {
this.share = { this.share = {
title: '邀请企业入驻', // title: '邀请企业入驻', //
path: `/pages/login?inviteId=${this.$store.getters.userId}`, path: `/pages/login?inviteId=${this.$store.getters.userId}`,
imageUrl: imageUrl: 'https://hb.jzce.com/fx_qyrz.png'
'https://hb.jzce.com/fx_qyrz.png'
} }
}, },
callPhone() { callPhone() {

76
pages/task.vue

@ -1,7 +1,8 @@
<template> <template>
<cs-page :selected="1" title="执法任务" isTab> <cs-page :selected="1" title="执法任务" isTab>
<view class="page-container page"> <view class="page-container page">
<van-dropdown-menu safe-area-tab-bar active-color="#17C653"> <view class="drop-box">
<van-dropdown-menu active-color="#17C653">
<van-dropdown-item <van-dropdown-item
:value="queryParams.status" :value="queryParams.status"
:options="getDropdownOption('task_state')" :options="getDropdownOption('task_state')"
@ -11,15 +12,6 @@
} }
" "
/> />
<van-dropdown-item
:value="queryParams.priority"
:options="getDropdownOption('task_priority')"
@change="
v => {
querySelect(v, 'priority')
}
"
/>
<van-dropdown-item <van-dropdown-item
:value="queryParams.zf_lx" :value="queryParams.zf_lx"
:options="getDropdownOption('zf_lx')" :options="getDropdownOption('zf_lx')"
@ -39,6 +31,8 @@
" "
/> />
</van-dropdown-menu> </van-dropdown-menu>
</view>
<scroll-view <scroll-view
scroll-y="true" scroll-y="true"
:refresher-enabled="true" :refresher-enabled="true"
@ -72,19 +66,27 @@
fontSize="16" fontSize="16"
bold bold
duration="1000" duration="1000"
color="#071437"
></u-count-to> ></u-count-to>
% <text style="color: #071437; font-size: 24rpx">%</text>
</template> </template>
</van-circle> </van-circle>
</view> </view>
<view class="wd-flex wd-flex-col" style="gap: 8rpx"> <view class="wd-flex wd-flex-col">
<text <text
class="wd-font-800 wd-text-15 wd-pb-2px" class="wd-font-800 wd-text-15"
style="padding-right: 3rem" style="
padding-right: 3rem;
margin-bottom: 4rpx;
white-space: nowrap;
text-overflow: ellipsis;
width: 432rpx;
overflow: hidden;
"
> >
{{ task.title }} {{ task.title }}
</text> </text>
<view class="wd-flex wd-pb-8px"> <view class="wd-flex" style="margin-top: 4rpx">
<u-icon <u-icon
name="calendar" name="calendar"
size="18" size="18"
@ -92,7 +94,7 @@
></u-icon> ></u-icon>
<text <text
class="address wd-text-12" class="address wd-text-12"
style="margin-left: 8rpx" style="margin-left: 4rpx"
:style="{ :style="{
color: task.status == '2' ? '#17C653' : '#78829D' color: task.status == '2' ? '#17C653' : '#78829D'
}" }"
@ -102,7 +104,7 @@
}}结束 }}结束
</text> </text>
</view> </view>
<view class="tagList"> <view class="tagList" style="margin-top: 16rpx">
<view class="tag" v-if="task.deptName"> <view class="tag" v-if="task.deptName">
{{ task.deptName }} {{ task.deptName }}
</view> </view>
@ -223,28 +225,28 @@ export default {
const keyMap = { const keyMap = {
task_priority: '按等级', task_priority: '按等级',
zf_lx: '按类型', zf_lx: '按类型',
task_state: '按状态', task_state: '按发布',
select_week: '按周期' select_week: '按周期'
} }
if (['zf_lx'].includes(key)) { if (['zf_lx'].includes(key)) {
return [ return [
{ value: '', text: keyMap[key] },
...this.dictMap[key].map(d => { ...this.dictMap[key].map(d => {
return { return {
value: d.id, value: d.id,
text: d.tagName text: d.tagName
} }
}), })
{ value: '', text: keyMap[key] }
] ]
} else { } else {
return [ return [
{ value: '', text: keyMap[key] },
...this.dictMap[key].map(d => { ...this.dictMap[key].map(d => {
return { return {
value: d.value, value: d.value,
text: d.label text: d.label
} }
}), })
{ value: '', text: keyMap[key] }
] ]
} }
}, },
@ -322,44 +324,34 @@ export default {
position: relative; position: relative;
overflow: hidden; overflow: hidden;
font-size: 24rpx; font-size: 24rpx;
border: 1px solid var(--LightMode-Grey-Grey-100, #f9f9f9);
&:active { &:active {
background-color: $cs-color-touch; background-color: $cs-color-touch;
} }
.address { .address {
color: $uni-text-color-grey; color: $uni-text-color-grey;
} }
.tagList {
margin-top: 16rpx;
display: flex;
gap: 8rpx;
color: $uni-text-color-grey;
display: flex;
.tag {
font-size: 24rpx;
display: flex;
padding: 4rpx 12rpx;
justify-content: center;
align-items: center;
border-radius: 4rpx;
background: #f9f9f9;
}
}
.audit { .audit {
position: absolute; position: absolute;
right: 0; right: 0;
top: 0; top: 0;
transform-origin: 50% 50%; transform-origin: 50% 50%;
transform: translateX(28px) translateY(9px) rotateZ(45deg); transform: translateX(33px) translateY(9px) rotateZ(45deg);
} }
.rate { .rate {
position: relative; position: relative;
} }
} }
::v-deep .van-dropdown-menu { .drop-box {
padding: 24rpx;
border-bottom: 2rpx solid #f1f1f4;
background-color: #fff;
::v-deep .van-dropdown-menu {
box-shadow: none; box-shadow: none;
height: 70rpx !important; height: fit-content !important;
font-size: 26rpx; font-size: 26rpx;
border-bottom: 1px solid #f1f1f4; padding: 12rpx 24rpx;
}
} }
::v-deep .u-list { ::v-deep .u-list {

BIN
static/favicon.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

BIN
static/images/owner/bill.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 762 B

BIN
static/images/owner/message-grey.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

BIN
static/images/owner/policy.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 990 B

BIN
static/images/tabbers/home-select.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 496 B

After

Width:  |  Height:  |  Size: 792 B

BIN
static/images/tabbers/home.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 701 B

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
static/images/tabbers/logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
static/images/tabbers/position-select.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 600 B

After

Width:  |  Height:  |  Size: 1.0 KiB

BIN
static/images/tabbers/position.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 873 B

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
static/images/tabbers/task-select.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 553 B

After

Width:  |  Height:  |  Size: 1.0 KiB

BIN
static/images/tabbers/task.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 774 B

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
static/images/tabbers/user-select.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 464 B

After

Width:  |  Height:  |  Size: 777 B

BIN
static/images/tabbers/user.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 671 B

After

Width:  |  Height:  |  Size: 1.2 KiB

24
static/scss/global.scss

@ -9,6 +9,10 @@ page {
color: #071437; color: #071437;
} }
view {
box-sizing: border-box;
}
button { button {
padding-left: 0; padding-left: 0;
padding-right: 0; padding-right: 0;
@ -23,3 +27,23 @@ button {
::v-deep .uni-calendar__box { ::v-deep .uni-calendar__box {
padding-bottom: 32px; padding-bottom: 32px;
} }
.tagList {
display: flex;
align-items: center;
gap: 16rpx;
.tag {
display: flex;
padding: 4rpx 12rpx;
justify-content: center;
align-items: center;
border-radius: 4rpx;
background: var(--LightMode-Grey-Grey-100, #f9f9f9);
color: var(--LightMode-Grey-Grey-600, #78829d);
text-align: center;
font-size: 24rpx;
font-style: normal;
font-weight: 400;
line-height: normal;
}
}

4
static/scss/index.scss

@ -10,3 +10,7 @@
border-radius: 50%; border-radius: 50%;
box-shadow: 0 0 4px 2px $cs-shadow-color; box-shadow: 0 0 4px 2px $cs-shadow-color;
} }
* {
box-sizing: border-box;
}

62
sub/enterprise/detail.vue

@ -7,8 +7,19 @@
</text> </text>
</view> </view>
<view class="address" @click="goView(detail)"> <view class="address" @click="goView(detail)">
<u-icon name="map" size="14" color="#17C653"></u-icon> <u-icon name="map" size="28rpx" color="#17C653"></u-icon>
<text style="text-decoration: underline"> <text
style="
text-decoration: underline;
color: #071437;
font-size: 26rpx;
padding-right: 3rem;
white-space: nowrap;
text-overflow: ellipsis;
width: 528rpx;
overflow: hidden;
"
>
{{ detail.address }} {{ detail.address }}
</text> </text>
</view> </view>
@ -25,28 +36,31 @@
</view> </view>
</view> </view>
<view class="wd-flex" style="align-items: center"> <view class="wd-flex" style="align-items: center">
<text class="address" style="margin-right: 12rpx">环保负责人</text> <text class="address" style="margin-right: 24rpx">环保负责人</text>
<text style="margin-right: 12rpx"> <text style="margin-right: 24rpx; color: #071437">
{{ detail.contactName }} {{ detail.contactName }}
</text> </text>
<text class="address" style="margin-right: 12rpx">联系方式</text> <text class="address" style="margin-right: 24rpx">联系方式</text>
<text style="text-decoration: underline" @click="callPhone(detail.environmentalContactPhone)"> <text
style="text-decoration: underline; color: #071437"
@click="callPhone(detail.environmentalContactPhone)"
>
{{ detail.environmentalContactPhone }} {{ detail.environmentalContactPhone }}
</text> </text>
</view> </view>
<view class="images-box"> <view
class="images-box"
@click="$util.perviewImage(detail.files.map(i => i.url))"
>
<image <image
v-for="(src, index) in detail.files" v-for="(src, index) in detail.files"
:key="index" :key="index"
:src="src.url" :src="src.url"
mode="aspectFit" mode="aspectFill"
class="image" class="image"
></image> ></image>
</view> </view>
<cs-text-more <cs-text-more :value="detail.introduction"></cs-text-more>
color="#4B5675"
:value="detail.introduction"
></cs-text-more>
<!-- <view class="status"> <!-- <view class="status">
<cs-dict-tag <cs-dict-tag
:dict="dictMap.enterprises_status" :dict="dictMap.enterprises_status"
@ -62,17 +76,18 @@
> >
<view class="wd-flex" style="gap: 18rpx; position: relative"> <view class="wd-flex" style="gap: 18rpx; position: relative">
<image <image
src="@/static/images/enterprise/zz.png" :src="prove.files[0].url"
style="width: 90px; height: 70px" style="width: 180rpx; height: 140rpx"
mode="aspectFit" mode="aspectFill"
@click="$util.perviewImage([prove.files[0].url])"
></image> ></image>
<view <view
style="flex: 1; justify-content: space-between" style="flex: 1; justify-content: space-between"
class="wd-flex wd-flex-col" class="wd-flex wd-flex-col"
> >
<view class="wd-flex" style="gap: 18rpx; align-items: center"> <view class="wd-flex" style="gap: 18rpx; align-items: center">
<text class="label">资质名称</text> <text class="label" style="color: #78829d">资质名称</text>
<view> <view style="color: #071437">
{{ {{
$dict.echoDicValue( $dict.echoDicValue(
dictMap.enterprise_qua, dictMap.enterprise_qua,
@ -83,13 +98,13 @@
</view> </view>
<view class="wd-flex" style="gap: 18rpx; align-items: center"> <view class="wd-flex" style="gap: 18rpx; align-items: center">
<text class="label">资质编号</text> <text class="label">资质编号</text>
<view> <view style="color: #071437">
{{ prove.enterpriseAuth }} {{ prove.enterpriseAuth }}
</view> </view>
</view> </view>
<view class="wd-flex" style="gap: 18rpx; align-items: center"> <view class="wd-flex" style="gap: 18rpx; align-items: center">
<text class="label">资质时限</text> <text class="label">资质时限</text>
<view> <view style="color: #071437">
{{ $util.formatDate(prove.expiryDate, 'YYYY年M月D日') }} {{ $util.formatDate(prove.expiryDate, 'YYYY年M月D日') }}
</view> </view>
</view> </view>
@ -316,13 +331,10 @@ export default {
overflow: hidden; overflow: hidden;
.status { .status {
position: absolute; position: absolute;
right: -38rpx; right: 0;
top: 12rpx; top: 0;
transform: rotateZ(45deg) translateX(40rpx) translateY(-40rpx); transform: rotateZ(45deg) translateX(60rpx) translateY(-41rpx);
transform-origin: 50% 50%; transform-origin: 50% 50%;
padding: 8rpx 40rpx;
font-size: 24rpx;
text-align: center;
} }
} }
.images-box { .images-box {

59
sub/inspection/detail.vue

@ -1,13 +1,21 @@
<template> <template>
<scroll-view scroll-y flex-enable class="view-container" st> <scroll-view scroll-y flex-enable class="view-container">
<view <view
class="box" class="box"
@tap="goDetail(task)" @tap="goDetail(task)"
v-for="task in list" v-for="task in list"
:key="task.id" :key="task.id"
> >
<view class="wd-font-800">{{ task.title }}</view> <view class="wd-font-bold" style="color: #071437">
{{ task.title }}
</view>
<view class="tagList"> <view class="tagList">
<view class="tag" v-if="task.deptName">
{{ task.deptName }}
</view>
<view class="tag" v-if="task.priority">
{{ $dict.echoDicValue(dictMap.task_priority, task.priority) }}
</view>
<view <view
v-for="(tag, index) in task.tagList" v-for="(tag, index) in task.tagList"
:key="index" :key="index"
@ -20,9 +28,9 @@
class="wd-flex wd-text-13" class="wd-flex wd-text-13"
style="justify-content: space-between" style="justify-content: space-between"
> >
<view class="wd-flex" style="align-items: center; gap: 4px"> <view class="wd-flex" style="align-items: center; gap: 8rpx">
<u-icon name="calendar" color="#17C653" /> <u-icon name="calendar" color="#17C653" />
<text class="wd-text-13 wd-ml-4px"> <text class="wd-text-13 wd-ml-4px" style="color: #252f4a">
{{ {{
`${$util.formatDate( `${$util.formatDate(
task.startDate, task.startDate,
@ -36,11 +44,16 @@
<view class="status"> <view class="status">
<cs-dict-tag <cs-dict-tag
:dict="dictMap.task_state" :dict="dictMap.task_state"
:value="task.taskType" :value="task.status"
></cs-dict-tag> ></cs-dict-tag>
</view> </view>
</view> </view>
<u-loadmore :status="load" marginTop="12" marginBottom="12" /> <u-loadmore
:status="load"
marginTop="12"
marginBottom="12"
v-if="load != 'nomore'"
/>
</scroll-view> </scroll-view>
</template> </template>
@ -80,7 +93,7 @@ export default {
*/ */
async getDict() { async getDict() {
const dict = await getDictBatchByType({ const dict = await getDictBatchByType({
type: ['task_state'].join(',') type: ['task_state', 'task_priority'].join(',')
}) })
this.dictMap = { this.dictMap = {
...dict.data ...dict.data
@ -128,39 +141,19 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.view-container { .view-container {
padding: 12px; padding: 24rpx;
flex-direction: column; flex-direction: column;
white-space: nowrap; white-space: nowrap;
.box { .box {
border-radius: 12px; border-radius: 24rpx;
padding: 12px; padding: 24rpx;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 12px; gap: 24rpx;
background-color: #fff; background-color: #fff;
position: relative; position: relative;
margin-bottom: 12px; margin-bottom: 24rpx;
overflow: hidden; overflow: hidden;
.tagList {
display: flex;
align-items: center;
gap: var(--Number-4px, 4px);
.tag {
display: flex;
padding: var(--Number-2px, 2px) var(--Number-6px, 6px);
justify-content: center;
align-items: center;
gap: var(--Number-4px, 4px);
border-radius: var(--Number-2px, 2px);
background: var(--LightMode-Grey-Grey-100, #f9f9f9);
color: var(--LightMode-Grey-Grey-600, #78829d);
text-align: center;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
}
.status { .status {
position: absolute; position: absolute;
right: -19px; right: -19px;
@ -168,7 +161,7 @@ export default {
transform: rotateZ(45deg) translateX(20px) translateY(-20px); transform: rotateZ(45deg) translateX(20px) translateY(-20px);
transform-origin: 50% 50%; transform-origin: 50% 50%;
padding: 4px 20px; padding: 4px 20px;
font-size: 12px; font-size: 24rpx;
text-align: center; text-align: center;
} }
} }

3
sub/inspection/record.vue

@ -138,7 +138,8 @@ export default {
.image { .image {
width: 192rpx; width: 192rpx;
height: 192rpx; height: 192rpx;
border-radius: 8px; border-radius: 16rpx;
flex-shrink: 0;
} }
} }
} }

242
sub/owner/notic.vue

@ -0,0 +1,242 @@
<template>
<view class="container">
<!-- Tab 切换 -->
<view class="tab-container">
<view
v-for="(tab, index) in tabs"
:key="index"
class="tab-item"
:class="{ active: currentTab === index }"
@tap="switchTab(index)"
>
<text>{{ tab.name }}</text>
<text v-if="tab.count > 0" class="badge">{{ tab.count }}</text>
</view>
</view>
<!-- 列表内容 -->
<scroll-view
class="scroll-container"
scroll-y
@scrolltolower="loadMore"
@refresherrefresh="onRefresh"
refresher-enabled
:refresher-triggered="isRefreshing"
>
<view
v-for="(item, index) in list"
:key="index"
:class="['notice-item', !item.type ? 'is-read' : '']"
@tap="goDetail(item)"
>
<view :class="['notice-icon', !item.type ? 'green' : '']">
<image
:src="
!item.type
? '/static/images/owner/message.png'
: '/static/images/owner/message-grey.png'
"
mode="aspectFill"
></image>
</view>
<view class="notice-content">
<view class="notice-title">{{ item.title }}</view>
<view class="notice-time">{{ item.time }}</view>
</view>
<view class="notice-arrow">
<text class="iconfont icon-right"></text>
</view>
</view>
<cs-emty v-if="list.length == 0"></cs-emty>
</scroll-view>
</view>
</template>
<script>
export default {
data() {
return {
tabs: [
{ name: '任务通知', count: 4 },
{ name: '整改到期', count: 0 },
{ name: '资质逾期', count: 0 }
],
currentTab: 0,
list: [],
mock: [
{
id: 1,
title: '全区餐饮环保检查全区餐饮环保检查全区餐饮环保检查...',
time: '2025年3月18日 - 2025年3月18日',
icon: '/static/images/notice-icon.png',
type: 0
},
{
id: 2,
title: '餐饮店卫生检查通知',
time: '2025年3月15日 - 2025年3月20日',
icon: '/static/images/notice-icon.png',
type: 0
},
{
id: 3,
title: '消防安全整改通知',
time: '2025年3月10日 - 2025年3月25日',
icon: '/static/images/notice-icon.png',
type: 1
},
{
id: 4,
title: '营业执照即将到期提醒',
time: '2025年4月1日到期',
icon: '/static/images/notice-icon.png',
type: 1
}
],
page: 1,
isRefreshing: false,
hasMore: true //
}
},
onLoad() {
this.getList()
},
methods: {
switchTab(index) {
if (this.currentTab === index) return
this.currentTab = index
this.page = 1
this.list = []
this.getList()
},
async getList() {
if (this.currentTab == 0) {
this.list = [...this.mock, ...this.mock]
}
},
async loadMore() {
if (!this.hasMore) return //
this.page++
await this.getList()
},
async onRefresh() {
try {
this.isRefreshing = true
this.page = 1
await this.getList()
} finally {
this.isRefreshing = false
}
},
goDetail(item) {
// //
// uni.navigateTo({
// url: `/pages/notice-detail/notice-detail?id=${item.id}`,
// });
}
}
}
</script>
<style lang="scss" scoped>
.container {
height: 100vh;
display: flex;
flex-direction: column;
}
.tab-container {
display: flex;
background: #fff;
padding: 24rpx 32rpx;
gap: 24rpx;
border-bottom: 2rpx solid var(--LightMode-Grey-Grey-100, #f9f9f9);
.tab-item {
flex: 1;
text-align: center;
position: relative;
height: 64rpx;
line-height: 64rpx;
font-size: 28rpx;
color: #4b5675;
background: #f9f9f9;
border-radius: 240rpx;
&.active {
color: #07c160;
background: rgba(7, 193, 96, 0.1);
font-weight: bold;
}
.badge {
margin-left: 8rpx;
color: #07c160;
}
}
}
.scroll-container {
flex: 1;
box-sizing: border-box;
max-height: calc(100vh - 124rpx);
padding: 0 24rpx;
}
.notice-item {
display: flex;
align-items: center;
padding: 32rpx 24rpx;
border-radius: 16rpx;
border: 2rpx solid #f9f9f9;
background: #fff;
color: #4b5675;
margin-top: 24rpx;
&:last-child {
margin-bottom: 48rpx;
}
.notice-icon {
padding: 16rpx;
border-radius: 50%;
background-color: #f9f9f9;
box-sizing: border-box;
margin-right: 24rpx;
display: flex;
justify-content: center;
align-items: center;
image {
width: 40rpx;
height: 40rpx;
flex-shrink: 0;
z-index: 1;
}
}
.green {
background-color: #eafff1;
}
.notice-content {
flex: 1;
.notice-title {
margin-bottom: 10rpx;
font-weight: bold;
max-width: 486rpx;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.notice-time {
}
}
.notice-arrow {
color: #c4cada;
font-size: 24rpx;
}
}
.is-read {
color: #071437;
}
</style>

0
sub/owner/notice-detail.vue

18
sub/owner/policy-detail.vue

@ -1,11 +1,11 @@
<template> <template>
<view class="policy-detail"> <view class="policy-detail">
<!-- 详情内容区 --> <!-- 详情内容区 -->
<view class="content-wrap"> <view class="content-wrap">
<view class="policy-title">{{ policyDetail.name }}</view> <view class="policy-title">{{ policyDetail.name }}</view>
<view class="policy-time">生效时间{{ policyDetail.effectiveDate }}</view> <view class="policy-time">
生效时间{{ policyDetail.effectiveDate }}
</view>
<!-- 富文本内容 --> <!-- 富文本内容 -->
<view class="policy-content"> <view class="policy-content">
@ -59,13 +59,19 @@ export default {
formatTime(time) { formatTime(time) {
if (!time) return '' if (!time) return ''
const date = new Date(time) const date = new Date(time)
return `${date.getFullYear()}-${String(date.getMonth() + 1).padStart(2, '0')}-${String(date.getDate()).padStart(2, '0')}` return `${date.getFullYear()}-${String(date.getMonth() + 1).padStart(
2,
'0'
)}-${String(date.getDate()).padStart(2, '0')}`
}, },
// //
formatRichText(html) { formatRichText(html) {
if (!html) return '' if (!html) return ''
// //
return html.replace(/<img/gi, '<img style="max-width:100%;height:auto;display:block;"') return html.replace(
/<img/gi,
'<img style="max-width:100%;height:auto;display:block;"'
)
}, },
// //
handleBack() { handleBack() {
@ -127,7 +133,7 @@ export default {
.policy-content { .policy-content {
font-size: 28rpx; font-size: 28rpx;
line-height: 1.8; line-height: 1.8;
color: #333; color: #071437;
:deep(img) { :deep(img) {
max-width: 100%; max-width: 100%;

62
sub/owner/policy.vue

@ -30,18 +30,24 @@
@click="handlePolicyClick(item)" @click="handlePolicyClick(item)"
> >
<view class="item-left"> <view class="item-left">
<image :src="itemImgUrl" class="policy-icon"></image> <image
src="@/static/images/owner/policy.png"
class="policy-icon"
mode="aspectFit"
></image>
</view> </view>
<view class="item-right"> <view class="item-right">
<view class="policy-title">{{ item.title }}</view> <view class="policy-title">
<view class="policy-time">生效时间: {{ item.effectiveDate }}</view> {{ item.title }}
</view>
<view class="policy-time">
生效时间: {{ item.effectiveDate }}
</view>
</view> </view>
</view> </view>
</scroll-view> </scroll-view>
</view> </view>
<!-- 加载更多状态组件 --> <!-- 加载更多状态组件 -->
<uni-load-more :status="loadMoreStatus" /> <uni-load-more :status="loadMoreStatus" />
</view> </view>
@ -52,7 +58,6 @@ import { PolicyApi, formatPolicyContext } from '@/api/policy/index.js'
import { formatDate } from '@/utils/ruoyi.js' import { formatDate } from '@/utils/ruoyi.js'
import config from '@/config' import config from '@/config'
export default { export default {
data() { data() {
return { return {
@ -63,8 +68,10 @@ export default {
pageNum: 1, // pageNum: 1, //
pageSize: 10, // pageSize: 10, //
total: 0, // total: 0, //
loadMoreStatus: 'more' ,// more- loading- noMore- loadMoreStatus: 'more', // more- loading- noMore-
itemImgUrl: config.imgUrl + '/miniohb/c103c92335bdd30d33ff8a062c219ead0626bf0a1898536bd7590285ca11c9db.png' itemImgUrl:
config.imgUrl +
'/miniohb/c103c92335bdd30d33ff8a062c219ead0626bf0a1898536bd7590285ca11c9db.png'
} }
}, },
// //
@ -73,9 +80,7 @@ export default {
this.getPolicyList() this.getPolicyList()
}, },
methods: { methods: {
// //
onRefresh() { onRefresh() {
this.isRefreshing = true this.isRefreshing = true
@ -83,17 +88,16 @@ export default {
this.getPolicyList() this.getPolicyList()
}, },
loadNextPage() { loadNextPage() {
console.log('列表值',this.policyList.length) console.log('列表值', this.policyList.length)
if (this.policyList.length < this.total) { if (this.policyList.length < this.total) {
this.pageNum++ this.pageNum++
this.getPolicyList() this.getPolicyList()
} }
}, },
// //
async getPolicyList() { async getPolicyList() {
try { try {
console.log('PolicyApi',this.searchValue) console.log('PolicyApi', this.searchValue)
this.loadMoreStatus = 'loading' this.loadMoreStatus = 'loading'
const res = await PolicyApi.getPolicyPage({ const res = await PolicyApi.getPolicyPage({
pageNum: this.pageNum, pageNum: this.pageNum,
@ -105,8 +109,11 @@ export default {
// //
const formattedData = res.data.list.map(item => ({ const formattedData = res.data.list.map(item => ({
...item, ...item,
title: item.name.length > 15 ? item.name.slice(0, 15) + '...' : item.name, title:
effectiveDate: formatDate(item.effectiveDate,'YYYY年MM月DD日') item.name.length > 15
? item.name.slice(0, 15) + '...'
: item.name,
effectiveDate: formatDate(item.effectiveDate, 'YYYY年MM月DD日')
})) }))
// //
@ -115,10 +122,11 @@ export default {
} else { } else {
this.policyList = [...this.policyList, ...formattedData] this.policyList = [...this.policyList, ...formattedData]
} }
console.log('列表信息',res) console.log('列表信息', res)
this.total = res.data.total this.total = res.data.total
// //
this.loadMoreStatus = this.policyList.length >= this.total ? 'noMore' : 'more' this.loadMoreStatus =
this.policyList.length >= this.total ? 'noMore' : 'more'
} }
} catch (error) { } catch (error) {
console.error(error) console.error(error)
@ -127,9 +135,9 @@ export default {
title: '获取列表失败', title: '获取列表失败',
icon: 'none' icon: 'none'
}) })
} } finally {
finally { this.loadMoreStatus =
this.loadMoreStatus = this.policyList.length >= this.total? 'noMore' :'more' this.policyList.length >= this.total ? 'noMore' : 'more'
// //
// //
setTimeout(() => { setTimeout(() => {
@ -139,12 +147,11 @@ export default {
}, },
// //
handleSearch(e) { handleSearch(e) {
if(e.detail && e.detail.length > 1){ if (e.detail && e.detail.length > 1) {
this.pageNum = 1 // this.pageNum = 1 //
this.searchValue = e.detail // this.searchValue = e.detail //
this.getPolicyList() this.getPolicyList()
} }
}, },
// //
handleClear() { handleClear() {
@ -164,7 +171,7 @@ export default {
<style lang="scss"> <style lang="scss">
.policy-container { .policy-container {
background: var(--LightMode-Secondary-Secondary, #F9F9F9); background: var(--LightMode-Secondary-Secondary, #f9f9f9);
min-height: 100vh; min-height: 100vh;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -186,6 +193,7 @@ export default {
.policy-scroll { .policy-scroll {
height: calc(100vh - 120rpx); height: calc(100vh - 120rpx);
box-sizing: border-box; box-sizing: border-box;
padding-top: 24rpx;
} }
.policy-item { .policy-item {
@ -197,15 +205,14 @@ export default {
margin: 24rpx; margin: 24rpx;
margin-bottom: 0; margin-bottom: 0;
border-radius: 16rpx; border-radius: 16rpx;
border-bottom: 2rpx solid var(--LightMode-Grey-Grey-100, #f9f9f9);
.item-left { .item-left {
border-radius: 100rpx; border-radius: 100rpx;
background: var(--LightMode-Grey-Grey-100, #F9F9F9); background: var(--LightMode-Grey-Grey-100, #f9f9f9);
padding: 16rpx; padding: 16rpx;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
.policy-icon { .policy-icon {
width: 40rpx; width: 40rpx;
height: 40rpx; height: 40rpx;
@ -218,9 +225,10 @@ export default {
overflow: hidden; overflow: hidden;
.policy-title { .policy-title {
font-weight: bold;
margin-bottom: 8rpx;
font-size: 28rpx; font-size: 28rpx;
color: #333; color: #333;
margin-bottom: 12rpx;
line-height: 1.4; line-height: 1.4;
} }

206
sub/task/detail.vue

@ -3,14 +3,22 @@
<view <view
class="detail-container" class="detail-container"
:style="{ :style="{
paddingBottom: isSelect.length > 0 ? '70px' : '20px' paddingBottom: isSelect.length > 0 ? '140rpx' : '40rpx'
}" }"
> >
<view class="box detail"> <view class="box detail">
<text class="wd-font-800 wd-text-16" style="margin-bottom: 4px"> <text class="wd-font-800 wd-text-16" style="color: #071437">
{{ detail.title }} {{ detail.title }}
</text> </text>
<view class="tagList"> <view class="tagList">
<view class="tag" v-if="detail.deptName">
{{ detail.deptName }}
</view>
<view class="tag">
{{
$dict.echoDicValue(dictMap.task_priority, detail.priority)
}}
</view>
<view <view
v-for="(tag, index) in detail.tagList" v-for="(tag, index) in detail.tagList"
:key="index" :key="index"
@ -23,48 +31,22 @@
class="wd-flex wd-text-13" class="wd-flex wd-text-13"
style="justify-content: space-between" style="justify-content: space-between"
> >
<view class="wd-flex" style="align-items: center; gap: 4px"> <view class="wd-flex" style="align-items: center; gap: 8rpx">
<u-icon name="calendar" color="#17C653" /> <u-icon name="calendar" color="#17C653" size="16" />
<text class="wd-text-13 wd-ml-4px"> <text
class="wd-text-13"
style="font-weight: bold; margin-right: 8rpx"
>
{{ {{
`${$util.formatDate( `${$util.formatDate(
detail.startDate, detail.startDate,
'YYYY/M/D' 'YYYY年M月D日'
)}~${$util.formatDate(detail.endDate, 'YYYY/M/D')}` )} ${$util.formatDate(detail.endDate, 'YYYY年M月D日')}`
}} }}
</text> </text>
</view> </view>
</view> </view>
<view <cs-text-more :value="detail.description" />
style="
font-size: 13px;
line-height: 160%;
position: relative;
transform: 0.2s all;
"
v-if="detail.description.length < 20"
>
{{ detail.description }}
</view>
<view
v-else
style="
font-size: 13px;
line-height: 160%;
position: relative;
transform: 0.2s all;
"
@tap="isShowAllText = !isShowAllText"
>
{{
isShowAllText
? detail.description
: `${detail.description.slice(1, 100)}...`
}}
<text style="color: #17c653; padding-left: 4px">
{{ isShowAllText ? '收起' : '展开' }}
</text>
</view>
<view class="audit"> <view class="audit">
<cs-dict-tag <cs-dict-tag
:dict="dictMap.task_state" :dict="dictMap.task_state"
@ -89,7 +71,7 @@
<van-dropdown-item <van-dropdown-item
v-if="showItem(['director'])" v-if="showItem(['director'])"
:value="queryParams.departmentId" :value="queryParams.departmentId"
:options="getDropdownOption('dept')" :options="dropOption.dept"
@change=" @change="
v => { v => {
querySelect(v, 'departmentId') querySelect(v, 'departmentId')
@ -110,7 +92,7 @@
/> />
<van-dropdown-item <van-dropdown-item
:value="queryParams.Inspections_status" :value="queryParams.Inspections_status"
:options="getDropdownOption('Inspections_status')" :options="dropOption.status"
@change=" @change="
v => { v => {
querySelect(v, 'inspectionsStatus') querySelect(v, 'inspectionsStatus')
@ -118,7 +100,7 @@
" "
/> />
</van-dropdown-menu> </van-dropdown-menu>
<view class="wd-font-600"> <view class="wd-font-600" style="flex: 0 0 200rpx">
(当前 (当前
<text style="color: #17c653">{{ list.length }}</text> <text style="color: #17c653">{{ list.length }}</text>
条记录) 条记录)
@ -139,15 +121,27 @@
@tap.native.stop="select(record.id)" @tap.native.stop="select(record.id)"
v-if="['3', null].includes(record.inspectionStatus)" v-if="['3', null].includes(record.inspectionStatus)"
> >
<u-icon name="checkbox-mark" size="16px" color="#fff"></u-icon> <u-icon name="checkbox-mark" size="16" color="#fff"></u-icon>
</view> </view>
<view class="disable" v-else></view> <view class="disable" v-else></view>
<view class="info"> <view class="info">
<view class="name">{{ record.enterpriseName }}</view> <view class="name">
<view style="font-size: 1 3px"> {{ record.enterpriseName }}
</view>
<view
style="
font-size: 26rpx;
padding-right: 3rem;
margin-bottom: 4rpx;
white-space: nowrap;
text-overflow: ellipsis;
width: 528rpx;
overflow: hidden;
"
>
{{ record.enterpriseAddress }} {{ record.enterpriseAddress }}
</view> </view>
<view class="tagList" style="margin-top: 8px"> <view class="tagList" style="margin-top: 16rpx">
<view <view
v-for="(item, index) in record.tagList" v-for="(item, index) in record.tagList"
:key="index" :key="index"
@ -164,7 +158,12 @@
></cs-dict-tag> ></cs-dict-tag>
</view> </view>
</view> </view>
<u-loadmore :status="load" marginTop="12" marginBottom="12" /> <u-loadmore
:status="load"
marginTop="12"
marginBottom="12"
v-if="load != 'nomore'"
/>
<view class="btn-box" v-if="isSelect.length > 0"> <view class="btn-box" v-if="isSelect.length > 0">
<view class="confirm-btn" @tap="replay"> <view class="confirm-btn" @tap="replay">
已选择({{ isSelect.length }}) 已选择({{ isSelect.length }})
@ -263,12 +262,18 @@ export default {
value: '', value: '',
text: '按人员' text: '按人员'
} }
] ],
//
dropOption: {
dept: [],
userList: [],
status: []
}
} }
}, },
onLoad(res) { async onLoad(res) {
this.detail.id = res.id this.detail.id = res.id
this.getDict() await this.getDict()
}, },
onPageScroll(e) { onPageScroll(e) {
this.OptionsOffset.isTop = e.scrollTop + 10 > this.OptionsOffset.top this.OptionsOffset.isTop = e.scrollTop + 10 > this.OptionsOffset.top
@ -304,13 +309,42 @@ export default {
*/ */
async getDict() { async getDict() {
const dict = await getDictBatchByType({ const dict = await getDictBatchByType({
type: ['task_state', 'Inspections_status'].join(',') type: ['task_state', 'Inspections_status', 'task_priority'].join(
','
)
}) })
const dept = await getDeptTree() const dept = await getDeptTree()
this.dictMap = { this.dictMap = {
...dict.data, ...dict.data,
dept: dept.data dept: dept.data
} }
this.dropOption = {
dept: [
{
value: '',
text: '按部门'
},
...dept.data.map(d => {
return {
value: d.id,
text: d.name
}
})
],
status: [
{
value: '',
text: '按状态'
},
...dict.data.task_state.map(d => {
return {
...d,
value: d.value,
text: d.label
}
})
]
}
}, },
getDropdownOption(key) { getDropdownOption(key) {
const keyMap = { const keyMap = {
@ -385,17 +419,17 @@ export default {
getUserOption({ detail }) { getUserOption({ detail }) {
this.getUser().then(res => { this.getUser().then(res => {
this.userList = [ this.userList = [
{
value: '',
text: '按人员'
},
...res.map(i => { ...res.map(i => {
return { return {
...i, ...i,
value: i.userId, value: i.userId,
text: i.realName text: i.realName
} }
}), })
{
value: '',
text: '按人员'
}
] ]
detail.callback(true) detail.callback(true)
}) })
@ -501,38 +535,18 @@ export default {
position: absolute; position: absolute;
right: 0; right: 0;
top: 0; top: 0;
transform: translateX(23px) translateY(16px) rotateZ(45deg); transform: translateX(58rpx) translateY(24rpx) rotateZ(45deg);
transform-origin: 50% 50%; transform-origin: 50% 50%;
} }
} }
.tagList {
display: flex;
align-items: center;
gap: var(--Number-4px, 4px);
.tag {
display: flex;
padding: var(--Number-2px, 2px) var(--Number-6px, 6px);
justify-content: center;
align-items: center;
gap: var(--Number-4px, 4px);
border-radius: var(--Number-2px, 2px);
background: var(--LightMode-Grey-Grey-100, #f9f9f9);
color: var(--LightMode-Grey-Grey-600, #78829d);
text-align: center;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
}
.record { .record {
background-color: #fff; background-color: #fff;
display: flex; display: flex;
padding: 12px 16px; padding: 24rpx 32rpx;
align-items: center; align-items: center;
border-radius: var(--Number-8px, 8px); border-radius: var(--Number-8px, 8px);
border: 1px solid var(--LightMode-Grey-Grey-100, #f9f9f9); border: 2rpx solid var(--LightMode-Grey-Grey-100, #f9f9f9);
margin: 12px; margin: 24rpx;
margin-top: 0; margin-top: 0;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
@ -541,45 +555,49 @@ export default {
right: 0; right: 0;
top: 0; top: 0;
transform-origin: 50% 50%; transform-origin: 50% 50%;
transform: translateX(30px) translateY(10px) rotateZ(45deg); transform: translateX(64rpx) translateY(18rpx) rotateZ(45deg);
} }
.select { .select {
width: 24px; width: 44rpx;
height: 24px; height: 44rpx;
border: 2px solid $cs-color-main; border: 4rpx solid $cs-color-main;
border-radius: 6px; border-radius: 12rpx;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
transition: 0.2s all; transition: 0.2s all;
margin-right: 16px; margin-right: 32rpx;
} }
.disable { .disable {
width: 24px; width: 44rpx;
height: 24px; height: 44rpx;
border: 2px solid #dbdfe9; border: 4rpx solid #dbdfe9;
margin-right: 16px; margin-right: 32rpx;
border-radius: 100%; border-radius: 100%;
position: relative; position: relative;
&::after { &::after {
content: ''; content: '';
position: absolute; position: absolute;
inset: 0; inset: 0;
border-left: 2px solid #dbdfe9; border-left: 4rpx solid #dbdfe9;
transform-origin: 0 50%; transform-origin: 0 50%;
transform: translateX(calc(50% - 1px)) rotateZ(45deg); transform: translateX(calc(50% - 2rpx)) rotateZ(45deg);
} }
} }
.isSelect { .isSelect {
background-color: $cs-color-main; background-color: $cs-color-main;
} }
.info { .info {
font-size: 13px; font-size: 26rpx;
.name { .name {
font-size: 16px; font-size: 32rpx;
font-weight: 600; font-weight: 600;
color: #071437; color: #071437;
margin-bottom: 4px; margin-bottom: 8rpx;
white-space: nowrap;
text-overflow: ellipsis;
width: 480rpx;
overflow: hidden;
} }
} }
&:active { &:active {
@ -641,7 +659,7 @@ export default {
display: flex; display: flex;
.info { .info {
.name { .name {
font-size: 16px; font-size: 30rpx;
font-weight: bold; font-weight: bold;
} }
.dept { .dept {

33
sub/task/enforce.vue

@ -46,7 +46,7 @@
> >
<view style="font-weight: bold"> <view style="font-weight: bold">
<text style="color: #f8285a; margin-right: 4px">*</text> <text style="color: #f8285a; margin-right: 4px">*</text>
上传证明 上传照片
</view> </view>
</view> </view>
<u-upload <u-upload
@ -54,9 +54,9 @@
@afterRead="addPhoto" @afterRead="addPhoto"
@delete="delPhoto" @delete="delPhoto"
multiple multiple
:maxCount="3" width="96"
width="96px" height="96"
height="96px" :maxCount="6"
></u-upload> ></u-upload>
</view> </view>
@ -272,29 +272,4 @@ export default {
::v-deep .uni-easyinput__content-textarea { ::v-deep .uni-easyinput__content-textarea {
min-height: 400rpx; min-height: 400rpx;
} }
::v-deep .u-upload__button {
border-radius: 16rpx !important;
border: 1px solid #f1f1f4;
background-color: #f9f9f9 !important;
}
::v-deep .u-upload__wrap {
.u-upload__wrap__preview {
width: 192rpx;
height: 192rpx;
border-radius: 16rpx !important;
overflow: visible !important;
.u-upload__wrap__preview__image {
border-radius: 16rpx !important;
}
.u-upload__deletable {
border-radius: 100% !important;
background-color: #f8285a !important;
transform: translateX(50%) translateY(-50%);
.u-upload__deletable__icon {
position: relative;
}
}
}
}
</style> </style>

2
sub/task/locate.vue

@ -230,7 +230,7 @@ export default {
scene: `aId=${this.inspectionsId}&bId=${this.enterpriseId}`, scene: `aId=${this.inspectionsId}&bId=${this.enterpriseId}`,
path: 'sub/task/locate', path: 'sub/task/locate',
checkPath: false, checkPath: false,
envVersion: 'trial', envVersion: 'develop',
isHyaline: true isHyaline: true
}) })
this.miniCode = `data:image/jpeg;base64,${res.data}` this.miniCode = `data:image/jpeg;base64,${res.data}`

166
sub/task/record.vue

@ -1,7 +1,7 @@
<template> <template>
<scroll-view class="view-container" scroll-y> <scroll-view class="view-container" scroll-y>
<view class="box detail" style="margin-bottom: 12px"> <view class="box detail" style="margin-bottom: 12px">
<text class="wd-font-800 wd-text-16" style="margin-bottom: 4px"> <text class="wd-font-800 wd-text-16">
{{ detail.title }} {{ detail.title }}
</text> </text>
<view class="tagList"> <view class="tagList">
@ -20,7 +20,7 @@
class="wd-flex wd-text-13" class="wd-flex wd-text-13"
style="justify-content: space-between" style="justify-content: space-between"
> >
<view class="wd-flex" style="align-items: center; gap: 4px"> <view class="wd-flex" style="align-items: center; gap: 8rpx">
<u-icon name="calendar" color="#17C653" /> <u-icon name="calendar" color="#17C653" />
<text class="wd-text-13 wd-ml-4px wd-font-800"> <text class="wd-text-13 wd-ml-4px wd-font-800">
{{ {{
@ -32,37 +32,7 @@
</text> </text>
</view> </view>
</view> </view>
<view <cs-text-more :value="detail.description"></cs-text-more>
style="
font-size: 26rpx;
line-height: 160%;
position: relative;
transform: 0.2s all;
"
v-if="detail.description.length < 20"
>
{{ detail.description }}
</view>
<view
v-else
style="
font-size: 26rpx;
line-height: 160%;
position: relative;
transform: 0.2s all;
"
@tap="isShowAllText = !isShowAllText"
>
{{
isShowAllText
? detail.description
: `${detail.description.slice(1, 100)}...`
}}
<text style="color: #17c653; padding-left: 8rpx">
{{ isShowAllText ? '收起' : '展开' }}
</text>
</view>
<view <view
class="wd-flex wd-items-center enterprise" class="wd-flex wd-items-center enterprise"
@tap="goEnterprise(detail.enterprise)" @tap="goEnterprise(detail.enterprise)"
@ -72,20 +42,17 @@
shape="square" shape="square"
size="64" size="64"
></u-avatar> ></u-avatar>
<view class="wd-flex wd-flex-col" style="gap: 4px"> <view class="wd-flex wd-flex-col">
<text class="wd-font-800 wd-text-15"> <text class="wd-font-800 wd-text-15">
{{ detail.enterprise.enterprisesName }} {{ detail.enterprise.enterprisesName }}
</text> </text>
<!-- @tap.native.stop="viewPosition(detail.enterprise)" --> <view class="wd-flex" style="margin-top: 4rpx">
<view <u-icon name="map" size="28rpx" color="#17C653"></u-icon>
class="wd-flex wd-pb-8px" <text class="address wd-text-12" style="margin-left: 8rpx">
>
<u-icon name="map" size="14" color="#17C653"></u-icon>
<text class="address wd-text-12" style="margin-left: 4px">
{{ detail.enterprise.address }} {{ detail.enterprise.address }}
</text> </text>
</view> </view>
<view class="tagList"> <view class="tagList" style="margin-top: 16rpx">
<view class="tag" v-if="detail.enterprise.region"> <view class="tag" v-if="detail.enterprise.region">
{{ {{
$dict.echoDicValue( $dict.echoDicValue(
@ -128,18 +95,20 @@
:key="item.id" :key="item.id"
@tap="goLog(item)" @tap="goLog(item)"
> >
<view style="margin-bottom: 12px"> <view style="margin-bottom: 24rpx">
<text <text
:style="{ :style="{
marginRight: '10px', marginRight: '20rpx',
fontWeight: 'bold', fontWeight: 'bold',
color: $dict.echoDictOption( color: $dict.echoDictOption(
dictMap.inspections_mark, dictMap.Inspections_status,
item.status item.status
).remark ).remark
}" }"
> >
{{ $dict.echoDicValue(dictMap.inspections_mark, item.status) }} {{
$dict.echoDicValue(dictMap.Inspections_status, item.status)
}}
</text> </text>
<text> <text>
{{ $util.formatDate(item.createTime, 'YYYY/M/D h:m') }} {{ $util.formatDate(item.createTime, 'YYYY/M/D h:m') }}
@ -153,14 +122,14 @@
class="row" class="row"
v-for="people in item.userList" v-for="people in item.userList"
:key="people.userId" :key="people.userId"
style="display: inline-flex; gap: 12px; margin-right: 12px" style="display: inline-flex; gap: 24rpx; margin-right: 24rpx"
> >
<u-avatar <u-avatar
:src="people.avtar" :src="people.avtar"
size="40px" size="80rpx"
shape="circle" shape="circle"
></u-avatar> ></u-avatar>
<view class="wd-flex wd-flex-col" style="gap: 2px"> <view class="wd-flex wd-flex-col" style="gap: 4rpx">
<text>{{ people.realName }}</text> <text>{{ people.realName }}</text>
<text>{{ people.deptName }}</text> <text>{{ people.deptName }}</text>
</view> </view>
@ -177,7 +146,7 @@
</view> </view>
<view class="audit"> <view class="audit">
<cs-dict-tag <cs-dict-tag
:dict="dictMap.Inspections_status" :dict="dictMap.inspections_mark"
:value="inspectionsState" :value="inspectionsState"
color="#fff" color="#fff"
:bgColor="setColor(inspectionsState)" :bgColor="setColor(inspectionsState)"
@ -326,94 +295,47 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.view-container { .view-container {
padding: 0 12px; padding: 0 24rpx;
position: relative; position: relative;
padding-bottom: 100px; padding-bottom: 200rpx;
.box { .box {
background-color: #fff; background-color: #fff;
border-radius: $cs-border-radius; border-radius: $cs-border-radius;
padding: 16px; padding: 32rpx;
margin-top: 12px; margin-top: 24rpx;
} }
.row { .row {
border-radius: $cs-border-radius; border-radius: $cs-border-radius;
padding: 12px; padding: 24rpx;
border: 1px solid #f9f9f9; border: 2rpx solid #f9f9f9;
} }
.detail { .detail {
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
gap: 12px; gap: 24rpx;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
.tagList {
display: flex;
align-items: center;
gap: var(--Number-4px, 4px);
.tag {
display: flex;
padding: var(--Number-2px, 2px) var(--Number-6px, 6px);
justify-content: center;
align-items: center;
gap: var(--Number-4px, 4px);
border-radius: var(--Number-2px, 2px);
background: var(--LightMode-Grey-Grey-100, #f9f9f9);
color: var(--LightMode-Grey-Grey-600, #78829d);
text-align: center;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
}
.enterprise { .enterprise {
border: 1px solid #f9f9f9; border: 2rpx solid #f9f9f9;
padding: 12px; padding: 24rpx;
border-radius: $cs-border-radius; border-radius: $cs-border-radius;
gap: 12px; gap: 24rpx;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
font-size: 12px; font-size: 24rpx;
.address { .address {
color: $uni-text-color-grey; color: $uni-text-color-grey;
text-decoration: underline;
} }
&:active { &:active {
background-color: $cs-color-touch; background-color: $cs-color-touch;
} }
.tagList {
margin-top: 8px;
display: flex;
gap: 4px;
color: $uni-text-color-grey;
display: flex;
flex-flow: row wrap;
.tag {
font-size: 12px;
display: flex;
padding: 2px 6px;
justify-content: center;
align-items: center;
border-radius: 2px;
background: #f9f9f9;
}
}
.audit {
position: absolute;
right: -19px;
top: 6px;
transform: rotateZ(45deg);
transform-origin: 50% 50%;
padding: 4px 20px;
font-size: 12px;
text-align: center;
}
} }
.audit { .audit {
position: absolute; position: absolute;
right: 0; right: 0;
top: 0; top: 0;
transform: translateX(23px) translateY(16px) rotateZ(45deg); transform: translateX(36rpx) translateY(32rpx) rotateZ(45deg);
transform-origin: 50% 50%; transform-origin: 50% 50%;
} }
} }
@ -423,26 +345,26 @@ export default {
overflow: hidden; overflow: hidden;
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
gap: 12px; gap: 24rpx;
.emty { .emty {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
gap: 12px; gap: 24rpx;
border-radius: var(--Number-8px, 8px); border-radius: 16rpx;
border: 1px solid var(--LightMode-Grey-Grey-100, #f9f9f9); border: 2rpx solid var(--LightMode-Grey-Grey-100, #f9f9f9);
padding: 24px 12px; padding: 48rpx 24rpx;
border-radius: 8px; border-radius: 16rpx;
.image { .image {
width: 64px; width: 128rpx;
height: 64px; height: 128rpx;
} }
} }
.audit { .audit {
position: absolute; position: absolute;
right: 0; right: 0;
top: 0; top: 0;
transform: translateX(30px) translateY(8px) rotateZ(45deg); transform: translateX(60rpx) translateY(16rpx) rotateZ(45deg);
transform-origin: 50% 50%; transform-origin: 50% 50%;
} }
} }
@ -452,16 +374,16 @@ export default {
} }
} }
.operation { .operation {
padding: 12px; padding: 24rpx;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
gap: 12px; gap: 24rpx;
.btn { .btn {
flex: 1; flex: 1;
border-radius: 8px; border-radius: 16rpx;
display: flex; display: flex;
padding: 12px 0; padding: 24rpx 0;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
} }

1073
uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts.vue

File diff suppressed because it is too large Load Diff

4
uni_modules/qiun-data-charts/js_sdk/u-charts/config-echarts.js

@ -285,8 +285,8 @@ const cfe = {
"trigger": 'item' "trigger": 'item'
}, },
"grid": { "grid": {
"top": 40, "top": 0,
"bottom": 30, "bottom": 0,
"right": 15, "right": 15,
"left": 15 "left": 15
}, },

287
uni_modules/qiun-data-charts/js_sdk/u-charts/config-ucharts.js

@ -20,7 +20,7 @@
const color = ['#1890FF', '#91CB74', '#FAC858', '#EE6666', '#73C0DE', '#3CA272', '#FC8452', '#9A60B4', '#ea7ccc']; const color = ['#1890FF', '#91CB74', '#FAC858', '#EE6666', '#73C0DE', '#3CA272', '#FC8452', '#9A60B4', '#ea7ccc'];
//事件转换函数,主要用作格式化x轴为时间轴,根据需求自行修改 //事件转换函数,主要用作格式化x轴为时间轴,根据需求自行修改
const formatDateTime = (timeStamp, returnType)=>{ const formatDateTime = (timeStamp, returnType) => {
var date = new Date(); var date = new Date();
date.setTime(timeStamp * 1000); date.setTime(timeStamp * 1000);
var y = date.getFullYear(); var y = date.getFullYear();
@ -34,50 +34,72 @@ const formatDateTime = (timeStamp, returnType)=>{
var second = date.getSeconds(); var second = date.getSeconds();
minute = minute < 10 ? ('0' + minute) : minute; minute = minute < 10 ? ('0' + minute) : minute;
second = second < 10 ? ('0' + second) : second; second = second < 10 ? ('0' + second) : second;
if(returnType == 'full'){return y + '-' + m + '-' + d + ' '+ h +':' + minute + ':' + second;} if (returnType == 'full') {
if(returnType == 'y-m-d'){return y + '-' + m + '-' + d;} return y + '-' + m + '-' + d + ' ' + h + ':' + minute + ':' + second;
if(returnType == 'h:m'){return h +':' + minute;} }
if(returnType == 'h:m:s'){return h +':' + minute +':' + second;} if (returnType == 'y-m-d') {
return y + '-' + m + '-' + d;
}
if (returnType == 'h:m') {
return h + ':' + minute;
}
if (returnType == 'h:m:s') {
return h + ':' + minute + ':' + second;
}
return [y, m, d, h, minute, second]; return [y, m, d, h, minute, second];
} }
const cfu = { const cfu = {
//demotype为自定义图表类型,一般不需要自定义图表类型,只需要改根节点上对应的类型即可 //demotype为自定义图表类型,一般不需要自定义图表类型,只需要改根节点上对应的类型即可
"type":["pie","ring","rose","word","funnel","map","arcbar","line","column","mount","bar","area","radar","gauge","candle","mix","tline","tarea","scatter","bubble","demotype"], "type": ["pie", "ring", "rose", "word", "funnel", "map", "arcbar", "line", "column", "mount", "bar", "area",
"range":["饼状图","圆环图","玫瑰图","词云图","漏斗图","地图","圆弧进度条","折线图","柱状图","山峰图","条状图","区域图","雷达图","仪表盘","K线图","混合图","时间轴折线","时间轴区域","散点图","气泡图","自定义类型"], "radar", "gauge", "candle", "mix", "tline", "tarea", "scatter", "bubble", "demotype"
],
"range": ["饼状图", "圆环图", "玫瑰图", "词云图", "漏斗图", "地图", "圆弧进度条", "折线图", "柱状图", "山峰图", "条状图", "区域图", "雷达图", "仪表盘", "K线图",
"混合图", "时间轴折线", "时间轴区域", "散点图", "气泡图", "自定义类型"
],
//增加自定义图表类型,如果需要categories,请在这里加入您的图表类型,例如最后的"demotype" //增加自定义图表类型,如果需要categories,请在这里加入您的图表类型,例如最后的"demotype"
//自定义类型时需要注意"tline","tarea","scatter","bubble"等时间轴(矢量x轴)类图表,没有categories,不需要加入categories //自定义类型时需要注意"tline","tarea","scatter","bubble"等时间轴(矢量x轴)类图表,没有categories,不需要加入categories
"categories":["line","column","mount","bar","area","radar","gauge","candle","mix","demotype"], "categories": ["line", "column", "mount", "bar", "area", "radar", "gauge", "candle", "mix", "demotype"],
//instance为实例变量承载属性,不要删除 //instance为实例变量承载属性,不要删除
"instance":{}, "instance": {},
//option为opts及eopts承载属性,不要删除 //option为opts及eopts承载属性,不要删除
"option":{}, "option": {},
//下面是自定义format配置,因除H5端外的其他端无法通过props传递函数,只能通过此属性对应下标的方式来替换 //下面是自定义format配置,因除H5端外的其他端无法通过props传递函数,只能通过此属性对应下标的方式来替换
"formatter":{ "formatter": {
"yAxisDemo1":function(val, index, opts){return val+'元'}, "yAxisDemo1": function(val, index, opts) {
"yAxisDemo2":function(val, index, opts){return val.toFixed(2)}, return val + '元'
"xAxisDemo1":function(val, index, opts){return val+'年';}, },
"xAxisDemo2":function(val, index, opts){return formatDateTime(val,'h:m')}, "yAxisDemo2": function(val, index, opts) {
"seriesDemo1":function(val, index, series, opts){return val+'元'}, return val.toFixed(2)
"tooltipDemo1":function(item, category, index, opts){ },
if(index==0){ "xAxisDemo1": function(val, index, opts) {
return '随便用'+item.data+'年' return val + '年';
}else{ },
return '其他我没改'+item.data+'天' "xAxisDemo2": function(val, index, opts) {
return formatDateTime(val, 'h:m')
},
"seriesDemo1": function(val, index, series, opts) {
return val + '元'
},
"tooltipDemo1": function(item, category, index, opts) {
if (index == 0) {
return '随便用' + item.data + '年'
} else {
return '其他我没改' + item.data + '天'
} }
}, },
"pieDemo":function(val, index, series, opts){ "pieDemo": function(val, index, series, opts) {
if(index !== undefined){ if (index !== undefined) {
return series[index].name+':'+series[index].data+'元' return series[index].name + ':' + series[index].data + '元'
} }
}, },
}, },
//这里演示了自定义您的图表类型的option,可以随意命名,之后在组件上 type="demotype" 后,组件会调用这个花括号里的option,如果组件上还存在opts参数,会将demotype与opts中option合并后渲染图表。 //这里演示了自定义您的图表类型的option,可以随意命名,之后在组件上 type="demotype" 后,组件会调用这个花括号里的option,如果组件上还存在opts参数,会将demotype与opts中option合并后渲染图表。
"demotype":{ "demotype": {
//我这里把曲线图当做了自定义图表类型,您可以根据需要随意指定类型或配置 //我这里把曲线图当做了自定义图表类型,您可以根据需要随意指定类型或配置
"type": "line", "type": "line",
"color": color, "color": color,
"padding": [15,10,0,15], "padding": [15, 10, 0, 15],
"xAxis": { "xAxis": {
"disableGrid": true, "disableGrid": true,
}, },
@ -85,8 +107,7 @@ const cfu = {
"gridType": "dash", "gridType": "dash",
"dashLength": 2, "dashLength": 2,
}, },
"legend": { "legend": {},
},
"extra": { "extra": {
"line": { "line": {
"type": "curve", "type": "curve",
@ -95,10 +116,10 @@ const cfu = {
} }
}, },
//下面是自定义配置,请添加项目所需的通用配置 //下面是自定义配置,请添加项目所需的通用配置
"pie":{ "pie": {
"type": "pie", "type": "pie",
"color": color, "color": color,
"padding": [5,5,5,5], "padding": [5, 5, 5, 5],
"extra": { "extra": {
"pie": { "pie": {
"activeOpacity": 0.5, "activeOpacity": 0.5,
@ -111,10 +132,10 @@ const cfu = {
}, },
} }
}, },
"ring":{ "ring": {
"type": "ring", "type": "ring",
"color": color, "color": color,
"padding": [5,5,5,5], "padding": [0, 0, 0, 0],
"rotate": false, "rotate": false,
"dataLabel": true, "dataLabel": true,
"legend": { "legend": {
@ -125,16 +146,19 @@ const cfu = {
"title": { "title": {
"name": "收益率", "name": "收益率",
"fontSize": 15, "fontSize": 15,
"color": "#666666" "color": "#666666",
"fontFamoly": 'Tahoma',
"fontWeight": 'blod'
}, },
"subtitle": { "subtitle": {
"name": "70%", "name": "70%",
"fontSize": 25, "fontSize": 25,
"color": "#7cb5ec" "color": "#7cb5ec",
"fontFamoly": 'Tahoma'
}, },
"extra": { "extra": {
"ring": { "ring": {
"ringWidth":30, "ringWidth": 30,
"activeOpacity": 0.5, "activeOpacity": 0.5,
"activeRadius": 10, "activeRadius": 10,
"offsetAngle": 0, "offsetAngle": 0,
@ -145,10 +169,10 @@ const cfu = {
}, },
}, },
}, },
"rose":{ "rose": {
"type": "rose", "type": "rose",
"color": color, "color": color,
"padding": [5,5,5,5], "padding": [5, 5, 5, 5],
"legend": { "legend": {
"show": true, "show": true,
"position": "left", "position": "left",
@ -168,7 +192,7 @@ const cfu = {
}, },
} }
}, },
"word":{ "word": {
"type": "word", "type": "word",
"color": color, "color": color,
"extra": { "extra": {
@ -178,10 +202,10 @@ const cfu = {
} }
} }
}, },
"funnel":{ "funnel": {
"type": "funnel", "type": "funnel",
"color": color, "color": color,
"padding": [15,15,0,15], "padding": [15, 15, 0, 15],
"extra": { "extra": {
"funnel": { "funnel": {
"activeOpacity": 0.3, "activeOpacity": 0.3,
@ -194,10 +218,10 @@ const cfu = {
}, },
} }
}, },
"map":{ "map": {
"type": "map", "type": "map",
"color": color, "color": color,
"padding": [0,0,0,0], "padding": [0, 0, 0, 0],
"dataLabel": true, "dataLabel": true,
"extra": { "extra": {
"map": { "map": {
@ -211,7 +235,7 @@ const cfu = {
}, },
} }
}, },
"arcbar":{ "arcbar": {
"type": "arcbar", "type": "arcbar",
"color": color, "color": color,
"title": { "title": {
@ -235,10 +259,10 @@ const cfu = {
} }
} }
}, },
"line":{ "line": {
"type": "line", "type": "line",
"color": color, "color": color,
"padding": [15,10,0,15], "padding": [15, 10, 0, 15],
"xAxis": { "xAxis": {
"disableGrid": true, "disableGrid": true,
}, },
@ -246,8 +270,7 @@ const cfu = {
"gridType": "dash", "gridType": "dash",
"dashLength": 2, "dashLength": 2,
}, },
"legend": { "legend": {},
},
"extra": { "extra": {
"line": { "line": {
"type": "straight", "type": "straight",
@ -256,26 +279,23 @@ const cfu = {
}, },
} }
}, },
"tline":{ "tline": {
"type": "line", "type": "line",
"color": color, "color": color,
"padding": [15,10,0,15], "padding": [15, 10, 0, 15],
"xAxis": { "xAxis": {
"disableGrid": false, "disableGrid": false,
"boundaryGap":"justify", "boundaryGap": "justify",
}, },
"yAxis": { "yAxis": {
"gridType": "dash", "gridType": "dash",
"dashLength": 2, "dashLength": 2,
"data":[ "data": [{
{ "min": 0,
"min":0, "max": 80
"max":80 }]
}
]
},
"legend": {
}, },
"legend": {},
"extra": { "extra": {
"line": { "line": {
"type": "curve", "type": "curve",
@ -284,26 +304,23 @@ const cfu = {
}, },
} }
}, },
"tarea":{ "tarea": {
"type": "area", "type": "area",
"color": color, "color": color,
"padding": [15,10,0,15], "padding": [15, 10, 0, 15],
"xAxis": { "xAxis": {
"disableGrid": true, "disableGrid": true,
"boundaryGap":"justify", "boundaryGap": "justify",
}, },
"yAxis": { "yAxis": {
"gridType": "dash", "gridType": "dash",
"dashLength": 2, "dashLength": 2,
"data":[ "data": [{
{ "min": 0,
"min":0, "max": 80
"max":80 }]
}
]
},
"legend": {
}, },
"legend": {},
"extra": { "extra": {
"area": { "area": {
"type": "curve", "type": "curve",
@ -315,18 +332,19 @@ const cfu = {
}, },
} }
}, },
"column":{ "column": {
"type": "column", "type": "column",
"color": color, "color": color,
"padding": [15,15,0,5], "padding": [15, 15, 0, 5],
"xAxis": { "xAxis": {
"disableGrid": true, "disableGrid": true,
}, },
"yAxis": { "yAxis": {
"data":[{"min":0}] "data": [{
}, "min": 0
"legend": { }]
}, },
"legend": {},
"extra": { "extra": {
"column": { "column": {
"type": "group", "type": "group",
@ -336,18 +354,19 @@ const cfu = {
}, },
} }
}, },
"mount":{ "mount": {
"type": "mount", "type": "mount",
"color": color, "color": color,
"padding": [15,15,0,5], "padding": [15, 15, 0, 5],
"xAxis": { "xAxis": {
"disableGrid": true, "disableGrid": true,
}, },
"yAxis": { "yAxis": {
"data":[{"min":0}] "data": [{
}, "min": 0
"legend": { }]
}, },
"legend": {},
"extra": { "extra": {
"mount": { "mount": {
"type": "mount", "type": "mount",
@ -355,20 +374,18 @@ const cfu = {
}, },
} }
}, },
"bar":{ "bar": {
"type": "bar", "type": "bar",
"color": color, "color": color,
"padding": [15,30,0,5], "padding": [15, 30, 0, 5],
"xAxis": { "xAxis": {
"boundaryGap":"justify", "boundaryGap": "justify",
"disableGrid":false, "disableGrid": false,
"min":0, "min": 0,
"axisLine":false "axisLine": false
},
"yAxis": {
},
"legend": {
}, },
"yAxis": {},
"legend": {},
"extra": { "extra": {
"bar": { "bar": {
"type": "group", "type": "group",
@ -380,10 +397,10 @@ const cfu = {
}, },
} }
}, },
"area":{ "area": {
"type": "area", "type": "area",
"color": color, "color": color,
"padding": [15,15,0,15], "padding": [15, 15, 0, 15],
"xAxis": { "xAxis": {
"disableGrid": true, "disableGrid": true,
}, },
@ -391,8 +408,7 @@ const cfu = {
"gridType": "dash", "gridType": "dash",
"dashLength": 2, "dashLength": 2,
}, },
"legend": { "legend": {},
},
"extra": { "extra": {
"area": { "area": {
"type": "straight", "type": "straight",
@ -404,10 +420,10 @@ const cfu = {
}, },
} }
}, },
"radar":{ "radar": {
"type": "radar", "type": "radar",
"color": color, "color": color,
"padding": [5,5,5,5], "padding": [5, 5, 5, 5],
"dataLabel": false, "dataLabel": false,
"legend": { "legend": {
"show": true, "show": true,
@ -425,7 +441,7 @@ const cfu = {
}, },
} }
}, },
"gauge":{ "gauge": {
"type": "gauge", "type": "gauge",
"color": color, "color": color,
"title": { "title": {
@ -465,10 +481,10 @@ const cfu = {
} }
} }
}, },
"candle":{ "candle": {
"type": "candle", "type": "candle",
"color": color, "color": color,
"padding": [15,15,0,15], "padding": [15, 15, 0, 15],
"enableScroll": true, "enableScroll": true,
"enableMarkLine": true, "enableMarkLine": true,
"dataLabel": false, "dataLabel": false,
@ -484,10 +500,8 @@ const cfu = {
"scrollColor": "#A6A6A6", "scrollColor": "#A6A6A6",
"scrollBackgroundColor": "#EFEBEF" "scrollBackgroundColor": "#EFEBEF"
}, },
"yAxis": { "yAxis": {},
}, "legend": {},
"legend": {
},
"extra": { "extra": {
"candle": { "candle": {
"color": { "color": {
@ -498,16 +512,15 @@ const cfu = {
}, },
"average": { "average": {
"show": true, "show": true,
"name": ["MA5","MA10","MA30"], "name": ["MA5", "MA10", "MA30"],
"day": [5,10,20], "day": [5, 10, 20],
"color": ["#1890ff","#2fc25b","#facc14"] "color": ["#1890ff", "#2fc25b", "#facc14"]
} }
}, },
"markLine": { "markLine": {
"type": "dash", "type": "dash",
"dashLength": 5, "dashLength": 5,
"data": [ "data": [{
{
"value": 2150, "value": 2150,
"lineColor": "#f04864", "lineColor": "#f04864",
"showLabel": true "showLabel": true
@ -521,10 +534,10 @@ const cfu = {
} }
} }
}, },
"mix":{ "mix": {
"type": "mix", "type": "mix",
"color": color, "color": color,
"padding": [15,15,0,15], "padding": [15, 15, 0, 15],
"xAxis": { "xAxis": {
"disableGrid": true, "disableGrid": true,
}, },
@ -539,8 +552,7 @@ const cfu = {
"showTitle": true, "showTitle": true,
"data": [] "data": []
}, },
"legend": { "legend": {},
},
"extra": { "extra": {
"mix": { "mix": {
"column": { "column": {
@ -549,54 +561,51 @@ const cfu = {
}, },
} }
}, },
"scatter":{ "scatter": {
"type": "scatter", "type": "scatter",
"color":color, "color": color,
"padding":[15,15,0,15], "padding": [15, 15, 0, 15],
"dataLabel":false, "dataLabel": false,
"xAxis": { "xAxis": {
"disableGrid": false, "disableGrid": false,
"gridType":"dash", "gridType": "dash",
"splitNumber":5, "splitNumber": 5,
"boundaryGap":"justify", "boundaryGap": "justify",
"min":0 "min": 0
}, },
"yAxis": { "yAxis": {
"disableGrid": false, "disableGrid": false,
"gridType":"dash", "gridType": "dash",
},
"legend": {
}, },
"legend": {},
"extra": { "extra": {
"scatter": { "scatter": {},
},
} }
}, },
"bubble":{ "bubble": {
"type": "bubble", "type": "bubble",
"color":color, "color": color,
"padding":[15,15,0,15], "padding": [15, 15, 0, 15],
"xAxis": { "xAxis": {
"disableGrid": false, "disableGrid": false,
"gridType":"dash", "gridType": "dash",
"splitNumber":5, "splitNumber": 5,
"boundaryGap":"justify", "boundaryGap": "justify",
"min":0, "min": 0,
"max":250 "max": 250
}, },
"yAxis": { "yAxis": {
"disableGrid": false, "disableGrid": false,
"gridType":"dash", "gridType": "dash",
"data":[{ "data": [{
"min":0, "min": 0,
"max":150 "max": 150
}] }]
}, },
"legend": { "legend": {},
},
"extra": { "extra": {
"bubble": { "bubble": {
"border":2, "border": 2,
"opacity": 0.5, "opacity": 0.5,
}, },
} }

941
uni_modules/qiun-data-charts/js_sdk/u-charts/u-charts.js

File diff suppressed because it is too large Load Diff

7542
uni_modules/qiun-data-charts/js_sdk/u-charts/u-charts.min.js vendored

File diff suppressed because one or more lines are too long

43
uni_modules/s-components/s-header/index.vue

@ -1,36 +1,20 @@
<template> <template>
<view class="container"> <view class="container">
<view class="fit-content"></view> <!-- <view class="fit-content"></view> -->
<view class="operation" v-if="isCustom"> <view class="operation" v-if="isCustom">
<slot></slot> <slot></slot>
</view> </view>
<view v-else> <view v-else>
<view class="operation" v-if="isTab"> <view class="operation" v-if="isTab">
<view
class="wd-flex wd-items-center"
style="gap: 10px; padding: 4px 12px"
>
<u--image <u--image
src="/static/favicon.png" src="/static/images/tabbers/logo.png"
width="24px" width="48rpx"
height="24px" height="48rpx"
mode="aspectFit" mode="aspectFit"
></u--image> ></u--image>
<text class="title">{{ title }}</text> <text class="title">{{ title }}</text>
</view> </view>
</view> </view>
<view
class="operation wd-flex wd-flex-row wd-items-center"
style="gap: 10px; padding: 4px 12px"
v-else
@tap="goback"
>
<view class="icon-box">
<u-icon name="arrow-left" size="12"></u-icon>
</view>
<text class="title wd-text-16 wd-font-800">{{ title }}</text>
</view>
</view>
</view> </view>
</template> </template>
@ -63,18 +47,23 @@ export default {
.container { .container {
background-color: #fff; background-color: #fff;
z-index: 1; z-index: 1;
.fit-content { height: 176rpx;
height: 6vh; position: relative;
}
.operation { .operation {
padding: 12px 4px; position: absolute;
bottom: 14rpx;
padding: 8rpx 24rpx;
display: flex;
flex-flow: row nowrap;
align-items: center;
gap: 8rpx;
.title { .title {
color: #000; color: #071437;
font-size: 16px; font-size: 32rpx;
font-weight: bold; font-weight: bold;
} }
.icon-box { .icon-box {
padding: 5px; padding: 10rpx;
border-radius: 50%; border-radius: 50%;
} }
} }

17
uni_modules/s-components/s-tabber/index.vue

@ -19,12 +19,12 @@
height="24" height="24"
v-else v-else
></u--image> ></u--image>
<view class="name"> <view :class="[tab.code == selected ? 'isActive' : 'name']">
{{ tab.name }} {{ tab.name }}
</view> </view>
</view> </view>
</view> </view>
<view :style="{ height: isFit ? '50rpx' : '24rpx' }"></view> <view :style="{ height: isFit ? '68rpx' : '24rpx' }"></view>
</view> </view>
</template> </template>
@ -81,7 +81,7 @@ export default {
}, },
computed: { computed: {
setClass() { setClass() {
return this.$props.isTab ? 'container' : 'noTab' return this.$props.isTab ? 'cs-tabber-container' : 'noTab'
}, },
isFit() { isFit() {
return uni.getStorageSync('SYSTEM').includes('iOS') return uni.getStorageSync('SYSTEM').includes('iOS')
@ -101,7 +101,7 @@ export default {
</script> </script>
<style lang="scss"> <style lang="scss">
.container { .cs-tabber-container {
background-color: #fff; background-color: #fff;
} }
.noTab { .noTab {
@ -109,10 +109,10 @@ export default {
.tabber { .tabber {
display: flex; display: flex;
flex-flow: row nowrap; flex-flow: row nowrap;
justify-content: space-around;
align-items: center; align-items: center;
justify-content: space-around;
border-top: 2rpx solid #f1f1f4; border-top: 2rpx solid #f1f1f4;
padding: 24rpx 64rpx 0px 64rpx; padding: 24rpx 48rpx 0px 48rpx;
.tab { .tab {
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
@ -123,6 +123,11 @@ export default {
} }
.isActive { .isActive {
color: #22c55e; color: #22c55e;
font-weight: 500;
}
.name {
color: #99a1b7;
font-weight: 400;
} }
} }
</style> </style>

142
uni_modules/uview-ui/components/u-count-to/u-count-to.vue

@ -3,14 +3,16 @@
class="u-count-num" class="u-count-num"
:style="{ :style="{
fontSize: $u.addUnit(fontSize), fontSize: $u.addUnit(fontSize),
fontWeight: bold ? 'bold' : 'normal', fontWeight: bold ? bold : 'normal',
color: color color: color
}" }"
>{{ displayValue }}</text> >
{{ displayValue }}
</text>
</template> </template>
<script> <script>
import props from './props.js'; import props from './props.js'
/** /**
* countTo 数字滚动 * countTo 数字滚动
* @description 该组件一般用于需要滚动数字到某一个值的场景目标要求是一个递增的值 * @description 该组件一般用于需要滚动数字到某一个值的场景目标要求是一个递增的值
@ -43,137 +45,157 @@ export default {
remaining: null, // remaining: null, //
rAF: null, rAF: null,
lastTime: 0 // lastTime: 0 //
}; }
}, },
mixins: [uni.$u.mpMixin, uni.$u.mixin,props], mixins: [uni.$u.mpMixin, uni.$u.mixin, props],
computed: { computed: {
countDown() { countDown() {
return this.startVal > this.endVal; return this.startVal > this.endVal
} }
}, },
watch: { watch: {
startVal() { startVal() {
this.autoplay && this.start(); this.autoplay && this.start()
}, },
endVal() { endVal() {
this.autoplay && this.start(); this.autoplay && this.start()
} }
}, },
mounted() { mounted() {
this.autoplay && this.start(); this.autoplay && this.start()
}, },
methods: { methods: {
easingFn(t, b, c, d) { easingFn(t, b, c, d) {
return (c * (-Math.pow(2, (-10 * t) / d) + 1) * 1024) / 1023 + b; return (c * (-Math.pow(2, (-10 * t) / d) + 1) * 1024) / 1023 + b
}, },
requestAnimationFrame(callback) { requestAnimationFrame(callback) {
const currTime = new Date().getTime(); const currTime = new Date().getTime()
// 使setTimteout60 // 使setTimteout60
const timeToCall = Math.max(0, 16 - (currTime - this.lastTime)); const timeToCall = Math.max(0, 16 - (currTime - this.lastTime))
const id = setTimeout(() => { const id = setTimeout(() => {
callback(currTime + timeToCall); callback(currTime + timeToCall)
}, timeToCall); }, timeToCall)
this.lastTime = currTime + timeToCall; this.lastTime = currTime + timeToCall
return id; return id
}, },
cancelAnimationFrame(id) { cancelAnimationFrame(id) {
clearTimeout(id); clearTimeout(id)
}, },
// //
start() { start() {
this.localStartVal = this.startVal; this.localStartVal = this.startVal
this.startTime = null; this.startTime = null
this.localDuration = this.duration; this.localDuration = this.duration
this.paused = false; this.paused = false
this.rAF = this.requestAnimationFrame(this.count); this.rAF = this.requestAnimationFrame(this.count)
}, },
// //
reStart() { reStart() {
if (this.paused) { if (this.paused) {
this.resume(); this.resume()
this.paused = false; this.paused = false
} else { } else {
this.stop(); this.stop()
this.paused = true; this.paused = true
} }
}, },
// //
stop() { stop() {
this.cancelAnimationFrame(this.rAF); this.cancelAnimationFrame(this.rAF)
}, },
// () // ()
resume() { resume() {
if (!this.remaining) return if (!this.remaining) return
this.startTime = 0; this.startTime = 0
this.localDuration = this.remaining; this.localDuration = this.remaining
this.localStartVal = this.printVal; this.localStartVal = this.printVal
this.requestAnimationFrame(this.count); this.requestAnimationFrame(this.count)
}, },
// //
reset() { reset() {
this.startTime = null; this.startTime = null
this.cancelAnimationFrame(this.rAF); this.cancelAnimationFrame(this.rAF)
this.displayValue = this.formatNumber(this.startVal); this.displayValue = this.formatNumber(this.startVal)
}, },
count(timestamp) { count(timestamp) {
if (!this.startTime) this.startTime = timestamp; if (!this.startTime) this.startTime = timestamp
this.timestamp = timestamp; this.timestamp = timestamp
const progress = timestamp - this.startTime; const progress = timestamp - this.startTime
this.remaining = this.localDuration - progress; this.remaining = this.localDuration - progress
if (this.useEasing) { if (this.useEasing) {
if (this.countDown) { if (this.countDown) {
this.printVal = this.localStartVal - this.easingFn(progress, 0, this.localStartVal - this.endVal, this.localDuration); this.printVal =
this.localStartVal -
this.easingFn(
progress,
0,
this.localStartVal - this.endVal,
this.localDuration
)
} else { } else {
this.printVal = this.easingFn(progress, this.localStartVal, this.endVal - this.localStartVal, this.localDuration); this.printVal = this.easingFn(
progress,
this.localStartVal,
this.endVal - this.localStartVal,
this.localDuration
)
} }
} else { } else {
if (this.countDown) { if (this.countDown) {
this.printVal = this.localStartVal - (this.localStartVal - this.endVal) * (progress / this.localDuration); this.printVal =
this.localStartVal -
(this.localStartVal - this.endVal) *
(progress / this.localDuration)
} else { } else {
this.printVal = this.localStartVal + (this.endVal - this.localStartVal) * (progress / this.localDuration); this.printVal =
this.localStartVal +
(this.endVal - this.localStartVal) *
(progress / this.localDuration)
} }
} }
if (this.countDown) { if (this.countDown) {
this.printVal = this.printVal < this.endVal ? this.endVal : this.printVal; this.printVal =
this.printVal < this.endVal ? this.endVal : this.printVal
} else { } else {
this.printVal = this.printVal > this.endVal ? this.endVal : this.printVal; this.printVal =
this.printVal > this.endVal ? this.endVal : this.printVal
} }
this.displayValue = this.formatNumber(this.printVal) || 0; this.displayValue = this.formatNumber(this.printVal) || 0
if (progress < this.localDuration) { if (progress < this.localDuration) {
this.rAF = this.requestAnimationFrame(this.count); this.rAF = this.requestAnimationFrame(this.count)
} else { } else {
this.$emit('end'); this.$emit('end')
} }
}, },
// //
isNumber(val) { isNumber(val) {
return !isNaN(parseFloat(val)); return !isNaN(parseFloat(val))
}, },
formatNumber(num) { formatNumber(num) {
// numNumbertoFixed // numNumbertoFixed
num = Number(num); num = Number(num)
num = num.toFixed(Number(this.decimals)); num = num.toFixed(Number(this.decimals))
num += ''; num += ''
const x = num.split('.'); const x = num.split('.')
let x1 = x[0]; let x1 = x[0]
const x2 = x.length > 1 ? this.decimal + x[1] : ''; const x2 = x.length > 1 ? this.decimal + x[1] : ''
const rgx = /(\d+)(\d{3})/; const rgx = /(\d+)(\d{3})/
if (this.separator && !this.isNumber(this.separator)) { if (this.separator && !this.isNumber(this.separator)) {
while (rgx.test(x1)) { while (rgx.test(x1)) {
x1 = x1.replace(rgx, '$1' + this.separator + '$2'); x1 = x1.replace(rgx, '$1' + this.separator + '$2')
} }
} }
return x1 + x2; return x1 + x2
}, },
destroyed() { destroyed() {
this.cancelAnimationFrame(this.rAF); this.cancelAnimationFrame(this.rAF)
} }
} }
}; }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
@import "../../libs/css/components.scss"; @import '../../libs/css/components.scss';
.u-count-num { .u-count-num {
/* #ifndef APP-NVUE */ /* #ifndef APP-NVUE */

419
uni_modules/uview-ui/components/u-upload/u-upload.vue

@ -1,6 +1,6 @@
<template> <template>
<view class="u-upload" :style="[$u.addStyle(customStyle)]"> <view class="u-upload" :style="[$u.addStyle(customStyle)]">
<view class="u-upload__wrap" > <view class="u-upload__wrap">
<template v-if="previewImage"> <template v-if="previewImage">
<view <view
class="u-upload__wrap__preview" class="u-upload__wrap__preview"
@ -13,21 +13,30 @@
:mode="imageMode" :mode="imageMode"
class="u-upload__wrap__preview__image" class="u-upload__wrap__preview__image"
@tap="onPreviewImage(item)" @tap="onPreviewImage(item)"
:style="[{ :style="[
{
width: $u.addUnit(width), width: $u.addUnit(width),
height: $u.addUnit(height) height: $u.addUnit(height)
}]" }
]"
/> />
<view <view v-else class="u-upload__wrap__preview__other">
v-else
class="u-upload__wrap__preview__other"
>
<u-icon <u-icon
color="#80CBF9" color="#80CBF9"
size="26" size="26"
:name="item.isVideo || (item.type && item.type === 'video') ? 'movie' : 'folder'" :name="
item.isVideo || (item.type && item.type === 'video')
? 'movie'
: 'folder'
"
></u-icon> ></u-icon>
<text class="u-upload__wrap__preview__other__text">{{item.isVideo || (item.type && item.type === 'video') ? '视频' : '文件'}}</text> <text class="u-upload__wrap__preview__other__text">
{{
item.isVideo || (item.type && item.type === 'video')
? '视频'
: '文件'
}}
</text>
</view> </view>
<view <view
class="u-upload__status" class="u-upload__status"
@ -47,28 +56,26 @@
v-else v-else
/> />
</view> </view>
<text <text v-if="item.message" class="u-upload__status__message">
v-if="item.message" {{ item.message }}
class="u-upload__status__message" </text>
>{{ item.message }}</text>
</view> </view>
<view <view
class="u-upload__deletable" class="u-upload__deletable"
v-if="item.status !== 'uploading' && (deletable || item.deletable)" v-if="
item.status !== 'uploading' && (deletable || item.deletable)
"
@tap.stop="deleteItem(index)" @tap.stop="deleteItem(index)"
> >
<view class="u-upload__deletable__icon"> <view class="u-upload__deletable__icon">
<u-icon <u-icon
name="close" name="close-circle-fill"
color="#ffffff" color="#f8285a"
size="10" size="48rpx"
></u-icon> ></u-icon>
</view> </view>
</view> </view>
<view <view class="u-upload__success" v-if="item.status === 'success'">
class="u-upload__success"
v-if="item.status === 'success'"
>
<!-- #ifdef APP-NVUE --> <!-- #ifdef APP-NVUE -->
<image <image
:src="successIcon" :src="successIcon"
@ -77,23 +84,15 @@
<!-- #endif --> <!-- #endif -->
<!-- #ifndef APP-NVUE --> <!-- #ifndef APP-NVUE -->
<view class="u-upload__success__icon"> <view class="u-upload__success__icon">
<u-icon <u-icon name="checkmark" color="#ffffff" size="12"></u-icon>
name="checkmark"
color="#ffffff"
size="12"
></u-icon>
</view> </view>
<!-- #endif --> <!-- #endif -->
</view> </view>
</view> </view>
</template> </template>
<template v-if="isInCount"> <template v-if="isInCount">
<view <view v-if="$slots.default || $slots.$default" @tap="chooseFile">
v-if="$slots.default || $slots.$default"
@tap="chooseFile"
>
<slot /> <slot />
</view> </view>
<view <view
@ -103,35 +102,33 @@
hover-stay-time="150" hover-stay-time="150"
@tap="chooseFile" @tap="chooseFile"
:class="[disabled && 'u-upload__button--disabled']" :class="[disabled && 'u-upload__button--disabled']"
:style="[{ :style="[
{
width: $u.addUnit(width), width: $u.addUnit(width),
height: $u.addUnit(height) height: $u.addUnit(height)
}]" }
]"
> >
<u-icon <u-icon
:name="uploadIcon" :name="uploadIcon"
size="26" size="26"
:color="uploadIconColor" :color="uploadIconColor"
></u-icon> ></u-icon>
<text <text v-if="uploadText" class="u-upload__button__text">
v-if="uploadText" {{ uploadText }}
class="u-upload__button__text" </text>
>{{ uploadText }}</text>
</view> </view>
</template> </template>
</view> </view>
</view> </view>
</template> </template>
<script> <script>
import { import { chooseFile } from './utils'
chooseFile import mixin from './mixin.js'
} from './utils'; import props from './props.js'
import mixin from './mixin.js';
import props from './props.js';
/** /**
* upload 上传 * upload 上传
* @description 该组件用于上传图片场景 * @description 该组件用于上传图片场景
* @tutorial https://uviewui.com/components/upload.html * @tutorial https://uviewui.com/components/upload.html
@ -164,16 +161,17 @@
* @event {Function} delete 删除图片 * @event {Function} delete 删除图片
* @example <u-upload :action="action" :fileList="fileList" ></u-upload> * @example <u-upload :action="action" :fileList="fileList" ></u-upload>
*/ */
export default { export default {
name: "u-upload", name: 'u-upload',
mixins: [uni.$u.mpMixin, uni.$u.mixin, mixin,props], mixins: [uni.$u.mpMixin, uni.$u.mixin, mixin, props],
data() { data() {
return { return {
// #ifdef APP-NVUE // #ifdef APP-NVUE
successIcon: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAKKADAAQAAAABAAAAKAAAAAB65masAAACP0lEQVRYCc3YXygsURwH8K/dpcWyG3LF5u/6/+dKVylSypuUl6uUPMifKMWL8oKEB1EUT1KeUPdR3uTNUsSLxb2udG/cbvInNuvf2rVnazZ/ZndmZ87snjM1Z+Z3zpzfp9+Z5mEAhlvjRtZgCKs+gnPAOcAkkMOR4jEHfItjDvgRxxSQD8cM0BuOCaAvXNCBQrigAsXgggYUiwsK0B9cwIH+4gIKlIILGFAqLiBAOTjFgXJxigJp4BQD0sIpAqSJow6kjSNAFTnRaHJwLenD6Mud52VQAcrBfTd2oyq+HtGaGGWAcnAVcXWoM3bCZrdi+ncPfaAcXE5UKVpdW/vitGPqqAtn98d0gXJwX7Qp6MmegUYVhvmTIezdmHlxJCjpHRTCFerLkRRu4k0aqdajN3sWOo0BK//msHa+xDuPC/oNFMKRhTtM4xjIX0SCNpXL4+7VIaHuyiWEp2L7ahWLf8fejfPdqPmC3mJicORZUp1CQzm+GiphvljGk+PBvWRbxii+xVTj5M6CiZ/tsDufvaXyxEUDxeLIyvu3m0iOyEFWVAkydcVYdyFrE9tQk9iMq6f/GNlvwt3LjQfh60LUrw9/cFyyMJUW/XkLSNMV4Mi6C5ML+ui4x5ClAX9sB9w0wV6wglJwJCv5fOxcr6EstgbGiEw4XcfUry4cWrcEUW8n+ARKxXEJHhw2WG43UKSvwI/TSZgvl7kh0b3XLZaLEy0QmMgLZAVH7J+ALOE+AVnDvQOyiPMAWcW5gSzjCPAV+78S5WE0GrQAAAAASUVORK5CYII=', successIcon:
'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAKKADAAQAAAABAAAAKAAAAAB65masAAACP0lEQVRYCc3YXygsURwH8K/dpcWyG3LF5u/6/+dKVylSypuUl6uUPMifKMWL8oKEB1EUT1KeUPdR3uTNUsSLxb2udG/cbvInNuvf2rVnazZ/ZndmZ87snjM1Z+Z3zpzfp9+Z5mEAhlvjRtZgCKs+gnPAOcAkkMOR4jEHfItjDvgRxxSQD8cM0BuOCaAvXNCBQrigAsXgggYUiwsK0B9cwIH+4gIKlIILGFAqLiBAOTjFgXJxigJp4BQD0sIpAqSJow6kjSNAFTnRaHJwLenD6Mud52VQAcrBfTd2oyq+HtGaGGWAcnAVcXWoM3bCZrdi+ncPfaAcXE5UKVpdW/vitGPqqAtn98d0gXJwX7Qp6MmegUYVhvmTIezdmHlxJCjpHRTCFerLkRRu4k0aqdajN3sWOo0BK//msHa+xDuPC/oNFMKRhTtM4xjIX0SCNpXL4+7VIaHuyiWEp2L7ahWLf8fejfPdqPmC3mJicORZUp1CQzm+GiphvljGk+PBvWRbxii+xVTj5M6CiZ/tsDufvaXyxEUDxeLIyvu3m0iOyEFWVAkydcVYdyFrE9tQk9iMq6f/GNlvwt3LjQfh60LUrw9/cFyyMJUW/XkLSNMV4Mi6C5ML+ui4x5ClAX9sB9w0wV6wglJwJCv5fOxcr6EstgbGiEw4XcfUry4cWrcEUW8n+ARKxXEJHhw2WG43UKSvwI/TSZgvl7kh0b3XLZaLEy0QmMgLZAVH7J+ALOE+AVnDvQOyiPMAWcW5gSzjCPAV+78S5WE0GrQAAAAASUVORK5CYII=',
// #endif // #endif
lists: [], lists: [],
isInCount: true, isInCount: true
} }
}, },
watch: { watch: {
@ -183,153 +181,172 @@
handler() { handler() {
this.formatFileList() this.formatFileList()
} }
}, }
}, },
methods: { methods: {
formatFileList() { formatFileList() {
const { const { fileList = [], maxCount } = this
fileList = [], maxCount const lists = fileList.map(item =>
} = this;
const lists = fileList.map((item) =>
Object.assign(Object.assign({}, item), { Object.assign(Object.assign({}, item), {
// item.urlblobvideoimageaccept // item.urlblobvideoimageaccept
isImage: this.accept === 'image' || uni.$u.test.image(item.url || item.thumb), isImage:
isVideo: this.accept === 'video' || uni.$u.test.video(item.url || item.thumb), this.accept === 'image' ||
deletable: typeof(item.deletable) === 'boolean' ? item.deletable : this.deletable, uni.$u.test.image(item.url || item.thumb),
isVideo:
this.accept === 'video' ||
uni.$u.test.video(item.url || item.thumb),
deletable:
typeof item.deletable === 'boolean'
? item.deletable
: this.deletable
}) })
); )
this.lists = lists this.lists = lists
this.isInCount = lists.length < maxCount this.isInCount = lists.length < maxCount
}, },
chooseFile() { chooseFile() {
const { const { maxCount, multiple, lists, disabled } = this
maxCount, if (disabled) return
multiple,
lists,
disabled
} = this;
if (disabled) return;
// //
let capture; let capture
try { try {
capture = uni.$u.test.array(this.capture) ? this.capture : this.capture.split(','); capture = uni.$u.test.array(this.capture)
}catch(e) { ? this.capture
capture = []; : this.capture.split(',')
} catch (e) {
capture = []
} }
chooseFile( chooseFile(
Object.assign({ Object.assign(
{
accept: this.accept, accept: this.accept,
multiple: this.multiple, multiple: this.multiple,
capture: capture, capture: capture,
compressed: this.compressed, compressed: this.compressed,
maxDuration: this.maxDuration, maxDuration: this.maxDuration,
sizeType: this.sizeType, sizeType: this.sizeType,
camera: this.camera, camera: this.camera
}, { },
maxCount: maxCount - lists.length, {
}) maxCount: maxCount - lists.length
}
)
) )
.then((res) => { .then(res => {
this.onBeforeRead(multiple ? res : res[0]); this.onBeforeRead(multiple ? res : res[0])
})
.catch(error => {
this.$emit('error', error)
}) })
.catch((error) => {
this.$emit('error', error);
});
}, },
// //
onBeforeRead(file) { onBeforeRead(file) {
const { const { beforeRead, useBeforeRead } = this
beforeRead,
useBeforeRead,
} = this;
let res = true let res = true
// beforeRead // beforeRead
if (uni.$u.test.func(beforeRead)) { if (uni.$u.test.func(beforeRead)) {
// //
res = beforeRead(file, this.getDetail()); res = beforeRead(file, this.getDetail())
} }
if (useBeforeRead) { if (useBeforeRead) {
res = new Promise((resolve, reject) => { res = new Promise((resolve, reject) => {
this.$emit( this.$emit(
'beforeRead', 'beforeRead',
Object.assign(Object.assign({ Object.assign(
Object.assign(
{
file file
}, this.getDetail()), {
callback: (ok) => {
ok ? resolve() : reject();
}, },
this.getDetail()
),
{
callback: ok => {
ok ? resolve() : reject()
}
}
)
)
}) })
);
});
} }
if (!res) { if (!res) {
return; return
} }
if (uni.$u.test.promise(res)) { if (uni.$u.test.promise(res)) {
res.then((data) => this.onAfterRead(data || file)); res.then(data => this.onAfterRead(data || file))
} else { } else {
this.onAfterRead(file); this.onAfterRead(file)
} }
}, },
getDetail(index) { getDetail(index) {
return { return {
name: this.name, name: this.name,
index: index == null ? this.fileList.length : index, index: index == null ? this.fileList.length : index
}; }
}, },
onAfterRead(file) { onAfterRead(file) {
const { const { maxSize, afterRead } = this
maxSize, const oversize = Array.isArray(file)
afterRead ? file.some(item => item.size > maxSize)
} = this; : file.size > maxSize
const oversize = Array.isArray(file) ?
file.some((item) => item.size > maxSize) :
file.size > maxSize;
if (oversize) { if (oversize) {
this.$emit('oversize', Object.assign({ this.$emit(
'oversize',
Object.assign(
{
file file
}, this.getDetail())); },
return; this.getDetail()
)
)
return
} }
if (typeof afterRead === 'function') { if (typeof afterRead === 'function') {
afterRead(file, this.getDetail()); afterRead(file, this.getDetail())
} }
this.$emit('afterRead', Object.assign({ this.$emit(
'afterRead',
Object.assign(
{
file file
}, this.getDetail())); },
this.getDetail()
)
)
}, },
deleteItem(index) { deleteItem(index) {
this.$emit( this.$emit(
'delete', 'delete',
Object.assign(Object.assign({}, this.getDetail(index)), { Object.assign(Object.assign({}, this.getDetail(index)), {
file: this.fileList[index], file: this.fileList[index]
}) })
); )
}, },
// //
onPreviewImage(item) { onPreviewImage(item) {
if (!item.isImage || !this.previewFullImage) return if (!item.isImage || !this.previewFullImage) return
uni.previewImage({ uni.previewImage({
// filteritemfilterurl // filteritemfilterurl
urls: this.lists.filter((item) => this.accept === 'image' || uni.$u.test.image(item.url || item.thumb)).map((item) => item.url || item.thumb), urls: this.lists
.filter(
item =>
this.accept === 'image' ||
uni.$u.test.image(item.url || item.thumb)
)
.map(item => item.url || item.thumb),
current: item.url || item.thumb, current: item.url || item.thumb,
fail() { fail() {
uni.$u.toast('预览图片失败') uni.$u.toast('预览图片失败')
}, }
}); })
}, },
onPreviewVideo(event) { onPreviewVideo(event) {
if (!this.data.previewFullImage) return; if (!this.data.previewFullImage) return
const { const { index } = event.currentTarget.dataset
index const { lists } = this.data
} = event.currentTarget.dataset;
const {
lists
} = this.data;
wx.previewMedia({ wx.previewMedia({
sources: lists sources: lists
.filter((item) => isVideoFile(item)) .filter(item => isVideoFile(item))
.map((item) => .map(item =>
Object.assign(Object.assign({}, item), { Object.assign(Object.assign({}, item), {
type: 'video' type: 'video'
}) })
@ -337,96 +354,94 @@
current: index, current: index,
fail() { fail() {
uni.$u.toast('预览视频失败') uni.$u.toast('预览视频失败')
}, }
}); })
}, },
onClickPreview(event) { onClickPreview(event) {
const { const { index } = event.currentTarget.dataset
index const item = this.data.lists[index]
} = event.currentTarget.dataset;
const item = this.data.lists[index];
this.$emit( this.$emit(
'clickPreview', 'clickPreview',
Object.assign(Object.assign({}, item), this.getDetail(index)) Object.assign(Object.assign({}, item), this.getDetail(index))
); )
}
} }
} }
}
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
@import '../../libs/css/components.scss'; @import '../../libs/css/components.scss';
$u-upload-preview-border-radius: 2px !default; $u-upload-preview-border-radius: 2px !default;
$u-upload-preview-margin: 0 8px 8px 0 !default; $u-upload-preview-margin: 0 8px 8px 0 !default;
$u-upload-image-width:80px !default; $u-upload-image-width: 80px !default;
$u-upload-image-height:$u-upload-image-width; $u-upload-image-height: $u-upload-image-width;
$u-upload-other-bgColor: rgb(242, 242, 242) !default; $u-upload-other-bgColor: rgb(242, 242, 242) !default;
$u-upload-other-flex:1 !default; $u-upload-other-flex: 1 !default;
$u-upload-text-font-size:11px !default; $u-upload-text-font-size: 11px !default;
$u-upload-text-color:$u-tips-color !default; $u-upload-text-color: $u-tips-color !default;
$u-upload-text-margin-top:2px !default; $u-upload-text-margin-top: 2px !default;
$u-upload-deletable-right:0 !default; $u-upload-deletable-right: 0 !default;
$u-upload-deletable-top:0 !default; $u-upload-deletable-top: 0 !default;
$u-upload-deletable-bgColor:rgb(55, 55, 55) !default; $u-upload-deletable-bgColor: rgb(55, 55, 55) !default;
$u-upload-deletable-height:14px !default; $u-upload-deletable-height: 14px !default;
$u-upload-deletable-width:$u-upload-deletable-height; $u-upload-deletable-width: $u-upload-deletable-height;
$u-upload-deletable-boder-bottom-left-radius:100px !default; $u-upload-deletable-boder-bottom-left-radius: 100px !default;
$u-upload-deletable-zIndex:3 !default; $u-upload-deletable-zIndex: 3 !default;
$u-upload-success-bottom:0 !default; $u-upload-success-bottom: 0 !default;
$u-upload-success-right:0 !default; $u-upload-success-right: 0 !default;
$u-upload-success-border-style:solid !default; $u-upload-success-border-style: solid !default;
$u-upload-success-border-top-color:transparent !default; $u-upload-success-border-top-color: transparent !default;
$u-upload-success-border-left-color:transparent !default; $u-upload-success-border-left-color: transparent !default;
$u-upload-success-border-bottom-color: $u-success !default; $u-upload-success-border-bottom-color: $u-success !default;
$u-upload-success-border-right-color:$u-upload-success-border-bottom-color; $u-upload-success-border-right-color: $u-upload-success-border-bottom-color;
$u-upload-success-border-width:9px !default; $u-upload-success-border-width: 9px !default;
$u-upload-icon-top:0px !default; $u-upload-icon-top: 0px !default;
$u-upload-icon-right:0px !default; $u-upload-icon-right: 0px !default;
$u-upload-icon-h5-top:1px !default; $u-upload-icon-h5-top: 1px !default;
$u-upload-icon-h5-right:0 !default; $u-upload-icon-h5-right: 0 !default;
$u-upload-icon-width:16px !default; $u-upload-icon-width: 16px !default;
$u-upload-icon-height:$u-upload-icon-width; $u-upload-icon-height: $u-upload-icon-width;
$u-upload-success-icon-bottom:-10px !default; $u-upload-success-icon-bottom: -10px !default;
$u-upload-success-icon-right:-10px !default; $u-upload-success-icon-right: -10px !default;
$u-upload-status-right:0 !default; $u-upload-status-right: 0 !default;
$u-upload-status-left:0 !default; $u-upload-status-left: 0 !default;
$u-upload-status-bottom:0 !default; $u-upload-status-bottom: 0 !default;
$u-upload-status-top:0 !default; $u-upload-status-top: 0 !default;
$u-upload-status-bgColor:rgba(0, 0, 0, 0.5) !default; $u-upload-status-bgColor: rgba(0, 0, 0, 0.5) !default;
$u-upload-status-icon-Zindex:1 !default; $u-upload-status-icon-Zindex: 1 !default;
$u-upload-message-font-size:12px !default; $u-upload-message-font-size: 12px !default;
$u-upload-message-color:#FFFFFF !default; $u-upload-message-color: #ffffff !default;
$u-upload-message-margin-top:5px !default; $u-upload-message-margin-top: 5px !default;
$u-upload-button-width:80px !default; $u-upload-button-width: 80px !default;
$u-upload-button-height:$u-upload-button-width; $u-upload-button-height: $u-upload-button-width;
$u-upload-button-bgColor:rgb(244, 245, 247) !default; $u-upload-button-bgColor: rgb(244, 245, 247) !default;
$u-upload-button-border-radius:2px !default; $u-upload-button-border-radius: 2px !default;
$u-upload-botton-margin: 0 8px 8px 0 !default; $u-upload-botton-margin: 0 8px 8px 0 !default;
$u-upload-text-font-size:11px !default; $u-upload-text-font-size: 11px !default;
$u-upload-text-color:$u-tips-color !default; $u-upload-text-color: $u-tips-color !default;
$u-upload-text-margin-top: 2px !default; $u-upload-text-margin-top: 2px !default;
$u-upload-hover-bgColor:rgb(230, 231, 233) !default; $u-upload-hover-bgColor: rgb(230, 231, 233) !default;
$u-upload-disabled-opacity:.5 !default; $u-upload-disabled-opacity: 0.5 !default;
.u-upload { .u-upload {
@include flex(column); @include flex(column);
flex: 1; flex: 1;
&__wrap { &__wrap {
@include flex; @include flex;
flex-wrap: wrap; flex-wrap: wrap;
flex: row;
flex: 1; flex: 1;
gap: 30rpx;
&__preview { &__preview {
border-radius: $u-upload-preview-border-radius; border-radius: 16rpx;
margin: $u-upload-preview-margin;
position: relative; position: relative;
overflow: hidden;
@include flex; @include flex;
&__image { &__image {
width: $u-upload-image-width; width: $u-upload-image-width;
height: $u-upload-image-height; height: $u-upload-image-height;
border-radius: 16rpx;
} }
&__other { &__other {
@ -449,30 +464,27 @@
&__deletable { &__deletable {
position: absolute; position: absolute;
top: $u-upload-deletable-top; // top: $u-upload-deletable-top;
right: $u-upload-deletable-right; // right: $u-upload-deletable-right;
background-color: $u-upload-deletable-bgColor; // background-color: $u-upload-deletable-bgColor;
height: $u-upload-deletable-height; top: 0;
width: $u-upload-deletable-width; right: 0;
border-radius: 999px;
transform: translateX(50%) translateY(-50%);
// height: $u-upload-deletable-height;
// width: $u-upload-deletable-width;
@include flex; @include flex;
border-bottom-left-radius: $u-upload-deletable-boder-bottom-left-radius; // border-bottom-left-radius: $u-upload-deletable-boder-bottom-left-radius;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
z-index: $u-upload-deletable-zIndex; z-index: $u-upload-deletable-zIndex;
&__icon { &__icon {
position: absolute;
transform: scale(0.7); transform: scale(0.7);
top: $u-upload-icon-top;
right: $u-upload-icon-right;
/* #ifdef H5 */
top: $u-upload-icon-h5-top;
right: $u-upload-icon-h5-right;
/* #endif */
} }
} }
&__success { &__success {
opacity: 0;
position: absolute; position: absolute;
bottom: $u-upload-success-bottom; bottom: $u-upload-success-bottom;
right: $u-upload-success-right; right: $u-upload-success-right;
@ -534,8 +546,9 @@
width: $u-upload-button-width; width: $u-upload-button-width;
height: $u-upload-button-height; height: $u-upload-button-height;
background-color: $u-upload-button-bgColor; background-color: $u-upload-button-bgColor;
border-radius: $u-upload-button-border-radius; // border-radius: $u-upload-button-border-radius;
margin: $u-upload-botton-margin; margin: $u-upload-botton-margin;
border-radius: 16rpx;
/* #ifndef APP-NVUE */ /* #ifndef APP-NVUE */
box-sizing: border-box; box-sizing: border-box;
/* #endif */ /* #endif */
@ -554,5 +567,5 @@
opacity: $u-upload-disabled-opacity; opacity: $u-upload-disabled-opacity;
} }
} }
} }
</style> </style>

1
utils/request.js

@ -60,7 +60,6 @@ const request = config => {
}) })
}, 500) }, 500)
} }
reject('无效的会话,或者会话已过期,请重新登录。') reject('无效的会话,或者会话已过期,请重新登录。')
} else if (code === 500) { } else if (code === 500) {
toast(msg) toast(msg)

33
wxcomponents/vant/dropdown-item/index.wxss

@ -1 +1,32 @@
@import '../common/index.wxss';.van-dropdown-item{left:0;overflow:hidden;position:fixed;right:0}.van-dropdown-item__option{text-align:left}.van-dropdown-item__option--active .van-dropdown-item__icon,.van-dropdown-item__option--active .van-dropdown-item__title{color:var(--dropdown-menu-option-active-color,#ee0a24)}.van-dropdown-item--up{top:0}.van-dropdown-item--down{bottom:0}.van-dropdown-item__icon{display:block;line-height:inherit} @import '../common/index.wxss';
.van-dropdown-item {
left: 0;
overflow: hidden;
position: fixed;
right: 0
}
.van-dropdown-item__option {
text-align: left
}
.van-dropdown-item__option--active .van-dropdown-item__icon,
.van-dropdown-item__option--active .van-dropdown-item__title {
color: var(--dropdown-menu-option-active-color, #ee0a24)
}
.van-dropdown-item--up {
top: 0
}
.van-dropdown-item--down {
/* bottom: 48rpx */
bottom: 0;
margin-bottom: 48rpx;
}
.van-dropdown-item__icon {
display: block;
line-height: inherit
}

1
wxcomponents/vant/dropdown-menu/index.wxml

@ -14,6 +14,7 @@
style="{{ item.showPopup ? 'color:' + activeColor : '' }}" style="{{ item.showPopup ? 'color:' + activeColor : '' }}"
> >
<view class="van-ellipsis"> <view class="van-ellipsis">
<text class='preffix'>{{item.title}}</text>
<text class="select-title" style="color:{{computed.setTitleColor(item)}}"> {{ computed.displayTitle(item) }}</text> <text class="select-title" style="color:{{computed.setTitleColor(item)}}"> {{ computed.displayTitle(item) }}</text>
<text class='arrow' style="border-color:#17c653"></text> <text class='arrow' style="border-color:#17c653"></text>
</view> </view>

7
wxcomponents/vant/dropdown-menu/index.wxs

@ -1,9 +1,8 @@
/* eslint-disable */ /* eslint-disable */
function displayTitle(item) { function displayTitle(item) {
if (item.title) { // if (!item.value) {
return item.title; // return item.title;
} // }
var match = item.options.filter(function(option) { var match = item.options.filter(function(option) {
return option.value === item.value; return option.value === item.value;
}); });

8
wxcomponents/vant/dropdown-menu/index.wxss

@ -1,8 +1,6 @@
@import '../common/index.wxss'; @import '../common/index.wxss';
.van-dropdown-menu { .van-dropdown-menu {
background-color: var(--dropdown-menu-background-color, #fff);
box-shadow: var(--dropdown-menu-box-shadow, 0 2px 12px hsla(210, 1%, 40%, .12));
display: flex; display: flex;
height: var(--dropdown-menu-height, 50px); height: var(--dropdown-menu-height, 50px);
-webkit-user-select: none; -webkit-user-select: none;
@ -61,15 +59,15 @@
flex: row nowrap; flex: row nowrap;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
gap: 4px; gap: 8rpx;
} }
.select-title { .select-title {
font-weight: 600; font-weight: bold;
transition: .2s all; transition: .2s all;
color: #071437;
} }
.van-dropdown-menu__title .arrow { .van-dropdown-menu__title .arrow {
border-style: solid; border-style: solid;
border-color: #000; border-color: #000;

Loading…
Cancel
Save