提交 bc3d3b60 编写于 作者: 张磊's avatar 张磊

add my expert

上级 d700f99e
......@@ -11,13 +11,13 @@
style="margin: 10px 0"
:data-list="projectList"
/>
<Loading v-if="showLoading" />
<!-- <Loading v-if="showLoading" />-->
</div>
</template>
<script>
import CommonHeaderNew from '@/components/common/common-header-new';
import CoopListItem from '@/components/bussiness/coop-list-item';
import Loading from '@/components/common/common-loading';
// import Loading from '@/components/common/common-loading';
import { getProjectList } from '@/service';
import { BASE_URL } from '@/utils/enumerate';
const { NODE_ENV } = process.env;
......@@ -27,12 +27,11 @@ export default {
components: {
CommonHeaderNew,
CoopListItem,
Loading,
// Loading,
},
data() {
return {
token: 'D8E0930EAB3E481B9CCA2ECBD2146BAD',
showLoading: true,
token: '',
title: '学情报告',
projectList: [],
isShowKf: true,
......@@ -76,11 +75,11 @@ export default {
token: this.token,
};
getProjectList(params).then((res) => {
this.showLoading = true;
// this.showLoading = true;
if (res.code === '000000') {
this.projectList = (res.data && res.data.data) || [];
setTimeout(() => {
this.showLoading = false;
// this.showLoading = false;
}, 100);
// this.$forceUpdate();
// this.$nextTick( () => {
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册