From 07390e2fcb4adf27c928335bf27ae7939c5a80ad Mon Sep 17 00:00:00 2001
From: buli <137736985@qq.com>
Date: 星期二, 23 五月 2023 11:28:12 +0800
Subject: [PATCH] bakcup20230523
---
force-app/main/default/lwc/lexInputPickListCell/lexInputPickListCell.html | 22 ++++++++++++++++++++--
1 files changed, 20 insertions(+), 2 deletions(-)
diff --git a/force-app/main/default/lwc/lexInputPickListCell/lexInputPickListCell.html b/force-app/main/default/lwc/lexInputPickListCell/lexInputPickListCell.html
index 30d170f..edcca5c 100644
--- a/force-app/main/default/lwc/lexInputPickListCell/lexInputPickListCell.html
+++ b/force-app/main/default/lwc/lexInputPickListCell/lexInputPickListCell.html
@@ -4,11 +4,11 @@
* @Author: chen jing wu
* @Date: 2023-04-27 11:15:23
* @LastEditors: chen jing wu
- * @LastEditTime: 2023-05-04 13:55:39
+ * @LastEditTime: 2023-05-08 11:04:56
-->
<template>
<template if:true={isPickList}>
- <template if:true={isReadOnly}>
+ <!-- <template if:true={isReadOnly}>
<lightning-combobox
name="progress"
variant="label-hidden"
@@ -25,6 +25,24 @@
placeholder="--鏃�--"
options={options}
onchange={handleChange} ></lightning-combobox>
+ </template> -->
+ <template if:true={isRequired}>
+ <lightning-combobox
+ name="progress"
+ variant="label-hidden"
+ value={value}
+ placeholder="--鏃�--"
+ options={options}
+ onchange={handleChange} readonly={isReadOnly} required></lightning-combobox>
+ </template>
+ <template if:false={isRequired}>
+ <lightning-combobox
+ name="progress"
+ variant="label-hidden"
+ value={value}
+ placeholder="--鏃�--"
+ options={options}
+ onchange={handleChange} readonly={isReadOnly}></lightning-combobox>
</template>
</template>
--
Gitblit v1.9.1