Browse Source

修改库位字体变大

hella_online_20240829
lijuncheng 2 months ago
parent
commit
ff0fae1d0e
  1. 4
      src/mycomponents/scan/winScanPackAndLocation.vue
  2. 14
      src/pages/issue/coms/comScanIssuePack.vue
  3. 12
      src/uni_modules/uni-combox/components/uni-combox/uni-combox.vue

4
src/mycomponents/scan/winScanPackAndLocation.vue

@ -18,7 +18,7 @@
margin-right: 20rpx; margin-right: 20rpx;
border-radius: 8rpx; border-radius: 8rpx;
height: 30px;"> height: 30px;">
<view class="uni-center" style="width: 25%; "> <view class="uni-center" style="width: 25%; font-size: 40rpx;">
来源库位 来源库位
</view> </view>
<!-- style="width: 75%;padding: 8rpx" --> <!-- style="width: 75%;padding: 8rpx" -->
@ -31,7 +31,7 @@
@confirm="handleConfirm" style='height: 30rpx;border:1px solid #fff ;'></uni-combox> @confirm="handleConfirm" style='height: 30rpx;border:1px solid #fff ;'></uni-combox>
</view> </view>
<view v-else> <view v-else>
<text style="padding: 5px"> <text style="padding: 5px;font-size: 50rpx;">
{{fromLocationCode}} {{fromLocationCode}}
</text> </text>
</view> </view>

14
src/pages/issue/coms/comScanIssuePack.vue

@ -41,12 +41,12 @@
margin-right: 20rpx; margin-right: 20rpx;
margin-top: 8rpx; margin-top: 8rpx;
border-radius: 8rpx;"> border-radius: 8rpx;">
<view class="uni-center" style="width: 25%; "> <view class="uni-center" style="width: 25%; font-size: 35rpx; ">
来源库位 来源库位
</view> </view>
<view class="" style="width: 75%; padding: 8rpx;"> <view class="" style="width: 75%; padding: 8rpx;">
<uni-combox :candidates="fromLocationList" v-model="fromLocationCode" placeholder="请选择库位" <uni-combox class="my-combox" :candidates="fromLocationList" v-model="fromLocationCode" placeholder="请选择库位"
@confirm="fromLocationUpdate"></uni-combox> @confirm="fromLocationUpdate" :inputStyle="inputStyleObject"></uni-combox>
</view> </view>
</view> </view>
@ -162,7 +162,10 @@ import { getDirectoryItemArray } from '../../../common/directory.js';
defaultValueList: [], defaultValueList: [],
fromInventoryStatuses: "", fromInventoryStatuses: "",
packageInfo: {}, packageInfo: {},
label: {} label: {},
inputStyleObject:{
fontSize: "100rpx"
}
} }
}, },
created() { created() {
@ -773,4 +776,7 @@ import { getDirectoryItemArray } from '../../../common/directory.js';
max-height: 300rpx; max-height: 300rpx;
padding: 10rpx; padding: 10rpx;
} }
.my-combox{
font-size: 50px;
}
</style> </style>

12
src/uni_modules/uni-combox/components/uni-combox/uni-combox.vue

@ -169,7 +169,7 @@
} }
</script> </script>
<style lang="scss" scoped> <style lang="less">
.uni-combox { .uni-combox {
font-size: 14px; font-size: 14px;
border: 1px solid #DCDFE6; border: 1px solid #DCDFE6;
@ -205,8 +205,8 @@
.uni-combox__input { .uni-combox__input {
flex: 1; flex: 1;
font-size: 14px; font-size: 14px;
height: 22px; height: 26px;
line-height: 22px; line-height: 26px;
} }
.uni-combox__input-plac { .uni-combox__input-plac {
@ -245,7 +245,7 @@
cursor: pointer; cursor: pointer;
/* #endif */ /* #endif */
line-height: 36px; line-height: 36px;
font-size: 14px; font-size: 60rpx;
text-align: center; text-align: center;
// border-bottom: solid 1px #DDDDDD; // border-bottom: solid 1px #DDDDDD;
padding: 0px 10px; padding: 0px 10px;
@ -294,4 +294,8 @@
.uni-combox__no-border { .uni-combox__no-border {
border: none; border: none;
} }
.uni-input-input {
font-size: 60rpx;
}
</style> </style>

Loading…
Cancel
Save