From 3962c2bb0435484b60a3e408e4738d792e249a53 Mon Sep 17 00:00:00 2001
From: buli <137736985@qq.com>
Date: 星期一, 05 六月 2023 11:09:55 +0800
Subject: [PATCH] LEX CommunityNewCmp

---
 force-app/main/default/lwc/customOutputGood/customOutputGood.html |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/force-app/main/default/lwc/customOutputGood/customOutputGood.html b/force-app/main/default/lwc/customOutputGood/customOutputGood.html
new file mode 100644
index 0000000..0277ba5
--- /dev/null
+++ b/force-app/main/default/lwc/customOutputGood/customOutputGood.html
@@ -0,0 +1,24 @@
+<template>
+    <template if:true={showTitle}>
+        <template if:true={showLink}>
+            <p style="height: 10px;"></p>
+            <a style="margin-left: 10px;margin-top: 10px;margin-bottom: 10px;" onclick={clickLink}><lightning-formatted-text value={outputValue}></lightning-formatted-text></a>
+            <p style="height: 10px;"></p>
+        </template>
+        <template if:false={showLink}>
+            <div style="margin-left: 10px;margin-top: 10px;margin-bottom: 10px;font-size:16px;color:#696969;">
+                <lightning-formatted-text value={outputValue}></lightning-formatted-text>
+            </div>
+        </template>
+    </template>
+    <template if:false={showTitle}>
+        <div style="text-align: right;">
+            <template if:true={showLink}>
+                <a style="margin-left: 10px;margin-right: 10px;" onclick={clickLink}><lightning-formatted-number value={outputValue}></lightning-formatted-number></a>
+            </template>
+            <template if:false={showLink}>
+                <lightning-formatted-number style="margin-left: 10px;margin-right: 10px;" value={outputValue}></lightning-formatted-number>
+            </template>
+        </div>
+    </template>
+</template>
\ No newline at end of file

--
Gitblit v1.9.1