|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
- <tableLayout ref="list" :layout="tablecols" :data="list" :custom="true" height="200">
|
|
|
+ <tableLayout :layout="tablecols" :data="list" :custom="true" height="200">
|
|
|
<template v-slot:customcol="scope">
|
|
|
<p >{{scope.column.data[scope.column.columnname]}}</p>
|
|
|
</template>
|
|
@@ -34,7 +34,8 @@ export default {
|
|
|
"sa_projectid": this.data.sa_projectid
|
|
|
},
|
|
|
})
|
|
|
- console.log(res,"项目商机数据")
|
|
|
+ this.list[0] = res.data
|
|
|
+ console.log(this.list,"项目商机内容")
|
|
|
}
|
|
|
},
|
|
|
created() {
|