Selaa lähdekoodia

Merge branch 'v2.0.0-ga' of http://192.168.0.115:3000/bill/fuse-code into v2.0.0-ga

xzw 1 kuukausi sitten
vanhempi
commit
4465da9d5a
4 muutettua tiedostoa jossa 49 lisäystä ja 0 poistoa
  1. BIN
      public/images/logo_4dage.png
  2. BIN
      public/images/logo_police.png
  3. 30 0
      src/app.vue
  4. 19 0
      src/views/animation/right/am.vue

BIN
public/images/logo_4dage.png


BIN
public/images/logo_police.png


+ 30 - 0
src/app.vue

@@ -43,6 +43,12 @@
     <PwdModel v-if="inputPwd" @close="inputPwd = false" />
   </ConfigProvider>
   <Login v-else />
+
+  <p class="botton-marker">
+    <img src="/images/logo_police.png" /><span class="s1">&</span>
+    <img src="/images/logo_4dage.png" /><span class="s2">|</span
+    >公安部科技强警基础工作计划(2022JC13)
+  </p>
 </template>
 
 <script lang="ts" setup>
@@ -268,4 +274,28 @@ watch(
 .full-view #global-search {
   left: 20px !important;
 }
+
+.botton-marker {
+  display: flex;
+  align-items: center;
+  .s1 {
+    margin: 0 6px;
+  }
+  .s2 {
+    margin: 0 20px;
+  }
+  img {
+    // height: 25px;
+    margin: 0 4px;
+  }
+  position: absolute;
+  z-index: 99999999;
+  bottom: 20px;
+  left: 50%;
+  transform: translateX(-50%);
+  font-size: 14px;
+  pointer-events: none;
+  color: #fff;
+  letter-spacing: 2px;
+}
 </style>

+ 19 - 0
src/views/animation/right/am.vue

@@ -170,7 +170,26 @@ const actionsMap: Record<string, string> = {
   peone_forward: "匍匐前行",
   wall_crash: "松手摔倒",
   head_hit: "头被击中",
+  Fireman_Bash: "砸门",
+  Fireman_Climb: "翻越",
+  Fireman_Crouching: "蹲下",
+  Women_Bash: "砸门",
+  Women_Climb: "翻越",
+  Women_Crouching: "蹲下",
+  Women_Kicking: "踢门",
+  "Women_Opening-Door-Inwards": "开门",
+  "Fireman_Death-Form-Back-Headshot": "向前倒地",
+  "Fireman_Illeagal-Knee-Left": "左膝盖",
+  "Fireman_Illeagal-Knee-Right": "右膝盖",
+  "Fireman_Opening-Door-Inwards": "开门",
+  Fireman_Kicking: "踢门",
+  "Fireman_Left-Turn-Wbirefcase": "左转弯",
 };
+Object.keys(actionsMap).forEach((action) => {
+  const val = actionsMap[action];
+  let key = action.toLowerCase().replaceAll(/( |-)/gi, "_");
+  actionsMap[key] = val;
+});
 const keys = Object.keys(actionsMap);
 const amActions = computed(() => {
   const actions = amMap[getAMKey(props.am)]?.am?.getSupportActions() || [];