|
|
|
@ -2,9 +2,9 @@ |
|
|
|
<div> |
|
|
|
<el-dialog :title="dialogData.title" :visible.sync="isshow" width="70%" :before-close="MisShow"> |
|
|
|
<div class="select" v-if="!isexamine &&dialogType==1"> |
|
|
|
<el-radio v-model="query.account_type" label="buyer" border @change="getAccountData">摘牌方</el-radio> |
|
|
|
<el-radio v-model="query.account_type" label="enter_shop" border @change="getAccountData">挂牌方</el-radio> |
|
|
|
<el-radio v-model="query.account_type" label="third_party" border @change="getAccountData">第三方</el-radio> |
|
|
|
<el-radio v-model="query.account_type" label="buyer" border @change="getAccountData" v-if="listDate.buyer_data==1">摘牌方</el-radio> |
|
|
|
<el-radio v-model="query.account_type" label="enter_shop" border @change="getAccountData" v-if="listDate.enter_shop_data==1">挂牌方</el-radio> |
|
|
|
<el-radio v-model="query.account_type" label="third_party" border @change="getAccountData" v-if="listDate.third_party_data==1">第三方</el-radio> |
|
|
|
</div> |
|
|
|
<p class="tips"> |
|
|
|
{{dialogData.tips}} |
|
|
|
@ -82,6 +82,9 @@ export default { |
|
|
|
//dialogType为2时使用,1为资产信息查询,2为资产挂牌审核,3为资产发布审核,4为摘牌申请审核 |
|
|
|
assets_type:{ |
|
|
|
type:Number |
|
|
|
}, |
|
|
|
listDate:{ |
|
|
|
|
|
|
|
} |
|
|
|
}, |
|
|
|
data(){ |
|
|
|
@ -183,7 +186,7 @@ export default { |
|
|
|
}, |
|
|
|
init(){ |
|
|
|
if (this.dialogType==1) { |
|
|
|
this.dialogData.title='账户信息'; |
|
|
|
this.dialogData.title='资料查看'; |
|
|
|
if (this.isexamine) { |
|
|
|
this.dialogData.tips1='(*注:以下文件需加盖公章)'; |
|
|
|
} |
|
|
|
@ -203,7 +206,7 @@ export default { |
|
|
|
} |
|
|
|
}else if(this.dialogType==2 ||this.dialogType==3){ |
|
|
|
this.dialogData.sidebar=[ |
|
|
|
{title:'商家概况',type:1,id:'businessInfo'},{title:'资产概况',type:1,id:'assetsInfo'},{title:'资产评估/资产评价报告',type:1,id:'assetValuation'}, |
|
|
|
{title:'企业风险评估',type:0,id:'assessment'},{title:'商家概况',type:1,id:'businessInfo'},{title:'资产概况',type:1,id:'assetsInfo'},{title:'资产评估/资产评价报告',type:1,id:'assetValuation'}, |
|
|
|
{title:'文化大数据标准编号',type:1,id:'dataNumber'} |
|
|
|
] |
|
|
|
// if (this.contentDatas.asset_data.else_serial_file!=null) { |
|
|
|
|