Browse Source

edit home jump code

pull/2/head
gongzijian 5 years ago
parent
commit
2d1de7e5f0
  1. 2
      escheduler-ui/.env
  2. 2
      escheduler-ui/src/js/conf/home/pages/projects/pages/index/_source/processStateCount.vue
  3. 6
      escheduler-ui/src/js/conf/home/pages/projects/pages/index/_source/taskCtatusCount.vue

2
escheduler-ui/.env

@ -1,5 +1,5 @@
# 后端接口地址
API_BASE = http://192.168.xx.xx:12345
API_BASE = http://192.168.220.154:12345
# 本地开发如需ip访问项目把"#"号去掉
#DEV_HOST = 192.168.xx.xx

2
escheduler-ui/src/js/conf/home/pages/projects/pages/index/_source/processStateCount.vue

@ -15,7 +15,7 @@
</tr>
<tr v-for="(item,$index) in processStateList">
<td><span>{{$index+1}}</span></td>
<td><span><a href="javascript:" @click="id && _goProcess(item.key)" :class="id ?'links':''">{{item.value}}</a></span></td>
<td><span><a href="javascript:" @click="searchParams.projectId && _goProcess(item.key)" :class="searchParams.projectId ?'links':''">{{item.value}}</a></span></td>
<td><span class="ellipsis" style="width: 98%;" :title="item.key">{{item.key}}</span></td>
</tr>
</table>

6
escheduler-ui/src/js/conf/home/pages/projects/pages/index/_source/taskCtatusCount.vue

@ -16,9 +16,9 @@
<tr v-for="(item,$index) in taskCtatusList">
<td><span>{{$index+1}}</span></td>
<td>
<span>
<a href="javascript:" @click="id && _goTask(item.key)" :class="id ?'links':''">{{item.value}}</a>
</span>
<span>
<a href="javascript:" @click="searchParams.projectId && _goTask(item.key)" :class="searchParams.projectId ?'links':''">{{item.value}}</a>
</span>
</td>
<td><span class="ellipsis" style="width: 98%;" :title="item.key">{{item.key}}</span></td>
</tr>

Loading…
Cancel
Save