|
@@ -14,7 +14,7 @@
|
|
<el-button type="primary" size="mini" @click="back()">返回</el-button>
|
|
<el-button type="primary" size="mini" @click="back()">返回</el-button>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="24" class="one" v-if="type == '0'">
|
|
<el-col :span="24" class="one" v-if="type == '0'">
|
|
- <el-col :span="24" class="top">
|
|
|
|
|
|
+ <!-- <el-col :span="24" class="top">
|
|
<el-col :span="8" class="left">
|
|
<el-col :span="8" class="left">
|
|
<el-carousel trigger="click" height="250px" :autoplay="false">
|
|
<el-carousel trigger="click" height="250px" :autoplay="false">
|
|
<el-carousel-item v-for="(item, index) in detailInfo.image" :key="index">
|
|
<el-carousel-item v-for="(item, index) in detailInfo.image" :key="index">
|
|
@@ -57,10 +57,11 @@
|
|
{{ detailInfo.present }}
|
|
{{ detailInfo.present }}
|
|
</p>
|
|
</p>
|
|
</el-col>
|
|
</el-col>
|
|
- </el-col>
|
|
|
|
|
|
+ </el-col> -->
|
|
|
|
+ <techDetail :detailInfo="detailInfo" @onSubmit="onSubmit" :displayBtn="displayBtn"></techDetail>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="24" class="two" v-else-if="type == '1'">
|
|
<el-col :span="24" class="two" v-else-if="type == '1'">
|
|
- <el-col :span="24" class="top">
|
|
|
|
|
|
+ <!-- <el-col :span="24" class="top">
|
|
<el-col :span="8" class="left">
|
|
<el-col :span="8" class="left">
|
|
<el-carousel trigger="click" height="250px" :autoplay="false">
|
|
<el-carousel trigger="click" height="250px" :autoplay="false">
|
|
<el-carousel-item v-for="(item, index) in detailInfo.image" :key="index">
|
|
<el-carousel-item v-for="(item, index) in detailInfo.image" :key="index">
|
|
@@ -117,10 +118,11 @@
|
|
{{ detailInfo.present }}
|
|
{{ detailInfo.present }}
|
|
</p>
|
|
</p>
|
|
</el-col>
|
|
</el-col>
|
|
- </el-col>
|
|
|
|
|
|
+ </el-col> -->
|
|
|
|
+ <achiDetail :detailInfo="detailInfo" @onSubmit="onSubmit" :displayBtn="displayBtn"></achiDetail>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="24" class="three" v-else>
|
|
<el-col :span="24" class="three" v-else>
|
|
- <el-col :span="24" class="top">
|
|
|
|
|
|
+ <!-- <el-col :span="24" class="top">
|
|
<el-col :span="24" class="name">
|
|
<el-col :span="24" class="name">
|
|
{{ detailInfo.name }}
|
|
{{ detailInfo.name }}
|
|
</el-col>
|
|
</el-col>
|
|
@@ -156,12 +158,13 @@
|
|
{{ detailInfo.businessexpect }}
|
|
{{ detailInfo.businessexpect }}
|
|
</p>
|
|
</p>
|
|
</el-col>
|
|
</el-col>
|
|
- </el-col>
|
|
|
|
|
|
+ </el-col> -->
|
|
|
|
+ <busiDetail :detailInfo="detailInfo" @onSubmit="onSubmit" :displayBtn="displayBtn"></busiDetail>
|
|
</el-col>
|
|
</el-col>
|
|
- <el-col :span="24" class="anniu">
|
|
|
|
|
|
+ <!-- <el-col :span="24" class="anniu">
|
|
<el-button type="primary" size="mini" v-if="this.user.uid != detailInfo.userid" @click="btnPhone()">对接聊天</el-button>
|
|
<el-button type="primary" size="mini" v-if="this.user.uid != detailInfo.userid" @click="btnPhone()">对接聊天</el-button>
|
|
<el-button type="success" size="mini" v-if="this.user.uid != detailInfo.userid" @click="onSubmit()">洽谈交易</el-button>
|
|
<el-button type="success" size="mini" v-if="this.user.uid != detailInfo.userid" @click="onSubmit()">洽谈交易</el-button>
|
|
- </el-col>
|
|
|
|
|
|
+ </el-col> -->
|
|
</el-col>
|
|
</el-col>
|
|
</div>
|
|
</div>
|
|
</el-col>
|
|
</el-col>
|
|
@@ -174,6 +177,9 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
+import techDetail from '@/views/market/detail/techDetail.vue';
|
|
|
|
+import achiDetail from '@/views/market/detail/achiDetail.vue';
|
|
|
|
+import busiDetail from '@/views/market/detail/busiDetail.vue';
|
|
import _ from 'lodash';
|
|
import _ from 'lodash';
|
|
import { mapState, createNamespacedHelpers } from 'vuex';
|
|
import { mapState, createNamespacedHelpers } from 'vuex';
|
|
import chat from './parts/chat.vue';
|
|
import chat from './parts/chat.vue';
|
|
@@ -186,6 +192,9 @@ export default {
|
|
props: {},
|
|
props: {},
|
|
components: {
|
|
components: {
|
|
chat,
|
|
chat,
|
|
|
|
+ techDetail,
|
|
|
|
+ achiDetail,
|
|
|
|
+ busiDetail,
|
|
},
|
|
},
|
|
data: function() {
|
|
data: function() {
|
|
return {
|
|
return {
|
|
@@ -198,6 +207,8 @@ export default {
|
|
// 对接聊天
|
|
// 对接聊天
|
|
dialogTableVisible: false,
|
|
dialogTableVisible: false,
|
|
room: {},
|
|
room: {},
|
|
|
|
+ // 显示按钮
|
|
|
|
+ displayBtn: true,
|
|
};
|
|
};
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|