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/components/head-tag/index.vue |   37 +++++++++++++++++++++++++++++++++++++
 1 files changed, 37 insertions(+), 0 deletions(-)

diff --git a/PipeLineLems/pipelinelems_web/src/widgets/OrderManagement-main/components/head-tag/index.vue b/PipeLineLems/pipelinelems_web/src/widgets/OrderManagement-main/components/head-tag/index.vue
new file mode 100644
index 0000000..cf06d95
--- /dev/null
+++ b/PipeLineLems/pipelinelems_web/src/widgets/OrderManagement-main/components/head-tag/index.vue
@@ -0,0 +1,37 @@
+<template>
+  <div class="head-tag">
+    {{ title }}
+  </div>
+</template>
+    
+  <script lang="ts">
+import { defineComponent } from 'vue'
+
+export default defineComponent({
+  name: 'HeadTag',
+  props: {
+    title: {
+      type: String,
+      default: '',
+    },
+  },
+  setup() {
+    return {}
+  },
+})
+</script>
+      
+  <style lang="scss" scoped>
+.head-tag {
+  width: 74px;
+  height: 26px;
+  line-height: 26px;
+  text-align: center;
+  background: #f3f3f3;
+  border-radius: 0px 0px 0px 0px;
+  opacity: 1;
+  font-size: 14px;
+  color: #333333;
+  font-weight: bold;
+}
+</style>
\ No newline at end of file

--
Gitblit v1.9.3