no message
This commit is contained in:
parent
8e63b8d2e3
commit
a38c32f263
BIN
fuintAdmin/src/assets/fonts/Source Han Sans CN Regular.otf
Normal file
BIN
fuintAdmin/src/assets/fonts/Source Han Sans CN Regular.otf
Normal file
Binary file not shown.
BIN
fuintAdmin/src/assets/fonts/YouSheBiaoTiHei.ttf
Normal file
BIN
fuintAdmin/src/assets/fonts/YouSheBiaoTiHei.ttf
Normal file
Binary file not shown.
8
fuintAdmin/src/assets/styles/fonts.css
Normal file
8
fuintAdmin/src/assets/styles/fonts.css
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: 'YouSheBiaoTiHei';
|
||||||
|
src: url("../fonts/YouSheBiaoTiHei.ttf");
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Source Han Sans CN';
|
||||||
|
src: url("../fonts/Source Han Sans CN Regular.otf");
|
||||||
|
}
|
@ -18,6 +18,11 @@ import './assets/icons' // icon
|
|||||||
import './permission' // permission control
|
import './permission' // permission control
|
||||||
import { getConfigKey } from "@/api/system/config";
|
import { getConfigKey } from "@/api/system/config";
|
||||||
import { parseTime, resetForm, addDateRange, getName, handleTree } from "@/utils/fuint";
|
import { parseTime, resetForm, addDateRange, getName, handleTree } from "@/utils/fuint";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
import '@/assets/styles/fonts.css' //字体样式
|
||||||
|
|
||||||
// 分页组件
|
// 分页组件
|
||||||
import Pagination from "@/components/Pagination";
|
import Pagination from "@/components/Pagination";
|
||||||
// 自定义表格工具组件
|
// 自定义表格工具组件
|
||||||
|
@ -14,23 +14,27 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="conten-bottom">
|
<div class="conten-bottom">
|
||||||
<div class="cardbox" :class="{ 'act-cardbox': item.status == '启用' }" v-for="(item,index) in item.oilGunList" :key="index">
|
<div class="cardbox" :class="{ 'act-cardbox': item.status == '启用' ,'boxborder': item.status == '启用' }" v-for="(item,index) in item.oilGunList" :key="index">
|
||||||
<div class="cardbox-top" :class="{ 'actcolor':item.status == '启用' }">
|
<div class="cardbox-top" :class="{ 'actcolor':item.status == '启用' }">
|
||||||
<div>{{item.tankName}}</div>
|
<div>{{item.tankName}}</div>
|
||||||
<div style="cursor: pointer" ><i class="el-icon-edit" @click="gunEdit(item)"></i> <i class="el-icon-delete" @click="delGun(item.id)"></i></div>
|
<div style="cursor: pointer" ><i class="el-icon-edit-outline
|
||||||
|
" @click="gunEdit(item)"></i> <i class="el-icon-delete" @click="delGun(item.id)"></i></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<img class="cardbox-rd" src="./imgs/r-img.png" alt="">
|
<img v-if="item.status == '启用'" class="cardbox-rd" src="./imgs/r-img.png" alt="">
|
||||||
|
|
||||||
<div class="cardbox-title">
|
<div class="cardbox-title">
|
||||||
<div>{{item.gunName}}</div>
|
<div class="cardbox-gunName">{{item.gunName}}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="cardbox-bottom" :class="{ 'actcolor':item.status == '启用' }">
|
<div class="cardbox-bottom" :class="{ 'actcolor':item.status == '启用' }">
|
||||||
<!-- <div>ID:{{ item.id }}</div>-->
|
<!-- <div>ID:{{ item.id }}</div>-->
|
||||||
</div>
|
</div>
|
||||||
<div class="cardboxb" v-if="item.oilMachineGunNumber != null ">
|
<template v-if="item.status == '启用'">
|
||||||
<div>{{item.oilMachineGunNumber}}</div>
|
<div class="cardboxb" v-if="item.oilMachineGunNumber != null ">
|
||||||
</div>
|
<div >{{item.oilMachineGunNumber}}</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -129,7 +133,7 @@
|
|||||||
</el-form>
|
</el-form>
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
<!--/* <el-button v-if="judgement" type="danger" @click="delGun()" style="float: left;">删除</el-button>*/-->
|
<!--/* <el-button v-if="judgement" type="danger" @click="delGun()" style="float: left;">删除</el-button>*/-->
|
||||||
<el-button @click="dialogVisible = false">取 消</el-button>
|
<el-button @click="dialogVisible = false,getList()">取 消</el-button>
|
||||||
<el-button type="primary" @click="submitForm()">确 定</el-button>
|
<el-button type="primary" @click="submitForm()">确 定</el-button>
|
||||||
</span>
|
</span>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
@ -388,16 +392,25 @@ import {cleanTankApi} from "@/api/oilConfig/oilTank";
|
|||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
.cardbox{
|
.cardbox{
|
||||||
margin-right: 10px;
|
height: 87px;
|
||||||
margin-bottom: 10px;
|
width: 278px;
|
||||||
|
margin-right: 35px;
|
||||||
|
margin-bottom: 35px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-radius: 4px;
|
border-radius: 10px;
|
||||||
width: 19%;
|
//width: 19%;
|
||||||
|
|
||||||
background-size:40% 70%;
|
background-size:40% 70%;
|
||||||
background-color: #f9f9f9;
|
background-color: #f9f9f9;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.boxborder {
|
||||||
|
border-color: #FF9655;
|
||||||
|
border:1px solid;
|
||||||
}
|
}
|
||||||
.cardbox-rd{
|
.cardbox-rd{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -408,19 +421,25 @@ import {cleanTankApi} from "@/api/oilConfig/oilTank";
|
|||||||
|
|
||||||
}
|
}
|
||||||
.act-cardbox{
|
.act-cardbox{
|
||||||
|
margin-right: 35px;
|
||||||
|
height: 87px;
|
||||||
|
width: 278px;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-right: 10px;
|
//margin-right: 10px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 35px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-radius: 4px;
|
border-radius: 10px;
|
||||||
width: 19%;
|
//width: 19%;
|
||||||
//background: url(../../../assets/images/jybjj.png) center no-repeat;
|
//background: url(../../../assets/images/jybjj.png) center no-repeat;
|
||||||
background-size:40% 70%;
|
background-size:40% 70%;
|
||||||
background-color: #fff9f5;
|
background-color: #fff9f5;
|
||||||
color: #FF9655 !important;
|
color: #FF9655 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.cardboxb{
|
.cardboxb{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
/*width: 50px;*/
|
/*width: 50px;*/
|
||||||
@ -447,7 +466,10 @@ import {cleanTankApi} from "@/api/oilConfig/oilTank";
|
|||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
color: #5b5e62;
|
color: #5b5e62;
|
||||||
font-size: 14px;
|
font-size: 12px;
|
||||||
|
|
||||||
|
font-family: Source Han Sans CN;
|
||||||
|
//font-weight: 400;
|
||||||
}
|
}
|
||||||
.cardbox-title{
|
.cardbox-title{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -456,7 +478,19 @@ import {cleanTankApi} from "@/api/oilConfig/oilTank";
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 28px;
|
font-size: 28px;
|
||||||
margin: 15px 0px;
|
//margin: 15px 0px;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
.cardbox-gunName{
|
||||||
|
font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 28px;
|
||||||
|
//color: #FF9655;
|
||||||
|
//line-height: 0px;
|
||||||
|
//text-align: center;
|
||||||
|
//font-style: normal;
|
||||||
|
//text-transform: none;
|
||||||
}
|
}
|
||||||
.cardbox-bottom{
|
.cardbox-bottom{
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -478,4 +512,5 @@ import {cleanTankApi} from "@/api/oilConfig/oilTank";
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user