Browse Source

fix: 日常任务插件遍历时的key值修改

develop
aBin 4 years ago
parent
commit
cd262853ba
  1. 1
      CHANGELOG.md
  2. 2
      src/components/Globals/Globals.vue

1
CHANGELOG.md

@ -13,6 +13,7 @@
- | 模拟接口测试 | [69e7931](https://dd.tall.wiki/gitea/wally/TALL-MUI-3/commits/69e7931)
- | 配置默认插件接口 | [f0c177d](https://dd.tall.wiki/gitea/wally/TALL-MUI-3/commits/f0c177d)
- | 全局插件及默认插件位置修改 | [6c80d08](https://dd.tall.wiki/gitea/wally/TALL-MUI-3/commits/6c80d08)
- | 日常任务插件调整 | [c1881f9](https://dd.tall.wiki/gitea/wally/TALL-MUI-3/commits/c1881f9)
- | 时间基准线,默认插件 | [a33ba1e](https://dd.tall.wiki/gitea/wally/TALL-MUI-3/commits/a33ba1e)
- | 时间轴界面 | [33927e9](https://dd.tall.wiki/gitea/wally/TALL-MUI-3/commits/33927e9)
- | 时间轴修改状态时提示框增加 | [e841392](https://dd.tall.wiki/gitea/wally/TALL-MUI-3/commits/e841392)

2
src/components/Globals/Globals.vue

@ -8,7 +8,7 @@
<template v-for="item in tasks">
<template v-if="item.plugins">
<template v-for="(pluginArr, arrIndex) in item.plugins">
<view class="p-0 u-col-between" :key="arrIndex">
<view class="p-0 u-col-between" :key="pluginArr[arrIndex].pluginTaskId">
<Plugin
:item="item"
:class="getClass(plugin.col, plugin.row)"

Loading…
Cancel
Save