Pārlūkot izejas kodu

点击复制标题

Karsa 2 gadi atpakaļ
vecāks
revīzija
e873b10133
2 mainītis faili ar 20 papildinājumiem un 6 dzēšanām
  1. 4 2
      src/views/chartShow/index.less
  2. 16 4
      src/views/chartShow/index.vue

+ 4 - 2
src/views/chartShow/index.less

@@ -35,8 +35,10 @@
 			justify-content: space-between;
 			align-items: center;
 			.chart-title {
-				// max-width: 50%;
-				flex: 1;
+				// flex: 1;
+				&:hover {
+					text-decoration: underline;
+				}
 			}
 			// .right-action {
 			// 	display: flex;

+ 16 - 4
src/views/chartShow/index.vue

@@ -1,9 +1,8 @@
 <!--  -->
 <template>
   <div class="chart-show">
-    <header class="chart-header">
-      <span class="chart-title">{{ chartInfo.ChartName }}</span>
-      <i class="el-icon-document-add" style="font-size: 24px"  @click="openNew"></i>
+    <header class="chart-header" @click="openNew">
+      <span class="chart-title" @click.stop @dblclick="copyText">{{ chartInfo.ChartName }}</span>
     </header>
     <template v-if="haveData">
       <div
@@ -27,7 +26,7 @@
         <li @click="refreshChart"><i class="el-icon-refresh"/>刷新</li>
       </ul>
     </div>
-  </div>
+  </div>.
 </template>
 
 <script lang="ts">
@@ -755,6 +754,18 @@ export default defineComponent({
             : '';
     }
 
+    /* 复制标题 */
+    const copyText = () => {
+      const { chartInfo } = state;
+      let input = document.createElement("input");
+      input.value = chartInfo.ChartName;
+      document.body.appendChild(input)
+      input.select();
+      document.execCommand('copy');
+      document.body.removeChild(input);
+      ElMessage.success('复制标题成功')
+    }
+
     /* 分享链接 */
     const copyUrl = () => {
       let input = document.createElement("input");
@@ -781,6 +792,7 @@ export default defineComponent({
       copyUrl,
       isShare,
       refreshChart,
+      copyText
     };
   },
 });