You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

227 lines
4.9 KiB

2 months ago
<template>
<view class="allApp-v">
<view class="usualList">
<view class="caption u-m-b-20">常用功能<text class="tip">最多只能添加11个</text></view>
<view class="u-flex u-flex-wrap">
<view class="item u-flex-col u-col-center" v-for="(item,i) in usualList" :key="i">
<text class="u-font-40 item-icon" :class="item.icon"
:style="{'background':item.iconBackground||'#008cff'}" />
<text class="u-font-24 u-line-1 item-text">{{item.fullName}}</text>
</view>
</view>
</view>
<!-- <view class="caption">全部功能</view> -->
<view class="tabs_box">
<u-sticky>
<view class="sticky">
<u-tabs :list="allList" :current="current" @change="change" name='fullName'
inactive-color="#303133">
</u-tabs>
</view>
</u-sticky>
</view>
<view class="allList">
<view class="u-m-t-20" v-for="(item,i) in allList" :key="i">
<template v-if="i==current">
<view v-for="(child,ii) in item.children" class="u-flex childList-item u-p-b-28" :key="ii">
<text class="u-font-40 item-icon" :class="child.icon"
:style="{'background':child.iconBackground||'#008cff'}" />
<text class="u-font-32 item-text u-m-l-28 u-m-r-28 u-line-2">{{child.fullName}}</text>
<view class="btnBox">
<u-button :custom-style="customStyle" @click="handelAdd(child)" v-if="!child.isData">
</u-button>
<u-button :custom-style="customStyle" type="error" @click="handelDel(child)" v-else>
</u-button>
</view>
</view>
</template>
</view>
</view>
</view>
</template>
<script>
import {
FlowEngineListAll
} from '@/api/workFlow/flowEngine'
import {
getDataList,
getUsualList,
addUsual,
delUsual
} from '@/api/apply/apply.js'
export default {
data() {
return {
current: 0,
usualList: [],
allList: [],
customStyle: {
width: "128rpx",
fontSize: "24rpx",
height: '60rpx'
},
type: '2'
}
},
methods: {
init() {
uni.showLoading({
title: '加载中'
});
this.getUsualList()
},
getUsualList() {
getUsualList(this.type).then(res => {
this.usualList = res.data.list.map(o => {
const objectData = o.objectData ? JSON.parse(o.objectData) : {}
return {
...o,
...objectData
}
})
})
this.getAllList()
},
getAllList() {
getDataList().then(res => {
uni.hideLoading()
let list = res.data.list
for (let i = 0; i < list.length; i++) {
let children = list[i].children
if (Array.isArray(children) && children.length) {
for (let j = 0; j < children.length; j++) {
let iconBackground = '',
moduleId = ''
if (children[j].propertyJson) {
let propertyJson = JSON.parse(children[j].propertyJson)
iconBackground = propertyJson.iconBackgroundColor || ''
moduleId = propertyJson.moduleId || ''
}
this.$set(children[j], 'iconBackground', iconBackground)
this.$set(children[j], 'moduleId', moduleId)
}
}
}
this.allList = list
})
},
handelAdd(item) {
if (this.usualList.length >= 11) {
uni.showToast({
title: '最多只能添加11个常用流程',
icon: 'none'
})
return
}
const query = {
objectType: this.type,
objectId: item.id,
objectData: JSON.stringify(item)
}
addUsual(query).then(res => {
this.usualList.push(item)
item.isData = true
uni.$emit('updateUsualList')
uni.showToast({
title: res.msg
})
})
},
handelDel(item) {
delUsual(item.id).then(res => {
this.usualList = this.usualList.filter(o => o.id !== item.id)
item.isData = false
uni.$emit('updateUsualList')
uni.showToast({
title: res.msg
})
})
},
change(index) {
this.current = index;
}
}
}
</script>
<style lang="scss">
.allApp-v {
.caption {
font-size: 36rpx;
line-height: 80rpx;
padding: 0 32rpx;
.tip {
margin-left: 20rpx;
font-size: 24rpx;
color: #c6c6c6;
}
}
.tabs_box {
width: 100%;
//#ifdef MP-WEIXIN
.sticky {
width: 750rpx;
height: 120rpx;
color: #fff;
padding-right: 32rpx;
}
//#endif
}
.usualList {
margin-bottom: 20rpx;
.item {
margin-bottom: 32rpx;
width: 25%;
.item-icon {
width: 88rpx;
height: 88rpx;
margin-bottom: 8rpx;
line-height: 88rpx;
text-align: center;
border-radius: 20rpx;
color: #fff;
font-size: 56rpx;
}
.item-text {
width: 100%;
text-align: center;
padding: 0 16rpx;
}
}
}
.allList {
padding: 0 32rpx;
.childList-item {
align-items: center;
.item-text {
width: calc(100% - 216rpx);
}
.item-icon {
width: 88rpx;
height: 88rpx;
line-height: 88rpx;
text-align: center;
border-radius: 20rpx;
color: #FFFFFF;
flex-shrink: 0;
font-size: 56rpx;
}
}
}
}
</style>