Browse Source

发票管理细节

natasha 5 days ago
parent
commit
d7b3aabe1c

+ 17 - 2
src/views/personalCenter/components/InvoiceList.vue

@@ -1,7 +1,14 @@
 <template>
   <div class="my-share personal-info">
     <div class="common-title-box">
-      <h2>发票申请</h2>
+      <h2>发票管理</h2>
+      <span
+        >申请开发票请到【<a
+          style="text-decoration: underline"
+          @click="handleToOrder"
+          >订单管理</a
+        >】操作</span
+      >
     </div>
     <div class="search-item">
       <label>状态</label>
@@ -383,6 +390,9 @@ export default {
         });
       });
     },
+    handleToOrder() {
+      this.$router.push({ path: "/peraonal?type=order" });
+    },
   },
   //生命周期 - 创建完成(可以访问当前this实例)
   created() {
@@ -497,7 +507,12 @@ export default {
 }
 .common-title-box {
   display: flex;
-  justify-content: space-between;
+  align-items: center;
+  gap: 15px;
+  span {
+    font-size: 14px;
+    color: #4e5969;
+  }
 }
 :deep .el-table-column--selection .cell {
   padding: 0 10px !important;

+ 1 - 1
src/views/personalCenter/components/OrderList.vue

@@ -341,7 +341,7 @@
               style="cursor: pointer; text-decoration: underline"
               @click="handleToInvoice"
               >发票申请</a
-            >】下载发票
+            >】下载发票
           </p></el-checkbox
         >
       </el-checkbox-group>

+ 1 - 1
src/views/personalCenter/components/Setting.vue

@@ -1004,7 +1004,7 @@ export default {
       margin-top: 12px;
       .info-items {
         margin-bottom: 12px;
-        width: 37%;
+        width: 39%;
       }
       label {
         font-weight: 400;

+ 1 - 1
src/views/personalCenter/index.vue

@@ -101,7 +101,7 @@ export default {
         },
         {
           icon: "invoice",
-          label: "发票申请",
+          label: "发票管理",
           type: "invoice",
         },
         {