|
@@ -39,6 +39,36 @@
|
|
|
<view class="txt"><text>乡镇(经开区)委员工作室</text>{{kaType(memberInfo.studio,wybgslist)}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view class="dbox">
|
|
|
+ <view class="titbox mb27 flexc">
|
|
|
+ <view class="tit flexc flex1">
|
|
|
+ <image :src="titimg"></image>
|
|
|
+ <view>会议参与情况</view>
|
|
|
+ </view>
|
|
|
+ <view class="tips">请左右滑动查看详细信息</view>
|
|
|
+ </view>
|
|
|
+ <view class="mb10">
|
|
|
+ <block v-if="zxConferenceList&&zxConferenceList.length">
|
|
|
+ <zb-table
|
|
|
+ :show-header="true"
|
|
|
+ :columns="hycolumns"
|
|
|
+ :headbgColor="headbgColor"
|
|
|
+ :stripe="false"
|
|
|
+ :fit="true"
|
|
|
+ :parameter="parameter"
|
|
|
+ @rowClick="getDetailhy"
|
|
|
+ @toggleRowSelection="toggleRowSelection"
|
|
|
+ @toggleAllSelection="toggleAllSelection"
|
|
|
+ :border="border"
|
|
|
+ :borderr="borderr"
|
|
|
+ @detail="getDetailhy"
|
|
|
+ :data="zxConferenceList"></zb-table>
|
|
|
+ </block>
|
|
|
+ <block v-else>
|
|
|
+ <no-data padtop="0" padbottom="20"></no-data>
|
|
|
+ </block>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
<view class="dbox">
|
|
|
<view class="titbox mb27 flexc">
|
|
|
<view class="tit flexc flex1">
|
|
@@ -280,36 +310,6 @@
|
|
|
</block>
|
|
|
</view>
|
|
|
</view> -->
|
|
|
- <!-- <view class="dbox">
|
|
|
- <view class="titbox mb27 flexc">
|
|
|
- <view class="tit flexc flex1">
|
|
|
- <image :src="titimg"></image>
|
|
|
- <view>会议参与情况</view>
|
|
|
- </view>
|
|
|
- <view class="tips">请左右滑动查看详细信息</view>
|
|
|
- </view>
|
|
|
- <view class="mb10">
|
|
|
- <block v-if="zxConferenceList&&zxConferenceList.length">
|
|
|
- <zb-table
|
|
|
- :show-header="true"
|
|
|
- :columns="hycolumns"
|
|
|
- :headbgColor="headbgColor"
|
|
|
- :stripe="false"
|
|
|
- :fit="true"
|
|
|
- :parameter="parameter"
|
|
|
- @rowClick="rowClick"
|
|
|
- @toggleRowSelection="toggleRowSelection"
|
|
|
- @toggleAllSelection="toggleAllSelection"
|
|
|
- :border="border"
|
|
|
- :borderr="borderr"
|
|
|
- @detail="getDetails"
|
|
|
- :data="zxConferenceList"></zb-table>
|
|
|
- </block>
|
|
|
- <block v-else>
|
|
|
- <no-data padtop="0" padbottom="20"></no-data>
|
|
|
- </block>
|
|
|
- </view>
|
|
|
- </view> -->
|
|
|
<!-- <view class="dbox">
|
|
|
<view class="titbox mb27 flexc">
|
|
|
<view class="tit flexc flex1">
|
|
@@ -390,6 +390,7 @@
|
|
|
{ name: 'investmentAmount', label: '拟投资额 ',width:230,align:'center', },
|
|
|
{ name: 'contactsName', label: '联系人',align:'center',},
|
|
|
{ name: 'contactsPhone', label: '联系方式',align:'center',},
|
|
|
+ { name: 'type', label: '状态',align:'center',type:"format",key:"xsztlist"},
|
|
|
{ name: 'publishTime', label: '录入时间',align:'center',},
|
|
|
],
|
|
|
hycolumns:[{ name: 'conferenceTitle', label: '会议名称 ',width:230,align:'center', },
|
|
@@ -418,6 +419,7 @@
|
|
|
fylxlist:[],
|
|
|
tajdlist:[],
|
|
|
sqjdlist:[],
|
|
|
+ xsztlist:[],
|
|
|
sflalist:[ {label: '是',value:'0'},{label: '否',value:'0'},]
|
|
|
},
|
|
|
border:true,
|
|
@@ -471,6 +473,10 @@
|
|
|
typeFormat(ite,list){
|
|
|
return selectValue(list, ite);
|
|
|
},
|
|
|
+ getDetailhy(e){
|
|
|
+ var data=e.conferenceId
|
|
|
+ this.$tab.navigateTo('/work/pages/meeting/details?id='+data)
|
|
|
+ },
|
|
|
getDetailta(e){
|
|
|
var data=e.proposalId
|
|
|
this.$tab.navigateTo('/work/pages/case/details?id='+data)
|
|
@@ -538,6 +544,17 @@
|
|
|
})
|
|
|
}
|
|
|
})
|
|
|
+ // 线索状态
|
|
|
+ getDictionaryFn('investment_type').then(res=>{
|
|
|
+ if(res.code==200&&res.data.length){
|
|
|
+ this.parameter.xsztlist = res.data.map(v => {
|
|
|
+ return {
|
|
|
+ label: v.dictLabel,
|
|
|
+ value:v.dictValue
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
// 主题类型
|
|
|
getDictionaryFn('sqmy_topic_type').then(res=>{
|
|
|
if(res.code==200&&res.data.length){
|
|
@@ -638,8 +655,7 @@
|
|
|
this.activityLlzList=res.data.activityLlzList;
|
|
|
this.activityJbList=res.data.activityJbList;
|
|
|
this.activityBssList=res.data.activityBssList;
|
|
|
-
|
|
|
- // this.zxConferenceList=res.data.zxConferenceList;
|
|
|
+ this.zxConferenceList=res.data.zxConferenceList;
|
|
|
// this.zxActivityList=res.data.zxActivityList;
|
|
|
// this.zxSpeakList=res.data.zxSpeakList;
|
|
|
// if(res.data.zxFjList&&res.data.zxFjList.length){
|