|
@@ -11,16 +11,34 @@
|
|
|
<span class="subTitle">项目类别:</span>
|
|
|
<span class="detailContent">{{ currentProject.TypeInfo.name }}</span>
|
|
|
</view>
|
|
|
- <view class="detail" v-if="currentProject.IndustryInfo">
|
|
|
- <span class="subTitle">行业名称:</span>
|
|
|
- <span class="detailContent">
|
|
|
- {{ currentProject.IndustryInfo.name }}
|
|
|
- </span>
|
|
|
- </view>
|
|
|
<view class="detail">
|
|
|
<span class="subTitle">流程:</span>
|
|
|
<span class="detailContent">{{ currentProject.FlowInfo.name }}</span>
|
|
|
</view>
|
|
|
+ <view v-if="currentProject.type_id != 7">
|
|
|
+ <view class="detail" v-if="currentProject.IndustryInfo">
|
|
|
+ <span class="subTitle">行业名称:</span>
|
|
|
+ <span class="detailContent">
|
|
|
+ {{ currentProject.IndustryInfo.name }}
|
|
|
+ </span>
|
|
|
+ </view>
|
|
|
+ <view class="detail" v-if="currentProject.location">
|
|
|
+ <span class="subTitle">项目地区:</span>
|
|
|
+ <span class="detailContent">
|
|
|
+ {{
|
|
|
+ `${currentProject.location}(${currentProject.location_code})`
|
|
|
+ }}
|
|
|
+ </span>
|
|
|
+ </view>
|
|
|
+ <view class="detail" v-if="currentProject.name">
|
|
|
+ <span class="subTitle">项目简称:</span>
|
|
|
+ <span class="detailContent">{{ currentProject.name }}</span>
|
|
|
+ </view>
|
|
|
+ <view class="detail" v-if="currentProject.version">
|
|
|
+ <span class="subTitle">项目批次:</span>
|
|
|
+ <span class="detailContent">{{ currentProject.version }}期</span>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
<view class="detail">
|
|
|
<span class="subTitle">状态:</span>
|
|
|
<span class="detailContent">
|
|
@@ -59,22 +77,8 @@
|
|
|
{{ currentProject.audit_comment }}
|
|
|
</span>
|
|
|
</view>
|
|
|
- <view class="detail" v-if="currentProject.location">
|
|
|
- <span class="subTitle">项目地区:</span>
|
|
|
- <span class="detailContent">
|
|
|
- {{ `${currentProject.location}(${currentProject.location_code})` }}
|
|
|
- </span>
|
|
|
- </view>
|
|
|
- <view class="detail" v-if="currentProject.name">
|
|
|
- <span class="subTitle">项目简称:</span>
|
|
|
- <span class="detailContent">{{ currentProject.name }}</span>
|
|
|
- </view>
|
|
|
- <view class="detail" v-if="currentProject.version">
|
|
|
- <span class="subTitle">项目批次:</span>
|
|
|
- <span class="detailContent">{{ currentProject.version }}期</span>
|
|
|
- </view>
|
|
|
<view class="detail" v-if="currentProject.AuthorUser">
|
|
|
- <span class="subTitle">创建人:</span>
|
|
|
+ <span class="subTitle">售前项目经理:</span>
|
|
|
<span class="detailContent">{{
|
|
|
currentProject.AuthorUser.CName
|
|
|
}}</span>
|
|
@@ -625,10 +629,10 @@ export default {
|
|
|
display: flex;
|
|
|
justify-items: space-between;
|
|
|
.subTitle {
|
|
|
- width: 30%;
|
|
|
+ width: 40%;
|
|
|
}
|
|
|
.detailContent {
|
|
|
- width: 70%;
|
|
|
+ width: 60%;
|
|
|
}
|
|
|
}
|
|
|
.select {
|