打印机部分类型

This commit is contained in:
duan
2024-10-11 18:25:37 +08:00
parent 82ad5973fb
commit b8e694abb9
4 changed files with 143 additions and 68 deletions

View File

@@ -1,6 +1,6 @@
<template>
<view class="u-p-b-24 u-m-b-24 border-bottom">
<view class="title font-bold">{{title}}</view>
<view class="title font-bold"> <text v-if="required" style="color: red;">*</text>{{title}}</view>
<picker @change="change" range-key="name" :value="value" :range="list">
<view class="u-m-t-16 u-flex u-row-between ">
<view class="color-333" v-if="selText">{{selText}}</view>
@@ -28,6 +28,9 @@
},
modelValue: {
type: String,
},
required:{
type:Boolean
}
})
const index = ref(props.modelValue)