|
@@ -1,8 +1,8 @@
|
|
<template>
|
|
<template>
|
|
- <div style="width: 100%;">
|
|
|
|
|
|
+ <div v-loading="loadingOnlineProcess" style="width: 100%;" element-loading-background="rgba(0, 0, 0, 0.7)" element-loading-text="拼命加载中">
|
|
<div class="set-background">
|
|
<div class="set-background">
|
|
<div class="block">
|
|
<div class="block">
|
|
- <el-tabs v-model="activeName">
|
|
|
|
|
|
+ <el-tabs v-model="activeName" @tab-click="handleClick">
|
|
<el-tab-pane label="列表" name="first">
|
|
<el-tab-pane label="列表" name="first">
|
|
<el-form :model="form">
|
|
<el-form :model="form">
|
|
<div class="set-between">
|
|
<div class="set-between">
|
|
@@ -302,6 +302,7 @@ export default {
|
|
userInformation: localStorage.getItem('username'),
|
|
userInformation: localStorage.getItem('username'),
|
|
userNames: localStorage.getItem('realname'),
|
|
userNames: localStorage.getItem('realname'),
|
|
queryCode: {},
|
|
queryCode: {},
|
|
|
|
+ loadingOnlineProcess: false,
|
|
curIndex: 1,
|
|
curIndex: 1,
|
|
pageSize: 10,
|
|
pageSize: 10,
|
|
total: 0,
|
|
total: 0,
|
|
@@ -337,8 +338,10 @@ export default {
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
async bugListSelectBeforeGet() {
|
|
async bugListSelectBeforeGet() {
|
|
|
|
+ this.loadingOnlineProcess = true
|
|
await bugGetEnum().then(res => {
|
|
await bugGetEnum().then(res => {
|
|
this.processStatusEnumList = res.data.processStatusEnumList
|
|
this.processStatusEnumList = res.data.processStatusEnumList
|
|
|
|
+ this.processStatusEnumListKanBan = res.data.processStatusEnumList
|
|
})
|
|
})
|
|
const queryListData = {
|
|
const queryListData = {
|
|
bizId: this.bizJson,
|
|
bizId: this.bizJson,
|
|
@@ -738,7 +741,6 @@ export default {
|
|
},
|
|
},
|
|
// tree
|
|
// tree
|
|
handleNodeClick(data) {
|
|
handleNodeClick(data) {
|
|
- console.log(data.commentInfo.fatherId)
|
|
|
|
if (data.commentInfo.fatherId === 0) {
|
|
if (data.commentInfo.fatherId === 0) {
|
|
this.kanBanDrag()
|
|
this.kanBanDrag()
|
|
} else {
|
|
} else {
|