优化(ui): 放大细码与表格等字体提升可读性

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
郭鸿轩 2026-08-26 17:55:38 +08:00
parent fc6e9915a6
commit e7827c4714
11 changed files with 116 additions and 101 deletions

View File

@ -58,7 +58,7 @@ import { audioManager } from '@/utils/audioManager'
.textCenter { .textCenter {
width: 100%; width: 100%;
text-align: center; text-align: center;
font-size: 15px; font-size: 16px;
color: #808080; color: #808080;
margin-top: 88rpx; margin-top: 88rpx;
} }
@ -105,7 +105,7 @@ import { audioManager } from '@/utils/audioManager'
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
font-size: 15px; font-size: 16px;
} }
.flex-white-plr26-column { .flex-white-plr26-column {
@ -114,7 +114,7 @@ import { audioManager } from '@/utils/audioManager'
padding-right: 26rpx; padding-right: 26rpx;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
font-size: 15px; font-size: 16px;
} }
.bdb_f5 { .bdb_f5 {
@ -155,12 +155,12 @@ import { audioManager } from '@/utils/audioManager'
.redXingh { .redXingh {
color: #FF0000; color: #FF0000;
font-size: 14px; font-size: 15px;
} }
.bluecolor { .bluecolor {
color: #0000FF; color: #0000FF;
font-size: 16px; font-size: 17px;
} }
.udropdown { .udropdown {
@ -174,7 +174,7 @@ import { audioManager } from '@/utils/audioManager'
.width276 { .width276 {
width: 546rpx; width: 546rpx;
color: #c5c5c5; color: #c5c5c5;
font-size: 14px; font-size: 15px;
} }
.cBlack { .cBlack {
@ -185,7 +185,7 @@ import { audioManager } from '@/utils/audioManager'
margin-bottom: -10rpx; margin-bottom: -10rpx;
margin-top: 16rpx; margin-top: 16rpx;
padding-left: 26rpx; padding-left: 26rpx;
font-size: 30rpx; font-size: 32rpx;
color: #555555; color: #555555;
font-weight: bold; font-weight: bold;
} }
@ -193,7 +193,7 @@ import { audioManager } from '@/utils/audioManager'
.width242 { .width242 {
width: 484rpx; width: 484rpx;
color: #c5c5c5; color: #c5c5c5;
font-size: 14px; font-size: 15px;
} }
.myCard { .myCard {
@ -211,7 +211,7 @@ import { audioManager } from '@/utils/audioManager'
.cardRow { .cardRow {
display: flex; display: flex;
align-items: center; align-items: center;
font-size: 14px; font-size: 15px;
margin-bottom: 8rpx; margin-bottom: 8rpx;
} }
@ -231,7 +231,7 @@ import { audioManager } from '@/utils/audioManager'
} }
.cardTopName { .cardTopName {
font-size: 16px; font-size: 17px;
margin-bottom: 8rpx; margin-bottom: 8rpx;
color: #000000; color: #000000;
overflow: hidden; overflow: hidden;
@ -265,7 +265,7 @@ import { audioManager } from '@/utils/audioManager'
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: flex-end; justify-content: flex-end;
font-size: 15px; font-size: 16px;
color: #007AFF; color: #007AFF;
margin-top: 12rpx; margin-top: 12rpx;
margin-bottom: 16rpx; margin-bottom: 16rpx;
@ -279,7 +279,7 @@ import { audioManager } from '@/utils/audioManager'
position: absolute; position: absolute;
right: 26rpx; right: 26rpx;
bottom: 80rpx; bottom: 80rpx;
font-size: 15px; font-size: 16px;
} }
.fzrLeft { .fzrLeft {
@ -359,4 +359,19 @@ import { audioManager } from '@/utils/audioManager'
height: 32rpx; height: 32rpx;
background-color: #EEEEEE; background-color: #EEEEEE;
} }
/* PDA:放大 u-select 确认/取消按钮点击区域 */
.u-select__header {
height: 110rpx !important;
padding: 0 16rpx !important;
}
.u-select__header__btn {
font-size: 36rpx !important;
line-height: 110rpx !important;
padding: 0 40rpx !important;
min-width: 140rpx;
text-align: center;
box-sizing: border-box;
}
</style> </style>

View File

@ -46,12 +46,12 @@ export const FABRIC_INFO_FIELDS = [
/** 细码表格列(不含操作列) */ /** 细码表格列(不含操作列) */
export const FINE_CODE_TABLE_COLUMNS = [ export const FINE_CODE_TABLE_COLUMNS = [
{ label: '序号', key: 'seq', width: 70 }, { label: '序号', key: 'seq', width: 80 },
{ label: '卷号', key: 'roll_no', width: 90 }, { label: '卷号', key: 'roll_no', width: 110 },
{ label: '匹数', key: 'roll', width: 90 }, { label: '匹数', key: 'roll', width: 100 },
{ label: '数量(重量)', key: 'weight', width: 120 }, { label: '数量(重量)', key: 'weight', width: 140 },
{ label: '条码', key: 'bar_code', width: 260 }, { label: '条码', key: 'bar_code', width: 280 },
{ label: '仓位', key: 'position', width: 110 }, { label: '仓位', key: 'position', width: 130 },
]; ];
/** 审核状态变更操作配置(apiKey 对应 gfmOtherDeliveryOrder 下的方法名) */ /** 审核状态变更操作配置(apiKey 对应 gfmOtherDeliveryOrder 下的方法名) */
@ -149,12 +149,12 @@ export function normalizeOrder(order) {
/** 扫码详情区表格列 */ /** 扫码详情区表格列 */
export const SCAN_DETAIL_TABLE_COLUMNS = [ export const SCAN_DETAIL_TABLE_COLUMNS = [
{ label: '坯布编号', key: 'grey_fabric_code', width: 140 }, { label: '坯布编号', key: 'grey_fabric_code', width: 160 },
{ label: '坯布名称', key: 'grey_fabric_name', width: 140 }, { label: '坯布名称', key: 'grey_fabric_name', width: 160 },
{ label: '纱批', key: 'yarn_batch', width: 120 }, { label: '纱批', key: 'yarn_batch', width: 130 },
{ label: '机号', key: 'machine_number', width: 100 }, { label: '机号', key: 'machine_number', width: 110 },
{ label: '条数', key: 'roll', width: 80 }, { label: '条数', key: 'roll', width: 90 },
{ label: '重量', key: 'weight', width: 100 }, { label: '重量', key: 'weight', width: 110 },
]; ];
/** 扫码详情区可勾选锁定维度(对应 PDAScanGfmOtherDeliveryOrderParam 的 *_lock;勾选后参与表格分组并随扫码请求传给后端) */ /** 扫码详情区可勾选锁定维度(对应 PDAScanGfmOtherDeliveryOrderParam 的 *_lock;勾选后参与表格分组并随扫码请求传给后端) */
@ -525,7 +525,7 @@ export function orderToFormFields(order) {
export function getFineCodeTableColumns(readonly) { export function getFineCodeTableColumns(readonly) {
const cols = [...FINE_CODE_TABLE_COLUMNS]; const cols = [...FINE_CODE_TABLE_COLUMNS];
if (!readonly) cols.push({ label: '操作', key: 'action', width: 90 }); if (!readonly) cols.push({ label: '操作', key: 'action', width: 100 });
return cols; return cols;
} }

View File

@ -53,16 +53,16 @@ export const STOCK_TABLE_COLUMNS = [
/** 细码明细表格列 */ /** 细码明细表格列 */
export const WAREHOUSE_DETAIL_COLUMNS = [ export const WAREHOUSE_DETAIL_COLUMNS = [
{ label: '序号', key: 'seq', width: 70 }, { label: '序号', key: 'seq', width: 80 },
{ label: '卷号', key: 'volume_number', width: 90 }, { label: '卷号', key: 'volume_number', width: 110 },
{ label: '匹数', key: 'roll', width: 90 }, { label: '匹数', key: 'roll', width: 100 },
{ label: '数量(KG)', key: 'weight', width: 110 }, { label: '数量(KG)', key: 'weight', width: 130 },
{ label: '条码', key: 'bar_code', width: 240 }, { label: '条码', key: 'bar_code', width: 280 },
{ label: '仓位', key: 'position', width: 100 }, { label: '仓位', key: 'position', width: 120 },
{ label: '颜色', key: 'gray_fabric_color_name', width: 100 }, { label: '颜色', key: 'gray_fabric_color_name', width: 120 },
{ label: '织厂', key: 'supplier_name', width: 120 }, { label: '织厂', key: 'supplier_name', width: 140 },
{ label: '机台', key: 'machine_number', width: 90 }, { label: '机台', key: 'machine_number', width: 100 },
{ label: '库龄(天)', key: 'days_of_age', width: 90 }, { label: '库龄(天)', key: 'days_of_age', width: 110 },
]; ];
export function formatStockWeightWithUnit(weight, unitName) { export function formatStockWeightWithUnit(weight, unitName) {

View File

@ -42,7 +42,7 @@ export default {
overflow: hidden; overflow: hidden;
} }
.popupTitle { .popupTitle {
font-size: 32rpx; font-size: 34rpx;
font-weight: bold; font-weight: bold;
text-align: center; text-align: center;
margin-bottom: 20rpx; margin-bottom: 20rpx;
@ -58,7 +58,7 @@ export default {
display: flex; display: flex;
padding: 16rpx 0; padding: 16rpx 0;
border-bottom: 1rpx solid #f0f0f0; border-bottom: 1rpx solid #f0f0f0;
font-size: 28rpx; font-size: 30rpx;
} }
.label { .label {
width: 180rpx; width: 180rpx;

View File

@ -58,10 +58,10 @@ export default {
return getFineCodeTableWidth(this.columns); return getFineCodeTableWidth(this.columns);
}, },
tableScrollHeight() { tableScrollHeight() {
const rowHeight = 56; const rowHeight = 68;
const headerHeight = 56; const headerHeight = 68;
const total = headerHeight + this.list.length * rowHeight; const total = headerHeight + this.list.length * rowHeight;
return `${Math.min(Math.max(total, 112), 480)}rpx`; return `${Math.min(Math.max(total, 136), 520)}rpx`;
}, },
}, },
methods: { methods: {
@ -91,7 +91,7 @@ export default {
overflow: hidden; overflow: hidden;
} }
.popupTitle { .popupTitle {
font-size: 32rpx; font-size: 34rpx;
font-weight: bold; font-weight: bold;
text-align: center; text-align: center;
margin-bottom: 20rpx; margin-bottom: 20rpx;
@ -102,7 +102,7 @@ export default {
text-align: center; text-align: center;
color: #999; color: #999;
padding: 40rpx 0; padding: 40rpx 0;
font-size: 28rpx; font-size: 30rpx;
} }
.tableScroll { .tableScroll {
width: 100%; width: 100%;
@ -131,8 +131,8 @@ export default {
} }
.tableCell { .tableCell {
flex-shrink: 0; flex-shrink: 0;
padding: 12rpx 8rpx; padding: 16rpx 10rpx;
font-size: 22rpx; font-size: 28rpx;
color: #333; color: #333;
text-align: center; text-align: center;
border-right: 1rpx solid #e1e1e1; border-right: 1rpx solid #e1e1e1;
@ -152,7 +152,7 @@ export default {
} }
.tableTip { .tableTip {
margin-top: 16rpx; margin-top: 16rpx;
font-size: 22rpx; font-size: 26rpx;
color: #999; color: #999;
text-align: center; text-align: center;
flex-shrink: 0; flex-shrink: 0;

View File

@ -55,7 +55,7 @@ export default {
} }
.process-in-binName { .process-in-binName {
margin-left: 12rpx; margin-left: 12rpx;
font-size: 26rpx; font-size: 28rpx;
color: #333; color: #333;
max-width: 200rpx; max-width: 200rpx;
overflow: hidden; overflow: hidden;
@ -64,7 +64,7 @@ export default {
} }
.process-in-binClear { .process-in-binClear {
margin-left: 16rpx; margin-left: 16rpx;
font-size: 26rpx; font-size: 28rpx;
color: #2979ff; color: #2979ff;
flex-shrink: 0; flex-shrink: 0;
} }

View File

@ -82,16 +82,16 @@
import { buildItemGroups } from '@/common/storeGoodsProcessIn'; import { buildItemGroups } from '@/common/storeGoodsProcessIn';
const FINE_COLUMNS = [ const FINE_COLUMNS = [
{ label: '卷号', key: 'volume_number', width: 90 }, { label: '卷号', key: 'volume_number', width: 110 },
{ label: '匹数', key: 'roll', width: 90 }, { label: '匹数', key: 'roll', width: 100 },
{ label: '数量', key: 'weight', width: 110 }, { label: '数量', key: 'weight', width: 130 },
{ label: '仓位', key: 'warehouse_bin_name', width: 120 }, { label: '仓位', key: 'warehouse_bin_name', width: 140 },
{ label: '缸号', key: 'dye_factory_dyelot_number', width: 140 }, { label: '缸号', key: 'dye_factory_dyelot_number', width: 160 },
]; ];
const TARE_COLUMNS = [ const TARE_COLUMNS = [
{ label: '纸筒重量', key: 'paper_tube_weight', width: 120 }, { label: '纸筒重量', key: 'paper_tube_weight', width: 140 },
{ label: '包装重量', key: 'package_weight', width: 120 }, { label: '包装重量', key: 'package_weight', width: 140 },
]; ];
export default { export default {
@ -113,7 +113,7 @@ export default {
cols.splice(idx + 1, 0, ...TARE_COLUMNS); cols.splice(idx + 1, 0, ...TARE_COLUMNS);
} }
if (this.deletable) { if (this.deletable) {
cols.push({ label: '操作', key: 'action', width: 90 }); cols.push({ label: '操作', key: 'action', width: 100 });
} }
return cols; return cols;
}, },
@ -160,7 +160,7 @@ export default {
border-bottom: 1rpx solid #e6f0ff; border-bottom: 1rpx solid #e6f0ff;
} }
.process-in-productTitle { .process-in-productTitle {
font-size: 28rpx; font-size: 32rpx;
font-weight: bold; font-weight: bold;
color: #1a1a1a; color: #1a1a1a;
flex: 1; flex: 1;
@ -168,14 +168,14 @@ export default {
} }
.process-in-productSum, .process-in-productSum,
.process-in-colorSum { .process-in-colorSum {
font-size: 24rpx; font-size: 28rpx;
color: #666; color: #666;
flex-shrink: 0; flex-shrink: 0;
} }
.process-in-subText { .process-in-subText {
font-weight: normal; font-weight: normal;
color: #666; color: #666;
font-size: 24rpx; font-size: 28rpx;
} }
.process-in-colorBlock { .process-in-colorBlock {
padding: 16rpx 20rpx 20rpx; padding: 16rpx 20rpx 20rpx;
@ -191,7 +191,7 @@ export default {
margin-bottom: 8rpx; margin-bottom: 8rpx;
} }
.process-in-colorTitle { .process-in-colorTitle {
font-size: 26rpx; font-size: 30rpx;
font-weight: bold; font-weight: bold;
color: #333; color: #333;
flex: 1; flex: 1;
@ -201,17 +201,17 @@ export default {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
gap: 16rpx 24rpx; gap: 16rpx 24rpx;
font-size: 24rpx; font-size: 28rpx;
color: #888; color: #888;
margin-bottom: 12rpx; margin-bottom: 12rpx;
} }
.process-in-fcTitle { .process-in-fcTitle {
font-size: 24rpx; font-size: 28rpx;
color: #2979ff; color: #2979ff;
margin-bottom: 8rpx; margin-bottom: 8rpx;
} }
.process-in-fcEmpty { .process-in-fcEmpty {
font-size: 24rpx; font-size: 28rpx;
color: #bbb; color: #bbb;
padding: 8rpx 0; padding: 8rpx 0;
} }
@ -236,8 +236,8 @@ export default {
} }
.process-in-fcCell { .process-in-fcCell {
box-sizing: border-box; box-sizing: border-box;
padding: 10rpx 8rpx; padding: 14rpx 10rpx;
font-size: 22rpx; font-size: 28rpx;
color: #333; color: #333;
border-right: 1rpx solid #f0f0f0; border-right: 1rpx solid #f0f0f0;
word-break: break-all; word-break: break-all;
@ -254,7 +254,7 @@ export default {
} }
.process-in-fcTip { .process-in-fcTip {
margin-top: 8rpx; margin-top: 8rpx;
font-size: 22rpx; font-size: 26rpx;
color: #999; color: #999;
} }
</style> </style>

View File

@ -82,12 +82,12 @@
import { buildItemGroups } from '@/common/storeGoodsProcessOut'; import { buildItemGroups } from '@/common/storeGoodsProcessOut';
const FINE_COLUMNS = [ const FINE_COLUMNS = [
{ label: '卷号', key: 'volume_number', width: 90 }, { label: '卷号', key: 'volume_number', width: 110 },
{ label: '匹数', key: 'roll', width: 90 }, { label: '匹数', key: 'roll', width: 100 },
{ label: '数量', key: 'weight', width: 110 }, { label: '数量', key: 'weight', width: 130 },
{ label: '条码', key: 'bar_code', width: 220 }, { label: '条码', key: 'bar_code', width: 260 },
{ label: '仓位', key: 'warehouse_bin_name', width: 120 }, { label: '仓位', key: 'warehouse_bin_name', width: 140 },
{ label: '缸号', key: 'dye_factory_dyelot_number', width: 140 }, { label: '缸号', key: 'dye_factory_dyelot_number', width: 160 },
]; ];
export default { export default {
@ -102,7 +102,7 @@ export default {
}, },
fineColumns() { fineColumns() {
if (!this.deletable) return FINE_COLUMNS; if (!this.deletable) return FINE_COLUMNS;
return [...FINE_COLUMNS, { label: '操作', key: 'action', width: 90 }]; return [...FINE_COLUMNS, { label: '操作', key: 'action', width: 100 }];
}, },
fineTableWidth() { fineTableWidth() {
const total = this.fineColumns.reduce((sum, col) => sum + (col.width || 100), 0); const total = this.fineColumns.reduce((sum, col) => sum + (col.width || 100), 0);
@ -147,7 +147,7 @@ export default {
border-bottom: 1rpx solid #e6f0ff; border-bottom: 1rpx solid #e6f0ff;
} }
.process-in-productTitle { .process-in-productTitle {
font-size: 28rpx; font-size: 32rpx;
font-weight: bold; font-weight: bold;
color: #1a1a1a; color: #1a1a1a;
flex: 1; flex: 1;
@ -155,14 +155,14 @@ export default {
} }
.process-in-productSum, .process-in-productSum,
.process-in-colorSum { .process-in-colorSum {
font-size: 24rpx; font-size: 28rpx;
color: #666; color: #666;
flex-shrink: 0; flex-shrink: 0;
} }
.process-in-subText { .process-in-subText {
font-weight: normal; font-weight: normal;
color: #666; color: #666;
font-size: 24rpx; font-size: 28rpx;
} }
.process-in-colorBlock { .process-in-colorBlock {
padding: 16rpx 20rpx 20rpx; padding: 16rpx 20rpx 20rpx;
@ -178,7 +178,7 @@ export default {
margin-bottom: 8rpx; margin-bottom: 8rpx;
} }
.process-in-colorTitle { .process-in-colorTitle {
font-size: 26rpx; font-size: 30rpx;
font-weight: bold; font-weight: bold;
color: #333; color: #333;
flex: 1; flex: 1;
@ -188,17 +188,17 @@ export default {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
gap: 16rpx 24rpx; gap: 16rpx 24rpx;
font-size: 24rpx; font-size: 28rpx;
color: #888; color: #888;
margin-bottom: 12rpx; margin-bottom: 12rpx;
} }
.process-in-fcTitle { .process-in-fcTitle {
font-size: 24rpx; font-size: 28rpx;
color: #2979ff; color: #2979ff;
margin-bottom: 8rpx; margin-bottom: 8rpx;
} }
.process-in-fcEmpty { .process-in-fcEmpty {
font-size: 24rpx; font-size: 28rpx;
color: #bbb; color: #bbb;
padding: 8rpx 0; padding: 8rpx 0;
} }
@ -223,8 +223,8 @@ export default {
} }
.process-in-fcCell { .process-in-fcCell {
box-sizing: border-box; box-sizing: border-box;
padding: 10rpx 8rpx; padding: 14rpx 10rpx;
font-size: 22rpx; font-size: 28rpx;
color: #333; color: #333;
border-right: 1rpx solid #f0f0f0; border-right: 1rpx solid #f0f0f0;
word-break: break-all; word-break: break-all;
@ -241,7 +241,7 @@ export default {
} }
.process-in-fcTip { .process-in-fcTip {
margin-top: 8rpx; margin-top: 8rpx;
font-size: 22rpx; font-size: 26rpx;
color: #999; color: #999;
} }
</style> </style>

View File

@ -534,7 +534,7 @@
fontSize: { fontSize: {
type: Array, type: Array,
default() { default() {
return [20] return [28]
} }
}, },
defaultColWidth: { defaultColWidth: {
@ -548,7 +548,7 @@
minHeight: { minHeight: {
type: Array, type: Array,
default() { default() {
return [70] return [84]
} }
}, },
headerBgColor: { headerBgColor: {

View File

@ -7,7 +7,7 @@
margin-top: 32rpx; margin-top: 32rpx;
} }
.fabric-out-sectionTitle { .fabric-out-sectionTitle {
font-size: 30rpx; font-size: 32rpx;
font-weight: bold; font-weight: bold;
padding: 24rpx 26rpx 12rpx; padding: 24rpx 26rpx 12rpx;
border-left: 6rpx solid #007AFF; border-left: 6rpx solid #007AFF;
@ -16,7 +16,7 @@
.fabric-out-scanTip { .fabric-out-scanTip {
padding: 20rpx 26rpx; padding: 20rpx 26rpx;
color: #fa8c16; color: #fa8c16;
font-size: 26rpx; font-size: 28rpx;
background: #fff7e6; background: #fff7e6;
margin: 16rpx 26rpx; margin: 16rpx 26rpx;
border-radius: 8rpx; border-radius: 8rpx;
@ -24,7 +24,7 @@
.fabric-out-msgTip { .fabric-out-msgTip {
padding: 12rpx 26rpx; padding: 12rpx 26rpx;
color: #52c41a; color: #52c41a;
font-size: 26rpx; font-size: 28rpx;
} }
.fabric-out-detailList { .fabric-out-detailList {
padding: 0 26rpx; padding: 0 26rpx;
@ -39,7 +39,7 @@
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
font-size: 28rpx; font-size: 30rpx;
font-weight: bold; font-weight: bold;
padding-bottom: 12rpx; padding-bottom: 12rpx;
border-bottom: 1rpx solid #f0f0f0; border-bottom: 1rpx solid #f0f0f0;
@ -49,7 +49,7 @@
align-items: center; align-items: center;
gap: 20rpx; gap: 20rpx;
padding-top: 12rpx; padding-top: 12rpx;
font-size: 26rpx; font-size: 28rpx;
color: #666; color: #666;
} }
.fabric-out-scanRow { .fabric-out-scanRow {
@ -66,7 +66,7 @@
.fabric-out-delCheck { .fabric-out-delCheck {
display: flex; display: flex;
align-items: center; align-items: center;
font-size: 26rpx; font-size: 28rpx;
color: #666; color: #666;
white-space: nowrap; white-space: nowrap;
} }
@ -82,7 +82,7 @@
flex-wrap: wrap; flex-wrap: wrap;
padding: 16rpx 20rpx; padding: 16rpx 20rpx;
border-bottom: 1rpx solid #f0f0f0; border-bottom: 1rpx solid #f0f0f0;
font-size: 26rpx; font-size: 28rpx;
color: #333; color: #333;
} }
.fabric-out-scanDetailRow--2col { .fabric-out-scanDetailRow--2col {
@ -123,8 +123,8 @@
font-weight: bold; font-weight: bold;
} }
.fabric-out-scanDetailTableCell { .fabric-out-scanDetailTableCell {
padding: 14rpx 8rpx; padding: 16rpx 10rpx;
font-size: 24rpx; font-size: 28rpx;
color: #333; color: #333;
text-align: center; text-align: center;
box-sizing: border-box; box-sizing: border-box;
@ -133,7 +133,7 @@
.fabric-out-scanDetailEmpty { .fabric-out-scanDetailEmpty {
padding: 24rpx; padding: 24rpx;
text-align: center; text-align: center;
font-size: 26rpx; font-size: 28rpx;
color: #999; color: #999;
} }
.fabric-out-submitView { .fabric-out-submitView {

View File

@ -186,15 +186,15 @@ page { background-color: #F8F8F8; }
border-radius: 12rpx; border-radius: 12rpx;
} }
.infoTitle { .infoTitle {
font-size: 30rpx; font-size: 32rpx;
font-weight: bold; font-weight: bold;
margin-bottom: 16rpx; margin-bottom: 16rpx;
color: #333; color: #333;
} }
.infoRow { .infoRow {
display: flex; display: flex;
font-size: 26rpx; font-size: 28rpx;
padding: 8rpx 0; padding: 10rpx 0;
} }
.infoLabel { .infoLabel {
width: 160rpx; width: 160rpx;
@ -208,8 +208,8 @@ page { background-color: #F8F8F8; }
} }
.summaryBar { .summaryBar {
margin: 16rpx 24rpx 0; margin: 16rpx 24rpx 0;
padding: 12rpx 16rpx; padding: 14rpx 16rpx;
font-size: 26rpx; font-size: 28rpx;
color: #666; color: #666;
background: #fff; background: #fff;
border-radius: 8rpx; border-radius: 8rpx;
@ -241,8 +241,8 @@ page { background-color: #F8F8F8; }
} }
.tableCell { .tableCell {
flex-shrink: 0; flex-shrink: 0;
padding: 12rpx 8rpx; padding: 16rpx 10rpx;
font-size: 22rpx; font-size: 28rpx;
color: #333; color: #333;
text-align: center; text-align: center;
border-right: 1rpx solid #e1e1e1; border-right: 1rpx solid #e1e1e1;