|
@@ -1,71 +1,212 @@
|
|
|
<template>
|
|
|
- <view>
|
|
|
+ <view class="container">
|
|
|
+ <!-- 顶部自定义导航栏 -->
|
|
|
<cu-custom bgColor="bg-blue">
|
|
|
<block slot="content"> 工作台</block>
|
|
|
</cu-custom>
|
|
|
- <swiper class="screen-swiper square-dot bg-blue" :indicator-dots="true" :circular="true"
|
|
|
- :autoplay="true" interval="2000" duration="500">
|
|
|
- <swiper-item v-for="(item,index) in swiperList" :key="index">
|
|
|
- <image :src="item.url" mode="aspectFill" v-if="item.type=='image'"></image>
|
|
|
- <video :src="item.url" autoplay loop muted :show-play-btn="false" :controls="false" objectFit="cover" v-if="item.type=='video'"></video>
|
|
|
- </swiper-item>
|
|
|
- </swiper>
|
|
|
+
|
|
|
+ <!-- 信息区域 -->
|
|
|
+ <view class="col-1 no-border fixed" style="margin:5px 10px 5px 10px;">
|
|
|
+ <view style="height:130px;border-radius: 15px;background-image: linear-gradient(to right, #3cb54b 0%, #88c546 100%);">
|
|
|
+ <view class="col-1 no-border fixed" style="padding:20px 40px 20px 40px;">
|
|
|
+ <!-- 个人信息 -->
|
|
|
+ <view class="ellipsis-description" style="font-size: 16px">
|
|
|
+ <span style="padding:5px;display: inline-block; width: 80px">
|
|
|
+ <span style="font-weight: bold">过磅专员</span>
|
|
|
+ </span>
|
|
|
+ <span style="padding-left: 30px;display: inline-block;">
|
|
|
+ <span class="cuIcon-locationfill" style="color: #FFFFFF;margin-right: 5px;"></span>
|
|
|
+ <span style="color: #FFFFFF;font-weight: bold">前进村建筑垃圾清理处</span>
|
|
|
+ </span>
|
|
|
+ </view>
|
|
|
+ <view class="ellipsis-description" style="font-size: 16px">
|
|
|
+ <span style="padding:5px;display: inline-block; width: 80px">
|
|
|
+ <span style="color: #FFFFFF;font-weight: bold">姓名</span>
|
|
|
+ </span>
|
|
|
+ <span style="padding-left: 30px;display: inline-block;">
|
|
|
+ <span style="color: #FFFFFF;font-weight: bold">张红旗</span>
|
|
|
+ </span>
|
|
|
+ </view>
|
|
|
+ <view class="ellipsis-description" style="font-size: 16px">
|
|
|
+ <span style="padding:5px;display: inline-block; width: 80px">
|
|
|
+ <span style="color: #FFFFFF;font-weight: bold">联系方式</span>
|
|
|
+ </span>
|
|
|
+ <span style="padding-left: 30px;display: inline-block;">
|
|
|
+ <span style="color: #FFFFFF;font-weight: bold">13900000001</span>
|
|
|
+ </span>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <!-- 功能按钮区域 -->
|
|
|
<view class="cu-list grid col-4 no-border fixed">
|
|
|
<view @tap="toTodoList" class="circle-button-box">
|
|
|
<view class="cuIcon-time text-blue circle-button font-size-35"></view>
|
|
|
<text>待办事项</text>
|
|
|
</view>
|
|
|
<view @tap="toHistoryList" class="circle-button-box">
|
|
|
- <view class="cuIcon-roundcheck text-blue circle-button font-size-35"></view>
|
|
|
+ <view class="cuIcon-roundcheck text-blue circle-button font-size-35"></view>
|
|
|
<text>已办事项</text>
|
|
|
</view>
|
|
|
<view @tap="toApplyList" class="circle-button-box">
|
|
|
- <view class="cuIcon-peoplelist text-blue circle-button font-size-35"></view>
|
|
|
+ <view class="cuIcon-peoplelist text-blue circle-button font-size-35"></view>
|
|
|
<text>我发起的</text>
|
|
|
</view>
|
|
|
<view @tap="toFlowCopyList" class="circle-button-box">
|
|
|
- <view class="cuIcon-copy text-blue circle-button font-size-35"></view>
|
|
|
+ <view class="cuIcon-copy text-blue circle-button font-size-35"></view>
|
|
|
<text>抄送给我</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
+
|
|
|
+ <!-- 标签切换区域 -->
|
|
|
+ <view>
|
|
|
+ <u-subsection
|
|
|
+ :list="['待处理', '已处理']"
|
|
|
+ mode="button"
|
|
|
+ :fontSize="16"
|
|
|
+ :current="tabIndex"
|
|
|
+ @change="tabSelect"
|
|
|
+ ></u-subsection>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <!-- 过磅记录 -->
|
|
|
+ <view style="margin: 11px 28px;">
|
|
|
+ <view class="ellipsis-description" style="font-size: 20px">
|
|
|
+ <span style="margin-right: 10px;">
|
|
|
+ <span class="cuIcon-title" style="color: #f67e1f;margin-right: 5px;"></span>
|
|
|
+ <span style="font-weight: bold">过磅记录</span>
|
|
|
+ </span>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <!-- 可滚动内容区域 -->
|
|
|
<scroll-view scroll-y class="page">
|
|
|
- <template v-for="key in processMap.keys()">
|
|
|
- <view class="cu-bar bg-white solid-bottom margin-top">
|
|
|
- <view class="action">
|
|
|
- <text class=" text-orange font-b">{{key}}</text>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view class="cu-list grid col-4 no-border">
|
|
|
- <view class="circle-button-box" @click="start(act)" v-for="(act, index) in processMap.get(key)" :key="index">
|
|
|
- <view class="cuIcon-calendar bg-blue text-white circle-button font-size-35"></view>
|
|
|
- <text class="ellipsis-description">{{act.name}}</text>
|
|
|
- </view>
|
|
|
+ <!-- 其他可滚动内容 -->
|
|
|
+ <u-swipe-action>
|
|
|
+ <view v-for="(row, index) in dataList" :key="index">
|
|
|
+ <u-swipe-action-item @click="todo(row)" :key="row.id" :threshold="60" duration="500"
|
|
|
+ :options="[{ text: '办理', style: { backgroundColor: '#3c9cff' } }]">
|
|
|
+ <u-cell-group>
|
|
|
+ <u-cell @click="todo(row)">
|
|
|
+ <view slot="title" class="content" style="line-height: 1.5;">
|
|
|
+ <view class="text-bold text-grey">
|
|
|
+ <view class="ellipsis-description" style="font-size: 16px">
|
|
|
+ <span style="margin-right: 10px;">
|
|
|
+ <span class="cuIcon-timefill" style="color: #3c9cff;margin-right: 5px;"></span>
|
|
|
+ <span>08-20</span>
|
|
|
+ </span>
|
|
|
+ <span style="margin-right: 10px;">
|
|
|
+ <span class="cuIcon-locationfill" style="color: #f67e1f;margin-right: 5px;"></span>
|
|
|
+ <span>前进村</span>
|
|
|
+ </span>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="text-grey text-sm" style="font-size: 16px">
|
|
|
+ <div style="margin-right: 20px; float: left">
|
|
|
+ <u-tag-small text="进行中" plain shape="circle" type="error"></u-tag-small>
|
|
|
+ </div>
|
|
|
+ <div style="margin-right: 10px; float: left">
|
|
|
+ <span class="cuIcon-deliver" style="color: #d95141;margin-right: 5px;"></span>
|
|
|
+ <span>12.5km</span>
|
|
|
+ </div>
|
|
|
+ <div style="margin-right: 10px;">
|
|
|
+ <span class="cuIcon-deletefill" style="color: #38b64b;margin-right: 5px;"></span>
|
|
|
+ <span>2.2t</span>
|
|
|
+ </div>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view slot="right-icon" class="action">
|
|
|
+ <u-tag text="处理" plain bgColor="#38b64b" color="white" plainFill shape="circle" type="success" @click="todo(row)"></u-tag>
|
|
|
+ </view>
|
|
|
+ </u-cell>
|
|
|
+ </u-cell-group>
|
|
|
+ </u-swipe-action-item>
|
|
|
</view>
|
|
|
- </template>
|
|
|
+ </u-swipe-action>
|
|
|
|
|
|
- <u-gap height="80" bgColor="#fff"></u-gap>
|
|
|
+ <!-- 加载更多 -->
|
|
|
+ <u-loadmore :status="status" @loadmore="loadmore" :line="true" />
|
|
|
+ <u-back-top :scrollTop="0" mode="square"></u-back-top>
|
|
|
</scroll-view>
|
|
|
+
|
|
|
+ <!-- 页脚区域 -->
|
|
|
+ <view class="footer-div">
|
|
|
+ <u-button type="primary" text="创建工单" @click="openPatrolWorkOrderForm()"></u-button>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
+<style scoped>
|
|
|
+ .container {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ height: 100vh;
|
|
|
+ position: relative; /* 为 footer-div 提供定位上下文 */
|
|
|
+ }
|
|
|
+
|
|
|
+ .page {
|
|
|
+ flex: 1;
|
|
|
+ padding-bottom: 130px; /* 留出空间给 footer-div 和额外的 20px 间距 */
|
|
|
+ overflow-y: auto;
|
|
|
+ }
|
|
|
+
|
|
|
+ .footer-div {
|
|
|
+ height: 50px; /* 页脚高度 */
|
|
|
+ text-align: center;
|
|
|
+ line-height: 50px; /* 垂直居中内容 */
|
|
|
+ position: fixed; /* 固定在视口底部 */
|
|
|
+ bottom: 70px; /* 距离底部 100px */
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+</style>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
<script>
|
|
|
+ import userSelect from '@/components/user-select/user-select.vue'
|
|
|
+ import pick from 'lodash.pick'
|
|
|
import moment from 'moment'
|
|
|
import {mapState, mapMutations, mapActions} from 'vuex'
|
|
|
import actCategoryService from "@/api/flowable/actCategoryService"
|
|
|
import processService from "@/api/flowable/processService"
|
|
|
import taskService from "@/api/flowable/taskService"
|
|
|
+ import notifyService from "@/api/notify/notifyService";
|
|
|
+ import userService from "@/api/sys/userService"
|
|
|
+ import { EventBus } from '@/store/eventBus.js';
|
|
|
export default {
|
|
|
+ components:{
|
|
|
+ userSelect
|
|
|
+ },
|
|
|
data() {
|
|
|
+
|
|
|
return {
|
|
|
+ tabIndex: 0,
|
|
|
+ status: 'loadmore',
|
|
|
+ searchForm: {
|
|
|
+ title: ''
|
|
|
+ },
|
|
|
+ tablePage: {
|
|
|
+ pages: 0,
|
|
|
+ currentPage: 0,
|
|
|
+ pageSize: 10,
|
|
|
+ orders: [{ column: "a.create_time", asc: false }],
|
|
|
+ },
|
|
|
+ loading: false,
|
|
|
cardCur: 0,
|
|
|
dataList: [],
|
|
|
categoryList: [],
|
|
|
processMap: new Map(),
|
|
|
- swiperList: [{
|
|
|
+ swiperList: [/*{
|
|
|
id: 0,
|
|
|
type: 'image',
|
|
|
url: '/static/swiper/1.svg'
|
|
|
- }/*, {
|
|
|
+ }, {
|
|
|
id: 1,
|
|
|
type: 'image',
|
|
|
url: '/static/swiper/2.svg'
|
|
@@ -95,12 +236,20 @@
|
|
|
direction: ''
|
|
|
};
|
|
|
},
|
|
|
+ onLoad() {
|
|
|
+ console.log('onLoad')
|
|
|
+ this.loadmore()
|
|
|
+ },
|
|
|
computed: mapState({
|
|
|
- username: (state) => state.user.username
|
|
|
+ username: (state) => state.user.username,
|
|
|
+ userId: (state) => state.user.id
|
|
|
}),
|
|
|
- async mounted() {
|
|
|
-
|
|
|
- let res = await actCategoryService.treeData()
|
|
|
+ async mounted() {
|
|
|
+ this.loadmore()
|
|
|
+ //获取当前人对应的负责流程的信息
|
|
|
+
|
|
|
+
|
|
|
+ /*let res = await actCategoryService.treeData()
|
|
|
let data = await processService.list({current: 1, size: -1})
|
|
|
this.processMap = new Map()
|
|
|
res.forEach((item)=>{
|
|
@@ -115,110 +264,199 @@
|
|
|
this.processMap.set(item.category, [item])
|
|
|
}
|
|
|
})
|
|
|
-
|
|
|
+
|
|
|
for(let [key,value] of this.processMap){
|
|
|
console.log(key,value);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
+ }*/
|
|
|
+
|
|
|
+
|
|
|
},
|
|
|
created() {
|
|
|
if(!this.username) {
|
|
|
this.refreshUserInfo()
|
|
|
}
|
|
|
},
|
|
|
+
|
|
|
methods: {
|
|
|
- ...mapActions(['refreshUserInfo']),
|
|
|
+ tabSelect(index) {
|
|
|
+ this.tabIndex = index;
|
|
|
+ },
|
|
|
+ openPatrolWorkOrderForm () {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages/edt/PatrolWorkOrderForm',
|
|
|
+ //url: '/pages/test/mobile/TestMobileForm',
|
|
|
+ success: function(res) {
|
|
|
+ // 跳转成功后的处理
|
|
|
+ console.log('跳转成功');
|
|
|
+ },
|
|
|
+ fail: function(err) {
|
|
|
+ // 跳转失败后的处理
|
|
|
+ console.log('跳转失败', err);
|
|
|
+ },
|
|
|
+ complete: function() {
|
|
|
+ // 无论跳转成功还是失败都会执行
|
|
|
+ console.log('跳转完成');
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 跳转到详细页面
|
|
|
+ todo (row) {
|
|
|
+ taskService.getTaskDef({
|
|
|
+ taskId: row.task.id,
|
|
|
+ taskName: row.task.name,
|
|
|
+ taskDefKey: row.task.taskDefinitionKey,
|
|
|
+ procInsId: row.task.processInstanceId,
|
|
|
+ procDefId: row.task.processDefinitionId,
|
|
|
+ procDefKey: row.task.processDefKey,
|
|
|
+ status: row.status
|
|
|
+ }).then((data) => {
|
|
|
+ let query = {formTitle: `${row.vars.title}`, title: `审批【${row.task.name || ''}】`, ...pick(data, 'formType', 'formReadOnly', 'formUrl', 'procDefKey', 'taskDefKey', 'procInsId', 'procDefId', 'taskId', 'status', 'title', 'businessId')};
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages/workbench/task/TaskForm?flow='+JSON.stringify(query)
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 输入监听
|
|
|
+ inputWord(e){
|
|
|
+ this.searchTimer && clearTimeout(this.searchTimer)
|
|
|
+ this.searchTimer = setTimeout(()=>{
|
|
|
+ this.doSearch()
|
|
|
+ },300)
|
|
|
+ },
|
|
|
+ // 搜索
|
|
|
+ doSearch(){
|
|
|
+ this.dataList = [];
|
|
|
+ this.tablePage.currentPage = 0;
|
|
|
+ this.tablePage.pageSize = 10;
|
|
|
+ this.tablePage.pages = 0;
|
|
|
+ this.loadmore()
|
|
|
+ },
|
|
|
+ onReachBottom() {
|
|
|
+ this.loadmore()
|
|
|
+ },
|
|
|
+ loadmore() {
|
|
|
+ if(this.tablePage.currentPage!==0 && this.tablePage.pages <= this.tablePage.currentPage ) {
|
|
|
+ this.status = 'nomore';
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ this.tablePage.currentPage = ++ this.tablePage.currentPage;
|
|
|
+ //联网加载数据
|
|
|
+ this.status = 'loading';
|
|
|
+ taskService.todoList({
|
|
|
+ current: this.tablePage.currentPage,
|
|
|
+ size: this.tablePage.pageSize,
|
|
|
+ orders: this.tablePage.orders,
|
|
|
+ ...this.searchForm
|
|
|
+ }).then((data)=>{
|
|
|
+ //追加新数据
|
|
|
+ this.dataList=this.dataList.concat(data.records);
|
|
|
+ this.tablePage.pages = data.pages;
|
|
|
+ if(this.tablePage.pages <= this.tablePage.currentPage){
|
|
|
+ this.status = 'nomore'
|
|
|
+ } else {
|
|
|
+ this.status = 'loadmore'
|
|
|
+ }
|
|
|
+ })
|
|
|
+
|
|
|
+ notifyService.getUnreadCountByIsSelf({
|
|
|
+ isSelf: true,
|
|
|
+ ...this.searchForm
|
|
|
+ }).then((data)=>{
|
|
|
+ EventBus.$emit('dataFromMessage', data); // 触发事件,传递参数
|
|
|
+ })
|
|
|
+
|
|
|
+ },
|
|
|
+ ...mapActions(['refreshUserInfo']),
|
|
|
toApplyList (mail) {
|
|
|
uni.navigateTo({
|
|
|
- url: '/pages/workbench/task/ApplyList'
|
|
|
+ url: '/pages/workbench/task/ApplyList'
|
|
|
})
|
|
|
},
|
|
|
toTodoList (mail) {
|
|
|
uni.navigateTo({
|
|
|
- url: '/pages/workbench/task/TodoList'
|
|
|
+ url: '/pages/workbench/task/TodoList'
|
|
|
})
|
|
|
},
|
|
|
toHistoryList (mail) {
|
|
|
uni.navigateTo({
|
|
|
- url: '/pages/workbench/task/HistoryList'
|
|
|
+ url: '/pages/workbench/task/HistoryList'
|
|
|
})
|
|
|
},
|
|
|
toFlowCopyList (mail) {
|
|
|
uni.navigateTo({
|
|
|
- url: '/pages/workbench/task/FlowCopyList'
|
|
|
+ url: '/pages/workbench/task/FlowCopyList'
|
|
|
})
|
|
|
},
|
|
|
start (row) {
|
|
|
- // 读取流程表单
|
|
|
+ // 读取流程表单
|
|
|
taskService.getTaskDef({
|
|
|
- procDefId: row.id,
|
|
|
- status: 'start'
|
|
|
+ procDefId: row.id,
|
|
|
+ status: 'start'
|
|
|
}).then((data) => {
|
|
|
- let processTitle = `${this.username} 在 ${moment(new Date()).format('YYYY-MM-DD HH:mm')} 发起了 [${row.name}]`
|
|
|
- let query = {procDefId: row.id, procDefKey: row.key, status: 'start', title: `发起流程【${row.name}】`, formType: data.formType, formUrl: data.formUrl, formTitle: processTitle}
|
|
|
- uni.navigateTo({
|
|
|
- url: '/pages/workbench/task/TaskForm?flow='+JSON.stringify(query)
|
|
|
- })
|
|
|
+ let processTitle = `${this.username} 在 ${moment(new Date()).format('YYYY-MM-DD HH:mm')} 发起了 [${row.name}]`
|
|
|
+ let query = {procDefId: row.id, procDefKey: row.key, status: 'start', title: `发起流程【${row.name}】`, formType: data.formType, formUrl: data.formUrl, formTitle: processTitle}
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages/workbench/task/TaskForm?flow='+JSON.stringify(query)
|
|
|
+ })
|
|
|
})
|
|
|
- }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
<style>
|
|
|
- .cu-list.card-menu {
|
|
|
- overflow: hidden;
|
|
|
- margin-right: 5px;
|
|
|
- margin-left: 5px;
|
|
|
- border-radius: 7px;
|
|
|
- }
|
|
|
- .cu-list.card-menu.margin-top-20 {
|
|
|
- margin-top: -20px;
|
|
|
- }
|
|
|
- .cu-list.menu>.cu-item .content>uni-view:first-child {
|
|
|
- display: -webkit-box;
|
|
|
- display: -webkit-flex;
|
|
|
- display: flex;
|
|
|
- -webkit-box-align: center;
|
|
|
- /* -webkit-align-items: center; */
|
|
|
- /* align-items: center; */
|
|
|
- display: inline-block;
|
|
|
- margin-right: 5px;
|
|
|
- width: 1.6em;
|
|
|
- text-align: center;
|
|
|
- }
|
|
|
- .font-size-35{
|
|
|
- font-size: 35px!important;
|
|
|
- }
|
|
|
- .circle-button{
|
|
|
- width: 44px;
|
|
|
- height: 44px;
|
|
|
- border-radius: 18px;
|
|
|
- padding-top: 4px;
|
|
|
- }
|
|
|
- .circle-button-box{
|
|
|
- width: 25%;
|
|
|
- margin-top: 10px;
|
|
|
- display: -webkit-box;
|
|
|
- display: -webkit-flex;
|
|
|
- display: flex;
|
|
|
- -webkit-box-orient: vertical;
|
|
|
- -webkit-box-direction: normal;
|
|
|
- -webkit-flex-direction: column;
|
|
|
- flex-direction: column;
|
|
|
- -webkit-box-align: center;
|
|
|
- -webkit-align-items: center;
|
|
|
- align-items: center;
|
|
|
- -webkit-box-pack: center;
|
|
|
- -webkit-justify-content: center;
|
|
|
- justify-content: center;
|
|
|
- box-sizing: border-box;
|
|
|
- }
|
|
|
- .font-b {
|
|
|
- vertical-align: middle;
|
|
|
- font-size: 18px;
|
|
|
- font-weight: 500;
|
|
|
- color: #3a3a3a;
|
|
|
- }
|
|
|
+ .cu-list.card-menu {
|
|
|
+ overflow: hidden;
|
|
|
+ margin-right: 5px;
|
|
|
+ margin-left: 5px;
|
|
|
+ border-radius: 7px;
|
|
|
+ }
|
|
|
+ .cu-list.card-menu.margin-top-20 {
|
|
|
+ margin-top: -20px;
|
|
|
+ }
|
|
|
+ .cu-list.menu>.cu-item .content>uni-view:first-child {
|
|
|
+ display: -webkit-box;
|
|
|
+ display: -webkit-flex;
|
|
|
+ display: flex;
|
|
|
+ -webkit-box-align: center;
|
|
|
+ /* -webkit-align-items: center; */
|
|
|
+ /* align-items: center; */
|
|
|
+ display: inline-block;
|
|
|
+ margin-right: 5px;
|
|
|
+ width: 1.6em;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ .font-size-35{
|
|
|
+ font-size: 35px!important;
|
|
|
+ }
|
|
|
+ .circle-button{
|
|
|
+ width: 44px;
|
|
|
+ height: 44px;
|
|
|
+ border-radius: 18px;
|
|
|
+ padding-top: 4px;
|
|
|
+ }
|
|
|
+ .circle-button-box{
|
|
|
+ width: 25%;
|
|
|
+ margin-top: 10px;
|
|
|
+ display: -webkit-box;
|
|
|
+ display: -webkit-flex;
|
|
|
+ display: flex;
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
+ -webkit-box-direction: normal;
|
|
|
+ -webkit-flex-direction: column;
|
|
|
+ flex-direction: column;
|
|
|
+ -webkit-box-align: center;
|
|
|
+ -webkit-align-items: center;
|
|
|
+ align-items: center;
|
|
|
+ -webkit-box-pack: center;
|
|
|
+ -webkit-justify-content: center;
|
|
|
+ justify-content: center;
|
|
|
+ box-sizing: border-box;
|
|
|
+ }
|
|
|
+ .font-b {
|
|
|
+ vertical-align: middle;
|
|
|
+ font-size: 18px;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #3a3a3a;
|
|
|
+ }
|
|
|
</style>
|