Просмотр исходного кода

The details of the notification indicate audit clues.
https://dev.wormwood.com.sg/zentao/task-view-784.html

wudebin 10 месяцев назад
Родитель
Сommit
06a6174965
1 измененных файлов с 13 добавлено и 0 удалено
  1. 13 0
      Strides-Admin/src/views/notification/add.vue

+ 13 - 0
Strides-Admin/src/views/notification/add.vue

@@ -101,6 +101,7 @@
             @click="onBack">
             Back
           </el-button>
+          <div class="creatBy">Created by <b>{{formInfo.createBy}}</b> on <b>{{formInfo.createTime}}</b></div>
         </div>
       </el-form>
     </div>
@@ -285,6 +286,8 @@ export default {
     margin: 0 10px 22px;
   }
   .buttons {
+    display: flex;
+    align-items: center;
     padding-top: 15px;
     padding-bottom: 30px;
   }
@@ -299,4 +302,14 @@ export default {
   .form-unit ::v-deep .el-form-item__label {
     line-height: 30px;
   }
+  .sparator {
+    height: 1px;
+    background-color: #eee;
+  }
+  .creatBy {
+    color: #333;
+    font-size: 15px;
+    padding-left: 15px;
+    user-select: none;
+  }
 </style>