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

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

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

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

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

Loading…
Cancel
Save