|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<!-- 项目管理 项目详细 -->
|
|
|
- <div class="ProjectManagement2">
|
|
|
+ <div class="ProjectManagement2" v-loading="loading">
|
|
|
<div class="vfpHeader">
|
|
|
<!-- 详情页 -->
|
|
|
<div class="titleOne">项目管理</div>
|
|
@@ -68,6 +68,7 @@ import { VueEditor } from "vue2-editor";
|
|
|
return {
|
|
|
data:[["","","","",""],[]],
|
|
|
submitHint:false,
|
|
|
+ loading:false,
|
|
|
customToolbar: [
|
|
|
["bold", "italic", "underline"], [{ list: "ordered" }, { list: "bullet" }],
|
|
|
[{ align: "" }, { align: "center" }, { align: "right"}, { align: "justify"}],
|
|
@@ -77,6 +78,7 @@ import { VueEditor } from "vue2-editor";
|
|
|
},
|
|
|
methods:{
|
|
|
getData(){ //初始化完成获取基本数据进行填充
|
|
|
+ this.loading = true;
|
|
|
let param={
|
|
|
uid:this.$store.state.userInfo.userid,
|
|
|
pid:JSON.parse(localStorage.getItem('pid'))
|
|
@@ -89,6 +91,7 @@ import { VueEditor } from "vue2-editor";
|
|
|
// console.log(GetData)
|
|
|
this.data=GetData
|
|
|
// console.log(this.data);
|
|
|
+ this.loading = false;
|
|
|
},err=>{
|
|
|
console.log(err);
|
|
|
})
|