|
@@ -80,14 +80,6 @@
|
|
|
<span>应收费用</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
- <el-col :span="4">
|
|
|
- <el-switch
|
|
|
- v-model="value"
|
|
|
- active-color="#5972ef"
|
|
|
- active-text="审核应收费用"
|
|
|
- inactive-color="#949494">
|
|
|
- </el-switch>
|
|
|
- </el-col>
|
|
|
<!--<el-col :span="6">-->
|
|
|
<!-- <div class="disabledBox">-->
|
|
|
<!-- <span style="font-size: 14px;margin-right: 5px">签单方式</span>-->
|
|
@@ -107,16 +99,19 @@
|
|
|
<el-button type="primary" plain size="small">打印账单</el-button>
|
|
|
<el-button type="success" plain size="small">应收模板</el-button>
|
|
|
</el-col>
|
|
|
- <el-col :span="3">
|
|
|
- <el-button type="success" size="small" @click="addDfun">新 增</el-button>
|
|
|
- </el-col>
|
|
|
+ <!--<el-col :span="3">-->
|
|
|
+ <!-- <el-button type="success" size="small" @click="addDfun">新 增</el-button>-->
|
|
|
+ <!--</el-col>-->
|
|
|
</el-row>
|
|
|
<div style="margin-top: 10px">
|
|
|
<el-table
|
|
|
- :row-style="{height:'20px'}"
|
|
|
- :cell-style="{padding:'0px'}"
|
|
|
+ :row-style="{height:'20px',padding:'0px',fontSize:'12px'}"
|
|
|
+ :cell-style="{padding:'0px',fontSize:'12px'}"
|
|
|
+ :header-cell-style="tableHeaderCellStyle"
|
|
|
:data="assemblyForm.feeCenterListD"
|
|
|
@selection-change="handleSelectionChange"
|
|
|
+ border
|
|
|
+ stripe
|
|
|
style="width: 100%">
|
|
|
<el-table-column
|
|
|
type="selection"
|
|
@@ -124,7 +119,16 @@
|
|
|
width="55">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
+ fixed="left"
|
|
|
+ width="90">
|
|
|
+ <template slot="header" slot-scope="scope">
|
|
|
+ <el-button type="success" size="small"
|
|
|
+ :disabled="detailData.seeDisabled" @click="addDfun">新 增</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
prop="corpCnName"
|
|
|
+ header-align="center"
|
|
|
label="单位" width="160px">
|
|
|
<template slot-scope="{ row }">
|
|
|
<search-query v-if="row.edit"
|
|
@@ -144,6 +148,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="feeCnName"
|
|
|
+ header-align="center"
|
|
|
label="费用简称" width="160px">
|
|
|
<template slot-scope="{ row }">
|
|
|
<search-query v-if="row.edit"
|
|
@@ -163,6 +168,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="paymode"
|
|
|
+ header-align="center"
|
|
|
label="预付/到付" width="120px">
|
|
|
<template slot-scope="{ row }">
|
|
|
<el-select v-if="row.edit" v-model="row.paymode" placeholder="请选择">
|
|
@@ -178,6 +184,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="unitNo"
|
|
|
+ header-align="center"
|
|
|
label="计量单位" width="120px">
|
|
|
<template slot-scope="{ row }">
|
|
|
<search-query v-if="row.edit"
|
|
@@ -197,6 +204,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="price"
|
|
|
+ header-align="center"
|
|
|
label="单价" width="120px">
|
|
|
<template slot-scope="{ row }">
|
|
|
<el-input v-if="row.edit" type="number" v-model="row.price" size="small"
|
|
@@ -206,6 +214,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="quantity"
|
|
|
+ header-align="center"
|
|
|
label="数量" width="120px" >
|
|
|
<template slot-scope="{ row }">
|
|
|
<el-input v-if="row.edit" type="number" v-model="row.quantity" size="small"
|
|
@@ -215,6 +224,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="curCode"
|
|
|
+ header-align="center"
|
|
|
label="币种" width="120px">
|
|
|
<template slot-scope="{ row }">
|
|
|
<search-query v-if="row.edit"
|
|
@@ -234,18 +244,22 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="rmbAmount"
|
|
|
- label="RMB(含税)">
|
|
|
+ header-align="center"
|
|
|
+ label="CNY(含税)" width="100px">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="usdAmount"
|
|
|
- label="USD(含税)">
|
|
|
+ header-align="center"
|
|
|
+ label="USD(含税)" width="100px">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="exrate"
|
|
|
- label="对RMB汇率">
|
|
|
+ header-align="center"
|
|
|
+ label="对CNY汇率" width="100px">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="payplace"
|
|
|
+ header-align="center"
|
|
|
label="预付地址">
|
|
|
<template slot-scope="{ row }">
|
|
|
<el-input v-if="row.edit" v-model="row.payplace" size="small"
|
|
@@ -255,6 +269,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="remarks"
|
|
|
+ header-align="center"
|
|
|
label="备注">
|
|
|
<template slot-scope="{ row }">
|
|
|
<el-input v-if="row.edit" v-model="row.remarks" size="small"
|
|
@@ -265,9 +280,10 @@
|
|
|
<el-table-column
|
|
|
fixed="right"
|
|
|
label="操作"
|
|
|
+ header-align="center"
|
|
|
width="100">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button v-if="scope.row.edit" type="text" size="small" @click="saveDfun(scope.row,scope.$index)">保存</el-button>
|
|
|
+ <el-button v-if="scope.row.edit" type="text" size="small" @click="savefun(scope.row,scope.$index,'D')">保存</el-button>
|
|
|
<el-button v-else type="text" size="small" @click="editDfun(scope.row,scope.$index)">编辑</el-button>
|
|
|
<el-button type="text" size="small" @click="deleteDfun(scope.row,scope.$index)">删除</el-button>
|
|
|
</template>
|
|
@@ -284,25 +300,19 @@
|
|
|
<span>应付费用</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
- <el-col :span="4">
|
|
|
- <el-switch
|
|
|
- v-model="value"
|
|
|
- active-color="#5972ef"
|
|
|
- active-text="审核应付费用"
|
|
|
- inactive-color="#949494">
|
|
|
- </el-switch>
|
|
|
- </el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-button type="success" plain size="small">应付模板</el-button>
|
|
|
</el-col>
|
|
|
- <el-col :span="3">
|
|
|
- <el-button type="success" size="small" @click="addCfun">新 增</el-button>
|
|
|
- </el-col>
|
|
|
</el-row>
|
|
|
<div style="margin-top: 10px">
|
|
|
<el-table
|
|
|
+ :row-style="{height:'20px',padding:'0px',fontSize:'12px'}"
|
|
|
+ :cell-style="{padding:'0px',fontSize:'12px'}"
|
|
|
+ :header-cell-style="tableHeaderCellStyle"
|
|
|
:data="assemblyForm.feeCenterListC"
|
|
|
@selection-change="handleSelectionChange"
|
|
|
+ border
|
|
|
+ stripe
|
|
|
style="width: 100%">
|
|
|
<el-table-column
|
|
|
type="selection"
|
|
@@ -310,8 +320,17 @@
|
|
|
width="55">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
+ fixed="left"
|
|
|
+ width="90">
|
|
|
+ <template slot="header" slot-scope="scope">
|
|
|
+ <el-button type="success" size="small"
|
|
|
+ :disabled="detailData.seeDisabled" @click="addCfun">新 增</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
prop="corpCnName"
|
|
|
- label="单位" width="160px">
|
|
|
+ label="单位" width="160px"
|
|
|
+ header-align="center">
|
|
|
<template slot-scope="{ row }">
|
|
|
<search-query v-if="row.edit"
|
|
|
:datalist="corpCnNameData"
|
|
@@ -330,7 +349,8 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="feeCnName"
|
|
|
- label="费用简称" width="160px">
|
|
|
+ label="费用简称" width="160px"
|
|
|
+ header-align="center">
|
|
|
<template slot-scope="{ row }">
|
|
|
<search-query v-if="row.edit"
|
|
|
:datalist="feeCnNameData"
|
|
@@ -349,7 +369,8 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="paymode"
|
|
|
- label="预付/到付" width="120px">
|
|
|
+ label="预付/到付" width="120px"
|
|
|
+ header-align="center">
|
|
|
<template slot-scope="{ row }">
|
|
|
<el-select v-if="row.edit" v-model="row.paymode" placeholder="请选择">
|
|
|
<el-option
|
|
@@ -364,7 +385,8 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="unitNo"
|
|
|
- label="计量单位" width="120px">
|
|
|
+ label="计量单位" width="120px"
|
|
|
+ header-align="center">
|
|
|
<template slot-scope="{ row }">
|
|
|
<search-query v-if="row.edit"
|
|
|
:datalist="unitNoData"
|
|
@@ -383,7 +405,8 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="price"
|
|
|
- label="单价" width="120px">
|
|
|
+ label="单价" width="120px"
|
|
|
+ header-align="center">
|
|
|
<template slot-scope="{ row }">
|
|
|
<el-input v-if="row.edit" type="number" v-model="row.price" size="small"
|
|
|
placeholder="请输入" @blur="priceinputfun($event,row)"></el-input>
|
|
@@ -392,7 +415,8 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="quantity"
|
|
|
- label="数量" width="120px" >
|
|
|
+ label="数量" width="120px"
|
|
|
+ header-align="center">
|
|
|
<template slot-scope="{ row }">
|
|
|
<el-input v-if="row.edit" type="number" v-model="row.quantity" size="small"
|
|
|
placeholder="请输入" @blur="quantityinputfun(row)"></el-input>
|
|
@@ -401,7 +425,8 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="curCode"
|
|
|
- label="币种" width="120px">
|
|
|
+ label="币种" width="120px"
|
|
|
+ header-align="center">
|
|
|
<template slot-scope="{ row }">
|
|
|
<search-query v-if="row.edit"
|
|
|
:datalist="curCodeData"
|
|
@@ -420,19 +445,23 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="rmbAmount"
|
|
|
- label="RMB(含税)">
|
|
|
+ label="CNY(含税)" width="100px"
|
|
|
+ header-align="center">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="usdAmount"
|
|
|
- label="USD(含税)">
|
|
|
+ label="USD(含税)" width="100px"
|
|
|
+ header-align="center">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="exrate"
|
|
|
- label="对RMB汇率">
|
|
|
+ label="对CNY汇率" width="100px"
|
|
|
+ header-align="center">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="payplace"
|
|
|
- label="预付地址">
|
|
|
+ label="预付地址"
|
|
|
+ header-align="center">
|
|
|
<template slot-scope="{ row }">
|
|
|
<el-input v-if="row.edit" v-model="row.payplace" size="small"
|
|
|
placeholder="请输入" ></el-input>
|
|
@@ -441,7 +470,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="remarks"
|
|
|
- label="备注">
|
|
|
+ label="备注" header-align="center">
|
|
|
<template slot-scope="{ row }">
|
|
|
<el-input v-if="row.edit" v-model="row.remarks" size="small"
|
|
|
placeholder="请输入" ></el-input>
|
|
@@ -451,9 +480,10 @@
|
|
|
<el-table-column
|
|
|
fixed="right"
|
|
|
label="操作"
|
|
|
+ header-align="center"
|
|
|
width="100">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button v-if="scope.row.edit" type="text" size="small" @click="saveCfun(scope.row,scope.$index)">保存</el-button>
|
|
|
+ <el-button v-if="scope.row.edit" type="text" size="small" @click="savefun(scope.row,scope.$index,'C')">保存</el-button>
|
|
|
<el-button v-else type="text" size="small" @click="editCfun(scope.row,scope.$index)">编辑</el-button>
|
|
|
<el-button type="text" size="small" @click="deleteDfun(scope.row,scope.$index)">删除</el-button>
|
|
|
</template>
|
|
@@ -465,62 +495,76 @@
|
|
|
<div style="display: flex;align-items: center;justify-content: space-around">
|
|
|
<div style="width: 30%">
|
|
|
<el-card class="box-card">
|
|
|
- <div class="bottomFlex">
|
|
|
- <div class="bottomFlex-left">
|
|
|
- <div class="bottomFlex-leftTop">
|
|
|
- <div class="weightfont">¥</div>
|
|
|
- <div class="fontText">人民币</div>
|
|
|
- <div class="fontText">RMB</div>
|
|
|
+ <div class="bottomFlex" style="justify-content: space-around">
|
|
|
+ <div style="text-align: center">
|
|
|
+ <div class="weightfont">¥</div>
|
|
|
+ <div>CNY</div>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <div style="color: #81B337">
|
|
|
+ <span>应收:</span>
|
|
|
+ <span class="weightnum">¥{{assemblyForm.amountDr}}元</span>
|
|
|
</div>
|
|
|
- <div class="bottomFlex-leftcont">
|
|
|
- <div style="color: #81B337">
|
|
|
- <div>应收</div>
|
|
|
- <span class="weightnum">¥295665.55元</span>
|
|
|
- </div>
|
|
|
- <div style="color: #6BBCD1">
|
|
|
- <div>应付</div>
|
|
|
- <span class="weightnum">¥295665.55元</span>
|
|
|
- </div>
|
|
|
+ <div style="color: #6BBCD1">
|
|
|
+ <span>应付:</span>
|
|
|
+ <span class="weightnum">¥{{assemblyForm.amountCr}}元</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div style="height: 90px; border-right: 1px solid #cbcbcb"></div>
|
|
|
- <div class="bottomFlex-right">
|
|
|
- <div class="fontText positionText">利润</div>
|
|
|
- <div class="weightnum">¥95665.55元</div>
|
|
|
+ <div class="bottomFlex">
|
|
|
+ <span>利润</span>
|
|
|
+ <span>¥{{assemblyForm.amountProfit}}元</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-card>
|
|
|
</div>
|
|
|
-
|
|
|
<div style="width: 30%">
|
|
|
<el-card class="box-card">
|
|
|
- <div class="bottomFlex">
|
|
|
- <div class="bottomFlex-left">
|
|
|
- <div class="bottomFlex-leftTop">
|
|
|
- <div class="weightfont">$</div>
|
|
|
- <div class="fontText">美金</div>
|
|
|
- <div class="fontText">USD</div>
|
|
|
+ <div class="bottomFlex" style="justify-content: space-around">
|
|
|
+ <div style="text-align: center">
|
|
|
+ <div class="weightfont">$</div>
|
|
|
+ <div>USD</div>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <div style="color: #81B337">
|
|
|
+ <span>应收:</span>
|
|
|
+ <span class="weightnum">${{assemblyForm.amountDrUsd}}元</span>
|
|
|
</div>
|
|
|
- <div class="bottomFlex-leftcont">
|
|
|
- <div style="color: #81B337">
|
|
|
- <div>应收</div>
|
|
|
- <span class="weightnum">$295665.55元</span>
|
|
|
- </div>
|
|
|
- <div style="color: #6BBCD1">
|
|
|
- <div>应付</div>
|
|
|
- <span class="weightnum">$295665.55元</span>
|
|
|
- </div>
|
|
|
+ <div style="color: #6BBCD1">
|
|
|
+ <span>应付:</span>
|
|
|
+ <span class="weightnum">${{assemblyForm.amountCrUsd}}元</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div style="height: 90px; border-right: 1px solid #cbcbcb"></div>
|
|
|
- <div class="bottomFlex-right">
|
|
|
- <div class="fontText positionText">利润</div>
|
|
|
- <div class="weightnum">$95665.55元</div>
|
|
|
+ <div class="bottomFlex">
|
|
|
+ <span>利润</span>
|
|
|
+ <span>${{assemblyForm.amountProfitUsd}}元</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </el-card>
|
|
|
+ </div>
|
|
|
+ <div style="width: 30%">
|
|
|
+ <el-card class="box-card">
|
|
|
+ <div class="bottomFlex" style="justify-content: space-around">
|
|
|
+ <div style="text-align: center">
|
|
|
+ <div class="weightfont">¥</div>
|
|
|
+ <div>CNY合计</div>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <div style="color: #81B337">
|
|
|
+ <span>应收:</span>
|
|
|
+ <span class="weightnum">¥{{assemblyForm.amountDrLoc}}元</span>
|
|
|
+ </div>
|
|
|
+ <div style="color: #6BBCD1">
|
|
|
+ <span>应付:</span>
|
|
|
+ <span class="weightnum">¥{{assemblyForm.amountCrLoc}}元</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="bottomFlex">
|
|
|
+ <span>利润</span>
|
|
|
+ <span>¥{{assemblyForm.amountProfitLoc}}元</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-card>
|
|
|
</div>
|
|
|
-
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
@@ -543,7 +587,8 @@
|
|
|
},
|
|
|
assemblyForm:{
|
|
|
type:Object
|
|
|
- }
|
|
|
+ },
|
|
|
+ detailData:{},
|
|
|
},
|
|
|
data(){
|
|
|
return {
|
|
@@ -617,24 +662,38 @@
|
|
|
this.$delete(this.assemblyForm.feeCenterListC[index], 'edit')
|
|
|
this.$set(this.assemblyForm.feeCenterListC[index],'edit',true)
|
|
|
},
|
|
|
- // 应收保存
|
|
|
- saveDfun(row,index){
|
|
|
- // 收付 D=收 C=付
|
|
|
- row.dc = 'D'
|
|
|
- row.pid = this.pid
|
|
|
- row.sort = index
|
|
|
- row.billType = this.assemblyForm.billType
|
|
|
- row.billNo = this.assemblyForm.billNo
|
|
|
- this.feecenterSubmitfun(row)
|
|
|
- },
|
|
|
- // 应付保存
|
|
|
- saveCfun(row,index){
|
|
|
+ // 应付应付保存
|
|
|
+ savefun(row,index,dc){
|
|
|
// 收付 D=收 C=付
|
|
|
- row.dc = 'C'
|
|
|
+ row.dc = dc
|
|
|
row.pid = this.pid
|
|
|
row.sort = index
|
|
|
- row.billType = this.assemblyForm.billType
|
|
|
- row.billNo = this.assemblyForm.billNo
|
|
|
+ row.businessType = this.assemblyForm.businessType // 业务类型
|
|
|
+ row.billType = this.assemblyForm.billType // 单据类型
|
|
|
+ row.billNo = this.assemblyForm.billNo // 单据编号
|
|
|
+ row.billDate = this.assemblyForm.billDate // 单据日期
|
|
|
+ row.billCorpId = this.assemblyForm.corpId // 主表客户 id
|
|
|
+ row.billCorpCnName = this.assemblyForm.corpCnName // 主表客户中文名称
|
|
|
+ row.billCorpEnName = this.assemblyForm.corpEnName // 主表客户英文名称
|
|
|
+ row.lineId = this.assemblyForm.lineId // 航线 id
|
|
|
+ row.lineCnName = this.assemblyForm.lineCnName // 航线中文名称
|
|
|
+ row.lineEnName = this.assemblyForm.lineEnName // 航线英文名称
|
|
|
+ row.vesselId = this.assemblyForm.vesselId // 船名 id
|
|
|
+ row.vesselCnName = this.assemblyForm.vesselCnName // 中文船名
|
|
|
+ row.vesselEnName = this.assemblyForm.vesselEnName // 英文船名
|
|
|
+ row.voyageNo = this.assemblyForm.voyageNo // 航次
|
|
|
+ row.mblno = this.assemblyForm.mblno // MB/L NO
|
|
|
+ row.hblno = this.assemblyForm.hblno // HB/L NO
|
|
|
+ row.etd = this.assemblyForm.etd // 开船日期
|
|
|
+ row.eta = this.assemblyForm.eta // 到港日期
|
|
|
+ row.polId = this.assemblyForm.polId // 装货港 id
|
|
|
+ row.polCode = this.assemblyForm.polCode // 装货港代码
|
|
|
+ row.polCnName = this.assemblyForm.polCnName // 装货港中文名称
|
|
|
+ row.polEnName = this.assemblyForm.polEnName // 装货港英文名称
|
|
|
+ row.podId = this.assemblyForm.podId // 卸货港 id
|
|
|
+ row.podCode = this.assemblyForm.podCode // 卸货港代码
|
|
|
+ row.podCnName = this.assemblyForm.podCnName // 卸货港中文名称
|
|
|
+ row.podEnName = this.assemblyForm.podEnName // 卸货港英文名称
|
|
|
this.feecenterSubmitfun(row)
|
|
|
},
|
|
|
// 应收删除
|
|
@@ -785,6 +844,10 @@
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ // 表头样式
|
|
|
+ tableHeaderCellStyle({row,column,rowIndex, columnIndex}){
|
|
|
+ return "padding:4px 0px;fontSize:12px;color:#000;background:#ecf5ff"
|
|
|
+ },
|
|
|
|
|
|
|
|
|
},
|
|
@@ -807,30 +870,6 @@
|
|
|
.bottomFlex {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
- justify-content: space-around;
|
|
|
- .bottomFlex-left {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- .bottomFlex-leftTop {
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- align-items: center;
|
|
|
- padding-right: 15px;
|
|
|
- border-right: 1px solid #cbcbcb;
|
|
|
- }
|
|
|
- .bottomFlex-leftcont {
|
|
|
- margin: 0 30px;
|
|
|
- }
|
|
|
- }
|
|
|
- .bottomFlex-right {
|
|
|
- position: relative;
|
|
|
- .positionText {
|
|
|
- position: absolute;
|
|
|
- top: -45px;
|
|
|
- left: 50%;
|
|
|
- transform: translateX(-50%);
|
|
|
- }
|
|
|
- }
|
|
|
}
|
|
|
.weightfont {
|
|
|
font-size: 20px;
|