buli
2023-05-22 71b93327e8f3fb3bffffc7c033c1f782e7b6ab32
force-app/main/default/lwc/lexInputPickListCell/lexInputPickListCell.html
@@ -1,11 +1,31 @@
<!--
 * @Description:
 * @version:
 * @Author: chen jing wu
 * @Date: 2023-04-27 11:15:23
 * @LastEditors: chen jing wu
 * @LastEditTime: 2023-05-04 13:55:39
-->
<template>
    <template if:true={isPickList}>
        <lightning-combobox
        <template if:true={isReadOnly}>
            <lightning-combobox
                name="progress"
                variant="label-hidden"
                value={value}
                placeholder="Select Values"
                placeholder={value}
                options={options}
                onchange={handleChange} readonly="true"></lightning-combobox>
        </template>
        <template if:false={isReadOnly}>
            <lightning-combobox
                name="progress"
                variant="label-hidden"
                value={value}
                placeholder="--无--"
                options={options}
                onchange={handleChange} ></lightning-combobox>
        </template>
    </template>
</template>