Merge remote-tracking branch 'origin/20240912_adapter' into 20240912_adapter

20240912_adapter
wangwei 2 months ago
commit b365734006

@ -1,55 +1,58 @@
<template> <template>
<div class="app-container home"> <div class="app-container home">
<div> <div>
<!-- <h2>单据上传统计</h2>--> <div class="mt10 grid-container grid-container1">
<!-- <el-divider/>-->
<el-card>
<el-form v-if="queryList && queryList.length > 0" :model="filterQuery" class="query-form" <el-card class="grid-item" body-style="padding:0px;height:100%" >
size="mini" label-width="100px"
>
<el-row > <el-row >
<el-col :span="8"> <el-form v-if="queryList && queryList.length > 0" :model="filterQuery" class="query-form"
<el-form-item label="时间统计:"> size="mini" label-width="100px"
<el-date-picker >
<el-row >
:picker-options="pickerOptions" <el-col :span="8">
v-model="actDateRange" <el-form-item label="时间统计:">
type="daterange" <el-date-picker
format="yyyy 年 MM 月 dd 日"
style="width: 90%" :picker-options="pickerOptions"
value-format="yyyy-MM-dd" v-model="actDateRange"
range-separator="至" type="daterange"
start-placeholder="开始日期" format="yyyy 年 MM 月 dd 日"
end-placeholder="结束日期" style="width: 90%"
> value-format="yyyy-MM-dd"
</el-date-picker> range-separator="至"
start-placeholder="开始日期"
</el-form-item> end-placeholder="结束日期"
>
</el-col> </el-date-picker>
<el-form-item >
</el-form-item>
<el-button-group>
<el-button </el-col>
type="primary" <el-form-item >
icon="el-icon-refresh"
@click="onReset" <el-button-group>
>重置 <el-button
</el-button> type="primary"
<el-button type="primary" icon="el-icon-search" @click="onSubmit(this)" icon="el-icon-refresh"
>查询 @click="onReset"
</el-button >重置
> </el-button>
</el-button-group> <el-button type="primary" icon="el-icon-search" @click="onSubmit(this)"
>查询
</el-form-item> </el-button
>
</el-button-group>
</el-form-item>
</el-row>
</el-form>
</el-row> </el-row>
</el-form> </el-card>
</el-card> </div>
<div class="mt10 grid-container grid-container3" style="height: 20%"> <div class="mt10 grid-container grid-container3">
<el-card class="grid-item" body-style="padding:0px;height:100%" > <el-card class="grid-item" body-style="padding:0px;height:100%" >
@ -482,7 +485,7 @@ export default {
let piedata = { let piedata = {
name: "医保上传率", name: "医保上传率",
type: "pie", type: "pie",
radius: ["42%", "65%", "65%"], radius: ["40%", "65%", "65%"],
avoidLabelOverlap: false, avoidLabelOverlap: false,
itemStyle: { itemStyle: {
borderRadius: 4, borderRadius: 4,
@ -574,8 +577,8 @@ export default {
}, },
}, },
labelLine: { labelLine: {
length: 20, // 线 length: 10, // 线
length2: 36, // 线 length2: 18, // 线
show: true, show: true,
}, },
@ -819,7 +822,6 @@ export default {
.grid-container1 { .grid-container1 {
grid-template-columns: repeat(1, 1fr); grid-template-columns: repeat(1, 1fr);
padding: 10px;
} }

@ -26,7 +26,7 @@
</el-button> </el-button>
<el-button size="mini" type="primary" @click.native="deleteCode" :loading="submitLoading" <el-button size="mini" type="primary" @click.native="deleteCode" :loading="submitLoading"
v-if="splitType=='out' && labelName == 1" style="margin-right: 8px;border-radius: 5%;" v-if="splitType=='out' && labelName == 1" style="margin-right: 8px;border-radius: 5%;"
v-show="isLinkDisabled" :disabled="orderFormData.billNo == null" v-show="isLinkDisabled" :disabled="orderFormData.billNo == null || (splitType=='out' && redMesg)"
>扫码剔除 >扫码剔除
</el-button> </el-button>
<el-button size="mini" type="primary" @click.native="overdeleteCode" :loading="submitLoading" <el-button size="mini" type="primary" @click.native="overdeleteCode" :loading="submitLoading"
@ -40,7 +40,8 @@
>选入已完成单据 >选入已完成单据
</el-button> </el-button>
<el-button size="mini" type="primary" @click.native="chooseDraftOrder()" :loading="submitLoading" <el-button size="mini" type="primary" @click.native="chooseDraftOrder()" :loading="submitLoading"
style="margin-right: 8px;border-radius: 5%;" v-show="isLinkDisabled" style="margin-right: 8px;border-radius: 5%;" v-show="isLinkDisabled "
:disabled="splitType=='out' && redMesg"
>选入单据 >选入单据
</el-button> </el-button>
<el-button size="mini" type="primary" @click.native="delOrder()" :loading="submitLoading" <el-button size="mini" type="primary" @click.native="delOrder()" :loading="submitLoading"
@ -50,10 +51,12 @@
</el-button> </el-button>
<el-button size="mini" type="primary" @click.native="draftOrder()" :loading="submitLoading" <el-button size="mini" type="primary" @click.native="draftOrder()" :loading="submitLoading"
v-show="isLinkDisabled" style="margin-right: 8px;border-radius: 5%;" v-show="isLinkDisabled" style="margin-right: 8px;border-radius: 5%;"
:disabled="splitType=='out' && redMesg"
>保存 >保存
</el-button> </el-button>
<el-button size="mini" type="primary" @click.native="submit()" :loading="submitLoading" <el-button size="mini" type="primary" @click.native="submit()" :loading="submitLoading"
v-if="splitType=='out'" style="margin-right: 8px;border-radius: 5%;" v-if="splitType=='out'" style="margin-right: 8px;border-radius: 5%;"
:disabled="splitType=='out' && redMesg"
>上货完成 >上货完成
</el-button> </el-button>
<!-- <el-button size="mini" type="primary" @click.native="" :loading="submitLoading" v-show="isLinkDisabled" <!-- <el-button size="mini" type="primary" @click.native="" :loading="submitLoading" v-show="isLinkDisabled"

@ -118,7 +118,7 @@
>查询 >查询
</el-button </el-button
> >
<el-button type="primary" icon="el-icon-search" @click="allExport()" <el-button type="primary" icon="el-icon-printer" @click="allExport()"
>导出上货推荐单 >导出上货推荐单
</el-button </el-button
> >

@ -136,6 +136,77 @@
<el-tabs type="border-card" style="margin: 15px"> <el-tabs type="border-card" style="margin: 15px">
<!--单据业务详情--> <!--单据业务详情-->
<el-tab-pane>
<span slot="label">单据 {{ orderData.billNo }}-业务详情</span>
<el-table :data="busDataList" style="width: 100%;" highlight-current-row="true" border ref="multipleTable"
:row-style="rowStyleBiz"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="产品通用名称" prop="cpmctymc" width="120"></el-table-column>
<el-table-column label="制剂规格" prop="prepnSpec" width="80"></el-table-column>
<el-table-column label="包装规格" prop="spec" width="80"></el-table-column>
<!-- <el-table-column label="扫码数量" prop="scanActCount" width="80"></el-table-column>-->
<!-- <el-table-column label="单据数量" prop="count" width="80"></el-table-column>-->
<!-- 扫码数量列 -->
<el-table-column label="扫码数量" width="80">
<template slot-scope="scope">
<span :style="getScanActCountStyle(scope.row)">
<strong>{{ scope.row.scanActCount }}</strong>
</span>
</template>
</el-table-column>
<!-- 单据数量列 -->
<el-table-column label="单据数量" prop="count" width="80">
<template slot-scope="scope">
<strong>{{ scope.row.count }}</strong>
</template>
</el-table-column>
<el-table-column label="批次号" prop="batchNo"></el-table-column>
<el-table-column label="生产日期" prop="productDate"></el-table-column>
<el-table-column label="失效日期" prop="expireDate"></el-table-column>
<el-table-column label="批准文号" prop="zczbhhzbapzbh"></el-table-column>
<el-table-column label="生产厂家" prop="manufactory"></el-table-column>
<el-table-column label="医保编码" prop="ybbm"></el-table-column>
<el-table-column label="药品编码" prop="nameCode"></el-table-column>
</el-table>
<el-row style="text-align: right;font-size: 12px;margin-top: 10px">
<el-col span="24">
<div style="float: right">
<td>
<div style="background-color: #F56C6C;width: 10px;height: 10px;"></div>
</td>
<td>
<span style="color: #6d6d6d;"><pre>未扫码 </pre></span>
</td>
<td>
<div style="background-color: #E6A23C;width: 10px;height: 10px;"></div>
</td>
<td>
<span style="color: #6d6d6d;"><pre>部分扫码 </pre></span>
</td>
<td>
<div style="background-color: #67C23A;width: 10px;height: 10px;"></div>
</td>
<td>
<span style="color: #6d6d6d;"><pre>已完全扫码</pre></span>
</td>
</div>
</el-col>
</el-row>
<pagination
v-show="busDataTotal>0"
:total="busDataTotal"
:limit.sync="busQuery.limit"
:page.sync="busQuery.page"
@pagination="getBizDetailList"
></pagination>
</el-tab-pane>
<el-tab-pane> <el-tab-pane>
<span slot="label">单据 {{ orderData.billNo }}-追溯码详情</span> <span slot="label">单据 {{ orderData.billNo }}-追溯码详情</span>
<el-table :data="detailList" style="width: 100%;" highlight-current-row="true" border ref="multipleTable" <el-table :data="detailList" style="width: 100%;" highlight-current-row="true" border ref="multipleTable"
@ -162,31 +233,7 @@
@pagination="getCodeList" @pagination="getCodeList"
></pagination> ></pagination>
</el-tab-pane> </el-tab-pane>
<el-tab-pane>
<span slot="label">单据 {{ orderData.billNo }}-业务详情</span>
<el-table :data="busDataList" style="width: 100%;" highlight-current-row="true" border ref="multipleTable"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="药品编码" prop="nameCode"></el-table-column>
<el-table-column label="产品通用名称" prop="cpmctymc" width="120"></el-table-column>
<el-table-column label="批准文号" prop="zczbhhzbapzbh"></el-table-column>
<el-table-column label="包装规格" prop="spec" width="80"></el-table-column>
<el-table-column label="单据数量" prop="count" width="80"></el-table-column>
<el-table-column label="批次号" prop="batchNo"></el-table-column>
<el-table-column label="生产日期" prop="productDate"></el-table-column>
<el-table-column label="失效日期" prop="expireDate"></el-table-column>
<el-table-column label="医保编码" prop="ybbm"></el-table-column>
<el-table-column label="生产厂家" prop="manufactory"></el-table-column>
<!--<el-table-column label="扫码数量" prop="scanActCount"></el-table-column>-->
</el-table>
<pagination
v-show="busDataTotal>0"
:total="busDataTotal"
:limit.sync="busQuery.limit"
:page.sync="busQuery.page"
@pagination="getBizDetailList"
></pagination>
</el-tab-pane>
</el-tabs> </el-tabs>
@ -204,7 +251,7 @@
<selectPrescribeDialog <selectPrescribeDialog
ref="childRef" ref="childRef"
:workPlaceCode="null" :workPlaceCode="null"
:busType="this.orderData.busType" :busType="this.$route.query.busType"
:fromCorp="this.orderData.fromCorp" :fromCorp="this.orderData.fromCorp"
:confirmSelect="this.confirmSelect" :confirmSelect="this.confirmSelect"
:closeDialog="this.closeDialog" :closeDialog="this.closeDialog"
@ -229,7 +276,7 @@ import {
} from '@/api/collect/collectOrder' } from '@/api/collect/collectOrder'
import {checkCollectOrderManCode, draftOrder, finishCheckOrder, updateOrder} from '@/api/collect/splitCreateOrder' import {checkCollectOrderManCode, draftOrder, finishCheckOrder, updateOrder} from '@/api/collect/splitCreateOrder'
import selectPrescribeDialog from "@/views/collect/selectCollectOrderDialog"; import selectPrescribeDialog from "@/views/collect/selectCollectOrderDialog";
import { getSet } from '@/api/collect/collectSet' import {getSet} from '@/api/collect/collectSet'
export default { export default {
name: 'IocCollectOrderCheckCode', name: 'IocCollectOrderCheckCode',
@ -298,6 +345,21 @@ export default {
} }
}, },
methods: { methods: {
getScanActCountStyle(row) {
// const progress = row.scanActCount / row.count;
// let color;
// if (progress < 0.5) {
// color = 'red'; // 50%
// } else if (progress < 1.0) {
// color = 'orange'; // 50%100%
// } else {
// color = 'green'; // 100%绿
// }
return {
// color,
fontWeight: 'bold', //
};
},
enterKey() { enterKey() {
// this.result = "\n" // this.result = "\n"
this.errResult = '' this.errResult = ''
@ -337,7 +399,7 @@ export default {
if (this.filterQuery.udiCode.includes(';')) { if (this.filterQuery.udiCode.includes(';')) {
const codeArray = this.filterQuery.udiCode.split(';') const codeArray = this.filterQuery.udiCode.split(';')
const verify = this.verifyScanCount(codeArray) const verify = this.verifyScanCount(codeArray)
if (verify){ if (verify) {
this.filterQuery.udiCodeList = codeArray this.filterQuery.udiCodeList = codeArray
this.filterQuery.udiCode = '' this.filterQuery.udiCode = ''
this.filterQuery.orderIdFk = this.orderData.billNo this.filterQuery.orderIdFk = this.orderData.billNo
@ -512,6 +574,21 @@ export default {
this.codeCount = this.codeCount + query.udiCodeList.length this.codeCount = this.codeCount + query.udiCodeList.length
this.checkCodeEnd() this.checkCodeEnd()
} else { } else {
if ( this.busDataList.length > 0){
this.busDataList.forEach(item => {
// item id bizId
if (item.id == res.data.bizIdFk) {
//
if ( item.scanActCount == null){
item.scanActCount = 1;
}else {
item.scanActCount += 1;
}
}
});
}
// //
this.codeCount = this.codeCount + 1 this.codeCount = this.codeCount + 1
this.checkCodeList.push(res.data.code) this.checkCodeList.push(res.data.code)
@ -875,7 +952,9 @@ export default {
this.scanTitle = '扫码结果:' this.scanTitle = '扫码结果:'
this.scanResultType = 'success' this.scanResultType = 'success'
this.curRow = null this.curRow = null
this.orderData = {} this.orderData = {
busType: this.$route.query.busType
}
this.codeCount = 0 this.codeCount = 0
this.workplaceId = Number(this.$route.query.workplaceId) this.workplaceId = Number(this.$route.query.workplaceId)
this.codeList = [] this.codeList = []
@ -889,7 +968,7 @@ export default {
this.getInputFocus() this.getInputFocus()
this.selectSysParam() this.selectSysParam()
}, },
verifyScanCount(codeArray){ verifyScanCount(codeArray) {
// //
if (this.collectSet.scanMaxCount != null && this.collectSet.scanMaxCount != 0) { if (this.collectSet.scanMaxCount != null && this.collectSet.scanMaxCount != 0) {
if (this.collectSet.scanMaxCount > codeArray.length) { if (this.collectSet.scanMaxCount > codeArray.length) {
@ -925,9 +1004,23 @@ export default {
rowBackground.color = '#F56C6C' rowBackground.color = '#F56C6C'
} }
rowBackground.height = '38px' rowBackground.height = '38px'
return rowBackground;
},
rowStyleBiz({row, rowIndex}) {
let rowBackground = {}
const progress = row.scanActCount / row.count;
if (row.scanActCount == null || row.scanActCount == 0) {
rowBackground.color = '#F56C6C'; // 50%
} else if (progress < 1.0) {
rowBackground.color = '#E6A23C'; // 50%100%
} else {
rowBackground.color = '#56a717'; // 100%绿
}
rowBackground.height = '38px'
return rowBackground return rowBackground
} }
}, },
watch: { watch: {
resetKey(newVal, oldVal) { resetKey(newVal, oldVal) {
this.$refs.inputRef.focus() this.$refs.inputRef.focus()

@ -128,10 +128,10 @@
<el-row style="text-align: right;font-size: 12px;margin-top: 10px"> <el-row style="text-align: right;font-size: 12px;margin-top: 10px">
<el-col span="24"> <el-col span="24">
<div style="float: right"> <div style="float: right">
<!--<td>--> <!-- <td>-->
<!-- <div style="background-color: #F56C6C;width: 10px;height: 10px;"></div>--> <!-- <div style="background-color: #F56C6C;width: 10px;height: 10px;"></div>-->
<!--</td>--> <!-- </td>-->
<!--<td><span style="color: #6d6d6d;"><pre>未赋码 </pre></span></td>--> <!-- <td><span style="color: #6d6d6d;"><pre>未赋码 </pre></span></td>-->
<td> <td>

@ -5,19 +5,19 @@
<el-card :body-style="{margin:'20px'}" <el-card :body-style="{margin:'20px'}"
style="margin:20px 20px 20px 20px;;background-color: #e1f3fb;border-radius: 12px; position: relative;"> style="margin:20px 20px 20px 20px;;background-color: #e1f3fb;border-radius: 12px; position: relative;">
<div style="display: flex; justify-content: space-between; align-items: center; height: 26px; /* 约为 200px 的 1/3 */" > <div style="display: flex; justify-content: space-between; align-items: center; height: 26px; /* 约为 200px 的 1/3 */" >
<p>产品</p> <p style="font-size: 20px;background-color: #e1f3fb;font-weight: bold;">{{ info.cpmctymc }}</p> <p>产品通用</p> <p style="font-size: 20px;background-color: #e1f3fb;font-weight: bold;">{{ info.cpmctymc }}</p>
</div> </div>
<div style="display: flex; justify-content: space-between; align-items: center; height: 26px; /* 约为 200px 的 1/3 */" > <div style="display: flex; justify-content: space-between; align-items: center; height: 26px; /* 约为 200px 的 1/3 */" >
<p>层级标识</p><p style="font-size: 16px;background-color: #e1f3fb;font-weight: bold;">{{ info.nameCode }}</p> <p>包装规格</p><p style="font-size: 16px;background-color: #e1f3fb;font-weight: bold;">{{ info.ggxh }}</p>
</div> </div>
<div style="display: flex; justify-content: space-between; align-items: center; height: 26px; /* 约为 200px 的 1/3 */" > <div style="display: flex; justify-content: space-between; align-items: center; height: 26px; /* 约为 200px 的 1/3 */" >
<p>规格型号</p><p style="font-size: 16px;background-color: #e1f3fb;font-weight: bold;">{{ info.ggxh }}</p> <p>制剂规格</p><p style="font-size: 16px;background-color: #e1f3fb;font-weight: bold;">{{ info.prepnSpec }}</p>
</div> </div>
<div style="display: flex; justify-content: space-between; align-items: center; height: 26px; /* 约为 200px 的 1/3 */" > <div style="display: flex; justify-content: space-between; align-items: center; height: 26px; /* 约为 200px 的 1/3 */" >
<p>使用单位</p><p style="font-size: 16px;background-color: #e1f3fb;font-weight: bold;">{{ info.measureUnit }}</p> <p>批次号</p><p style="font-size: 16px;background-color: #e1f3fb;font-weight: bold;">{{ info.batchNo }}</p>
</div> </div>
<div style="display: flex; justify-content: space-between; align-items: center; height: 26px; /* 约为 200px 的 1/3 */" > <div style="display: flex; justify-content: space-between; align-items: center; height: 26px; /* 约为 200px 的 1/3 */" >
<p>槽位</p><p style="font-size: 16px;background-color: #e1f3fb;font-weight: bold;">{{ info.queueCode }}</p> <p>摆放位置</p><p style="font-size: 16px;background-color: #e1f3fb;font-weight: bold;">{{ info.queueCode }}</p>
</div> </div>
<div style="display: flex; justify-content: space-between; align-items: center; height: 26px; /* 约为 200px 的 1/3 */" > <div style="display: flex; justify-content: space-between; align-items: center; height: 26px; /* 约为 200px 的 1/3 */" >
<p></p><p style="font-size: 20px;background-color: #e1f3fb;font-weight: bold;margin-top: 80px"><i class="el-icon-s-opportunity"></i> <p></p><p style="font-size: 20px;background-color: #e1f3fb;font-weight: bold;margin-top: 80px"><i class="el-icon-s-opportunity"></i>

@ -1,18 +1,18 @@
<template> <template>
<div> <div>
<el-row :gutter="30"> <el-row :gutter="30">
<el-col :span="15" style="border: 1px solid #e3dfe1; padding:15px; height: 700px; margin-left: 20px;"> <el-col :span="15" style="border: 1px solid #e3dfe1; padding:15px; height: 700px; margin-left: 20px; overflow-y: scroll;">
<h2 style="font-weight: bold;">上货信息</h2> <h2 style="font-weight: bold;">上货信息</h2>
<div v-for="(item, index) in detailList" :key="index" class="product-info"> <div v-for="(item, index) in detailList" :key="index" class="product-info">
<div class="info-item"> <div class="info-item">
<p>产品通用名: {{ item.coName }}</p> <p class="p-title">产品通用名: {{ item.coName }}</p>
<p>规格: {{ item.bzgg }}</p> <p class="p-title">规格: {{ item.bzgg }}</p>
<p>产品标识: {{ item.nameCode }}</p> <p class="p-title">产品标识: {{ item.nameCode }}</p>
<p>批次号: {{ item.batchNo }}</p> <p class="p-title">批次号: {{ item.batchNo }}</p>
</div> </div>
<div class="count-items"> <div class="count-items">
<p>扫码数量: <span class="scan-count">{{ item.count }}</span></p> <p class="p-title">扫码数量: <span class="scan-count">{{ item.count }}</span></p>
<p>实际数量: <span class="actual-count">{{ item.reCount }}{{ item.prepnUnit }}</span></p> <p class="p-title">实际数量: <span class="actual-count">{{ item.reCount }}{{ item.prepnUnit }}</span></p>
</div> </div>
</div> </div>
@ -21,44 +21,44 @@
<h2 style="font-weight: bold;">扫码明细({{codeCount}})</h2> <h2 style="font-weight: bold;">扫码明细({{codeCount}})</h2>
<!--<el-divider></el-divider>--> <!--<el-divider></el-divider>-->
<div style=" border-top: 1px solid #ccc;"> <div style=" border-top: 1px solid #ccc;">
<el-table v-loading="loading" :data="codeArray" style="width: 100%;margin-top: 20px" max-height="350" <el-table v-loading="loading" :data="codeArray" style="width: 100%; margin-top: 20px" max-height="600px"
ref="multipleTable"> ref="multipleTable">
<!-- <el-table-column--> <!-- <el-table-column-->
<!-- type="selection"--> <!-- type="selection"-->
<!-- width="55">--> <!-- width="55">-->
<!-- </el-table-column>--> <!-- </el-table-column>-->
<el-table-column label="序号" type="index" width="55"> <el-table-column label="序号" type="index" width="55" style="text-align: right;">
</el-table-column> </el-table-column>
<el-table-column <el-table-column
label="追溯码" label="追溯码"
prop="code" prop="code"
show-overflow-tooltip show-overflow-tooltip
> style="text-align: right;">
<template slot-scope="scope"> <template slot-scope="scope">
<div style="font-size: 20px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;"> <div style="font-size: 20px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;">
{{ scope.row.code }} {{ scope.row.code }}
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作" width="100" fixed="right"> <!-- <el-table-column label="操作" width="100" fixed="right">-->
<template slot-scope="scope"> <!-- <template slot-scope="scope">-->
<el-button <!-- <el-button-->
type="text" <!-- type="text"-->
size="small" <!-- size="small"-->
@click.native.stop="deleteCode(scope.$index, scope.row)" <!-- @click.native.stop="deleteCode(scope.$index, scope.row)"-->
>减一 <!-- >减一-->
</el-button <!-- </el-button-->
> <!-- >-->
<el-button <!-- <el-button-->
type="text" <!-- type="text"-->
size="small" <!-- size="small"-->
@click.native.stop="editCode(scope.row)" <!-- @click.native.stop="editCode(scope.row)"-->
>编辑 <!-- >编辑-->
</el-button <!-- </el-button-->
> <!-- >-->
</template> <!-- </template>-->
</el-table-column> <!-- </el-table-column>-->
</el-table> </el-table>
</div> </div>
@ -286,13 +286,16 @@ export default {
.scan-count { .scan-count {
color: red; color: red;
font-size: 45px; font-size: 65px;
font-weight: bold; /* 添加这行代码,使字体加粗 */ font-weight: bold; /* 添加这行代码,使字体加粗 */
} }
.actual-count { .actual-count {
color: green; color: green;
font-size: 24px; font-size: 38px;
} }
.p-title{
font-size: 24px;
}
</style> </style>

Loading…
Cancel
Save