From 3aedad63dd01f1fc5154cb520af32edab967d6e0 Mon Sep 17 00:00:00 2001
From: schangxiang@126.com <schangxiang@126.com>
Date: 周一, 12 5月 2025 09:15:26 +0800
Subject: [PATCH] Merge branch 'master' of http://222.71.245.114:9086/r/HIA24016N_PipeLineDemo

---
 PipeLineLems/pipelinelems_web/src/widgets/OrderManagement-main/OrderManagement.settings.vue |   31 +++++++++++++++++++++++++++++++
 1 files changed, 31 insertions(+), 0 deletions(-)

diff --git a/PipeLineLems/pipelinelems_web/src/widgets/OrderManagement-main/OrderManagement.settings.vue b/PipeLineLems/pipelinelems_web/src/widgets/OrderManagement-main/OrderManagement.settings.vue
new file mode 100644
index 0000000..4e8380e
--- /dev/null
+++ b/PipeLineLems/pipelinelems_web/src/widgets/OrderManagement-main/OrderManagement.settings.vue
@@ -0,0 +1,31 @@
+<!-- eslint-disable vue/no-mutating-props -->
+<template>
+  <div class="Example">
+    <h3>Example</h3>
+    <pre>{{ props.node.style }}</pre>
+    <div>
+      {{ props.text }}
+    </div>
+    <input v-model="props.node.style.width" />
+    <button @click="props.node.style.width = '100px'">button</button>
+  </div>
+</template>
+
+<script setup lang="ts">
+const $props = defineProps<{
+  node: any
+  href?: string
+  text?: string
+}>()
+
+const node = $props.node
+const props = node.props
+</script>
+
+<style lang="scss" scoped>
+.Example {
+  width: 100px;
+  height: 100px;
+  border: 1px solid #000;
+}
+</style>

--
Gitblit v1.9.3