|
|
@ -0,0 +1,453 @@
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
|
|
|
<div class="mainBox scroll-target">
|
|
|
|
|
|
|
|
<div class="topZS"></div>
|
|
|
|
|
|
|
|
<div class="title">
|
|
|
|
|
|
|
|
物品信息(<span>{{ total }}</span>)
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<el-form :model="formInline" class="search">
|
|
|
|
|
|
|
|
<el-form-item label="物品名称:" class="formItem">
|
|
|
|
|
|
|
|
<el-input v-model.trim="formInline.goodsName" class="formIpt"></el-input>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
<el-button type="primary" @click="getList()">搜索</el-button>
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
<div class="monitorBox">
|
|
|
|
|
|
|
|
<el-tabs type="border-card">
|
|
|
|
|
|
|
|
<el-tab-pane v-for="(item, index) in wpCount" :key="index">
|
|
|
|
|
|
|
|
<div class="paneInner" slot="label" @click="getList(item.type)">{{ item.type
|
|
|
|
|
|
|
|
}}({{ item.number }})</div>
|
|
|
|
|
|
|
|
</el-tab-pane>丨
|
|
|
|
|
|
|
|
</el-tabs>
|
|
|
|
|
|
|
|
<el-table :cell-style="{ background: 'revert' }" :data="tableData" class="table"
|
|
|
|
|
|
|
|
style="width: calc(100% - 40px); margin:0 20px;" :row-style="tableRowStyle"
|
|
|
|
|
|
|
|
:header-row-style="tableHeaderColor" :header-cell-style="tableHeaderCellColor">
|
|
|
|
|
|
|
|
<el-table-column type="index" width="50" label="序号">
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
<el-table-column show-overflow-tooltip prop="goodsName" label="物品名称">
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
<el-table-column show-overflow-tooltip prop="goodsTypeCn" label="物品类型">
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
<el-table-column show-overflow-tooltip prop="quantity" label="总量(t)">
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
<el-table-column show-overflow-tooltip prop="companyName" label="隶属企业">
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
<el-table-column show-overflow-tooltip prop="emergencyContact" label="安全责任人">
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
<el-table-column show-overflow-tooltip prop="emergencyContactPhone" label="联系方式">
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
<el-table-column show-overflow-tooltip label="登记时间" prop="registerTime" width="150">
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
<el-table-column show-overflow-tooltip label="操作" width="80">
|
|
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
<div class="detail" @click="checkDetail(scope.row)">
|
|
|
|
|
|
|
|
<button class="xiangqing">详情</button>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="block">
|
|
|
|
|
|
|
|
<el-pagination style="float:right;margin:5px;" class="msg-pagination-container" :background="true"
|
|
|
|
|
|
|
|
@size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="pageNum"
|
|
|
|
|
|
|
|
:page-sizes="[6]" layout="total, sizes, prev, pager, next, jumper" :total="total">
|
|
|
|
|
|
|
|
</el-pagination>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<el-dialog :title="detailItem.goodsName" :visible.sync="diaVisible" class="picForm">
|
|
|
|
|
|
|
|
<el-table :cell-style="{ background: 'revert' }" :data="goodsDetailData" class="table"
|
|
|
|
|
|
|
|
style="width: calc(100% - 40px); margin:0 20px;" :row-style="tableRowStyle"
|
|
|
|
|
|
|
|
:header-row-style="tableHeaderColor" :header-cell-style="tableHeaderCellColor">
|
|
|
|
|
|
|
|
<el-table-column show-overflow-tooltip prop="unloadTime" label="登记时间" width="150">
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
<el-table-column show-overflow-tooltip label="总量" width="90">
|
|
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
<div class="scopeQuantity">
|
|
|
|
|
|
|
|
{{ scope.row.quantity || 0 }}t
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
<el-table-column show-overflow-tooltip label="总物品数量统计">
|
|
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
<div class="scopeQuantity">
|
|
|
|
|
|
|
|
储存{{ scope.row.storageQuantity || 0 }}t; 生产{{ scope.row.produceQuantity || 0 }}t; 购买{{
|
|
|
|
|
|
|
|
scope.row.purchaseQuantity || 0 }}t; 使用{{ scope.row.useQuantity || 0 }}t; 销售{{
|
|
|
|
|
|
|
|
scope.row.saleQuantity || 0
|
|
|
|
|
|
|
|
}}t;
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
<div class="block">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-pagination style="float:right;margin:5px;" class="msg-pagination-container" :background="true"
|
|
|
|
|
|
|
|
@size-change="SizeChange" @current-change="CurrentChange" :current-page="detailpageNum"
|
|
|
|
|
|
|
|
:page-sizes="[5]" layout="total, sizes, prev, pager, next, jumper" :total="detailtotal">
|
|
|
|
|
|
|
|
</el-pagination>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
<div class="bottomZS"></div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
import { TbSafeCompanyGoods, TbSafeCompanyGoodsCount, TbSafeCompanyGoodsDetail } from '@/api/archives'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
|
|
|
props: {
|
|
|
|
|
|
|
|
companyID: String
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
formInline: {},
|
|
|
|
|
|
|
|
pageSize: 6,
|
|
|
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
|
|
|
DetailpageSize: 5,
|
|
|
|
|
|
|
|
detailpageNum: 1,
|
|
|
|
|
|
|
|
detailtotal: 0,
|
|
|
|
|
|
|
|
total: 0,
|
|
|
|
|
|
|
|
isShow: [{ show: false }, { show: false }, { show: false }, { show: false }, { show: false }],
|
|
|
|
|
|
|
|
diaVisible: false,
|
|
|
|
|
|
|
|
tableData: [],
|
|
|
|
|
|
|
|
wpCount: {},
|
|
|
|
|
|
|
|
goodsDetailData: [],
|
|
|
|
|
|
|
|
detailItem: {},
|
|
|
|
|
|
|
|
goodsType: null,
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
|
|
|
|
this.getList()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getWpTotal() {
|
|
|
|
|
|
|
|
TbSafeCompanyGoodsCount({ companyId: this.companyID, ...this.formInline, }).then(res => {
|
|
|
|
|
|
|
|
this.wpCount = res.data
|
|
|
|
|
|
|
|
this.wpCount.forEach((item) => {
|
|
|
|
|
|
|
|
if (item.type == '全部') {
|
|
|
|
|
|
|
|
this.wpCount = this.wpCount.filter(a => a.type != '全部')
|
|
|
|
|
|
|
|
this.wpCount.unshift(item)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
getList(val) {
|
|
|
|
|
|
|
|
if (val) {
|
|
|
|
|
|
|
|
if (val == '全部') {
|
|
|
|
|
|
|
|
this.goodsType = null
|
|
|
|
|
|
|
|
} else if (val == '放射源') {
|
|
|
|
|
|
|
|
this.goodsType = 1
|
|
|
|
|
|
|
|
} else if (val == '易制毒') {
|
|
|
|
|
|
|
|
this.goodsType = 2
|
|
|
|
|
|
|
|
} else if (val == '易制爆') {
|
|
|
|
|
|
|
|
this.goodsType = 3
|
|
|
|
|
|
|
|
} else if (val == '民爆') {
|
|
|
|
|
|
|
|
this.goodsType = 4
|
|
|
|
|
|
|
|
} else if (val == '有毒化学品') {
|
|
|
|
|
|
|
|
this.goodsType = 5
|
|
|
|
|
|
|
|
} else if (val == '易燃气体') {
|
|
|
|
|
|
|
|
this.goodsType = 6
|
|
|
|
|
|
|
|
} else if (val == '易燃液体') {
|
|
|
|
|
|
|
|
this.goodsType = 7
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
TbSafeCompanyGoods({ pageSize: this.pageSize, pageNum: this.pageNum, ...this.formInline, companyId: this.companyID, goodsType: this.goodsType }).then(res => {
|
|
|
|
|
|
|
|
this.tableData = res.data
|
|
|
|
|
|
|
|
this.total = res.total
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
this.getWpTotal()
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
showDia() {
|
|
|
|
|
|
|
|
this.diaVisible = true
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
tableRowStyle({ rowIndex }) {
|
|
|
|
|
|
|
|
if ((rowIndex + 1) % 2 == 1) {
|
|
|
|
|
|
|
|
return { 'background': 'rgba(0,0,0,0)', 'color': '#fff', 'border': '0' }
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
return { 'background': 'rgba(61, 85, 102, 0.16)', 'border': '0', 'color': '#fff' }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
tableHeaderColor() {
|
|
|
|
|
|
|
|
return { 'background': 'linear-gradient( rgba(38, 88, 76, 0.6) 100%, rgba(55, 131, 128, 0.6) 100%, rgba(34, 74, 53, 0.46) 46%)' }
|
|
|
|
|
|
|
|
// return { 'background': 'url("~@/assets/archives/列表9910.png") no-repeat;', 'background-size': '100% 100%;', 'color': '#fff' }
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
tableHeaderCellColor() {
|
|
|
|
|
|
|
|
return { 'background': 'rgba(0,0,0,0)', 'border': '0', 'color': '#fff' }
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handleSizeChange(val) {
|
|
|
|
|
|
|
|
this.pageNum = 1;
|
|
|
|
|
|
|
|
this.pageSize = val;
|
|
|
|
|
|
|
|
this.getList()
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handleCurrentChange(val) {
|
|
|
|
|
|
|
|
this.pageNum = val;
|
|
|
|
|
|
|
|
this.getList()
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
SizeChange(val) {
|
|
|
|
|
|
|
|
this.detailpageNum = 1;
|
|
|
|
|
|
|
|
this.DetailpageSize = val;
|
|
|
|
|
|
|
|
this.checkDetail(this.detailItem)
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
CurrentChange(val) {
|
|
|
|
|
|
|
|
this.detailpageNum = val;
|
|
|
|
|
|
|
|
this.checkDetail(this.detailItem)
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
checkDetail(val) {
|
|
|
|
|
|
|
|
this.detailItem = val
|
|
|
|
|
|
|
|
TbSafeCompanyGoodsDetail({ companyId: this.companyID, goodsName: val.goodsName, pageSize: this.DetailpageSize, pageNum: this.detailpageNum }).then(res => {
|
|
|
|
|
|
|
|
this.goodsDetailData = res.data
|
|
|
|
|
|
|
|
this.detailtotal = res.total
|
|
|
|
|
|
|
|
this.diaVisible = true
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
|
|
|
.mainBox {
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
height: 550px;
|
|
|
|
|
|
|
|
background: url('~@/assets/companyFile/背景22136.png') no-repeat;
|
|
|
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
|
|
|
padding: 70px 20px 60px;
|
|
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.monitorBox {
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/deep/.el-input__inner {
|
|
|
|
|
|
|
|
// background: url('~@/assets/companyFile/2121.png') no-repeat;
|
|
|
|
|
|
|
|
background: url('~@/assets/companyFile/矩形备份 18.png') no-repeat;
|
|
|
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
|
|
|
border: 1px solid rgba(40, 132, 126, 1);
|
|
|
|
|
|
|
|
color: rgba(234, 246, 255, 0.7);
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.el-range-separator {
|
|
|
|
|
|
|
|
color: #ccc;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.el-range-input {
|
|
|
|
|
|
|
|
background: rgba(0, 0, 0, 0);
|
|
|
|
|
|
|
|
color: #ccc;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/deep/.el-tabs--border-card {
|
|
|
|
|
|
|
|
background: rgba(0, 0, 0, 0);
|
|
|
|
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
height: 50px;
|
|
|
|
|
|
|
|
width: calc(100% - 40px);
|
|
|
|
|
|
|
|
margin: 0 20px;
|
|
|
|
|
|
|
|
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .12), 0 0 6px 0 rgba(0, 0, 0, .04);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.el-tabs__header {
|
|
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
|
|
background: linear-gradient(180deg, rgba(234, 241, 248, 0.1) 0%, rgba(208, 222, 238, 0.1) 100%);
|
|
|
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
|
|
border: 1px solid #5B748C;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.el-tabs__nav {
|
|
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.el-tabs__item {
|
|
|
|
|
|
|
|
width: 110px;
|
|
|
|
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
color: #EAF6FF;
|
|
|
|
|
|
|
|
padding: 5px;
|
|
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.paneInner {
|
|
|
|
|
|
|
|
width: 100px;
|
|
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.el-tabs__item:not(:last-child)::after {
|
|
|
|
|
|
|
|
content: '';
|
|
|
|
|
|
|
|
width: 1px;
|
|
|
|
|
|
|
|
height: 20px;
|
|
|
|
|
|
|
|
background: #EAF6FF;
|
|
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
margin-left: 5px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.el-tabs__item.is-active {
|
|
|
|
|
|
|
|
background: rgba(0, 0, 0, 0);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
color: #4BFFAD;
|
|
|
|
|
|
|
|
padding: 5px;
|
|
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.paneInner {
|
|
|
|
|
|
|
|
background: rgba(129, 255, 204, 0.26);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/deep/.el-table {
|
|
|
|
|
|
|
|
background: rgba(0, 0, 0, 0);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
td.el-table__cell {
|
|
|
|
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.xiangqing {
|
|
|
|
|
|
|
|
background: rgba(0, 0, 0, 0);
|
|
|
|
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
color: rgba(48, 196, 255, 0.7);
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.alarmType {
|
|
|
|
|
|
|
|
width: 72px;
|
|
|
|
|
|
|
|
height: 32px;
|
|
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
color: rgba(255, 255, 255, 0.9);
|
|
|
|
|
|
|
|
letter-spacing: 1px;
|
|
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.red {
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
background: rgba(152, 7, 7, 0.21);
|
|
|
|
|
|
|
|
border: 1px solid rgba(214, 38, 38, 1);
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.yellow {
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
background: rgba(152, 95, 7, 0.21);
|
|
|
|
|
|
|
|
border: 1px solid rgba(255, 169, 38, 1);
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
top: 14px;
|
|
|
|
|
|
|
|
left: 20px;
|
|
|
|
|
|
|
|
width: 162px;
|
|
|
|
|
|
|
|
height: 36px;
|
|
|
|
|
|
|
|
line-height: 36;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
|
|
color: #EBFFF4;
|
|
|
|
|
|
|
|
letter-spacing: 2px;
|
|
|
|
|
|
|
|
line-height: 36px;
|
|
|
|
|
|
|
|
text-shadow: 0 0 9px rgba(21, 255, 195, 0.60);
|
|
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
|
|
|
color: #FF9191;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.search {
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
right: 20px;
|
|
|
|
|
|
|
|
top: 20px;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/deep/.el-button--primary {
|
|
|
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
|
|
|
width: 60px;
|
|
|
|
|
|
|
|
height: 30px;
|
|
|
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
background: rgba(0, 0, 0, 0);
|
|
|
|
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
background: url('~@/assets/companyFile/2121.png') no-repeat;
|
|
|
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
color: #F8FBFF;
|
|
|
|
|
|
|
|
letter-spacing: 0.89px;
|
|
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.picForm {
|
|
|
|
|
|
|
|
/deep/ .el-dialog {
|
|
|
|
|
|
|
|
background-color: rgba(0, 0, 0, 0);
|
|
|
|
|
|
|
|
background: url('~@/assets/companyFile/背景091.png') no-repeat;
|
|
|
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
|
|
|
width: 1041px;
|
|
|
|
|
|
|
|
height: 420px;
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.el-dialog__title {
|
|
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
|
|
color: #EBFFF4;
|
|
|
|
|
|
|
|
letter-spacing: 2px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
text-shadow: 0 0 9px rgba(21, 255, 195, 0.77);
|
|
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.el-dialog__body {
|
|
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
height: 360px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.scopeQuantity {
|
|
|
|
|
|
|
|
letter-spacing: 2px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/deep/.el-form-item {
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.el-form-item__label {
|
|
|
|
|
|
|
|
color: #EAF6FF;
|
|
|
|
|
|
|
|
letter-spacing: 1px;
|
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|