图标添加

This commit is contained in:
HuskyOo 2022-05-19 09:34:27 +08:00
parent 4fe93e1f77
commit 8a20a9e026
6 changed files with 20 additions and 11 deletions

View File

@ -69,6 +69,15 @@ export default {
.icon_menu_townRanking { .icon_menu_townRanking {
background: url("./img/icon_twonRanking.png") no-repeat; background: url("./img/icon_twonRanking.png") no-repeat;
} }
.icon_menu_dept {
background: url("./img/icon_dept.png") no-repeat;
}
.icon_menu_speciallyBusiness {
background: url("./img/icon_speciallyBusiness.png") no-repeat;
}
.icon_menu_fingertipIntegral {
background: url("./img/icon_fingertipIntegral.png") no-repeat;
}
.sub-el-icon { .sub-el-icon {
color: currentColor; color: currentColor;
width: 1em; width: 1em;

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -337,7 +337,7 @@ export const asyncRoutes = [
redirect: '/dept/list', redirect: '/dept/list',
meta: { meta: {
title: '县级部门管理', title: '县级部门管理',
icon: 'townRanking', icon: 'dept',
roles: ['SSS'] roles: ['SSS']
}, },
hidden: false, hidden: false,
@ -348,7 +348,7 @@ export const asyncRoutes = [
name: 'DeptList', name: 'DeptList',
meta: { meta: {
title: '部门列表', title: '部门列表',
icon: 'townRanking', icon: 'dept',
affix: true, affix: true,
parentTitle: '县级部门管理' parentTitle: '县级部门管理'
} }
@ -359,7 +359,7 @@ export const asyncRoutes = [
name: 'DeptStaff', name: 'DeptStaff',
meta: { meta: {
title: '人员列表', title: '人员列表',
icon: 'townRanking', icon: 'dept',
affix: true, affix: true,
parentTitle: '县级部门管理' parentTitle: '县级部门管理'
}, },
@ -374,7 +374,7 @@ export const asyncRoutes = [
redirect: '/fingertipIntegral/list', redirect: '/fingertipIntegral/list',
meta: { meta: {
title: '积分管理', title: '积分管理',
icon: 'townRanking', icon: 'fingertipIntegral',
roles: ['SSS'] roles: ['SSS']
}, },
hidden: false, hidden: false,
@ -461,7 +461,7 @@ export const asyncRoutes = [
redirect: '/speciallyBusiness/list', redirect: '/speciallyBusiness/list',
meta: { meta: {
title: '特约商户管理', title: '特约商户管理',
icon: 'townRanking', icon: 'speciallyBusiness',
roles: ['SSS'] roles: ['SSS']
}, },
hidden: false, hidden: false,
@ -472,7 +472,7 @@ export const asyncRoutes = [
name: 'speciallyBusinessList', name: 'speciallyBusinessList',
meta: { meta: {
title: '商户列表', title: '商户列表',
icon: 'townRanking', icon: 'speciallyBusiness',
affix: true, affix: true,
parentTitle: '特约商户管理' parentTitle: '特约商户管理'
} }

View File

@ -75,7 +75,7 @@
<el-table-column label="操作" width="300px" fixed="right" align="center"> <el-table-column label="操作" width="300px" fixed="right" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
v-if="scope.row.invoiceStatus == '1' && scope.row.dealStatus != '0'" v-if="scope.row.invoiceStatus == '1' && scope.row.dealStatus == null"
type="primary" type="primary"
size="mini" size="mini"
style="font-size:12px;padding:10px 20px" style="font-size:12px;padding:10px 20px"
@ -232,8 +232,8 @@ export default {
const listQuery = JSON.parse(JSON.stringify(this.listQuery)) const listQuery = JSON.parse(JSON.stringify(this.listQuery))
const { dateArr } = listQuery const { dateArr } = listQuery
if (dateArr) { if (dateArr) {
listQuery.startDate = dateArr[0] listQuery.startDate = dateArr[0] / 1000
listQuery.endDate = dateArr[1] listQuery.endDate = dateArr[1] / 1000
} }
settlementList(listQuery).then(res => { settlementList(listQuery).then(res => {
this.list = res.d.records this.list = res.d.records
@ -280,8 +280,8 @@ export default {
const listQuery = JSON.parse(JSON.stringify(this.listQuery)) const listQuery = JSON.parse(JSON.stringify(this.listQuery))
const { dateArr } = listQuery const { dateArr } = listQuery
if (dateArr) { if (dateArr) {
listQuery.startDate = dateArr[0] listQuery.startDate = dateArr[0] / 1000
listQuery.endDate = dateArr[1] listQuery.endDate = dateArr[1] / 1000
} }
listQuery.size = 999999 listQuery.size = 999999
settlementList(listQuery).then(res => { settlementList(listQuery).then(res => {