diff --git a/src/api/index.js b/src/api/index.js
index 2fe2952..2fb3d79 100644
--- a/src/api/index.js
+++ b/src/api/index.js
@@ -152,6 +152,14 @@ export const uploadingRecord = query => {
data: query
});
};
+// 上传支付凭证
+export const uploadingPaymentDocument = query => {
+ return request({
+ url: '/api/user.Order/uploadingPaymentDocument',
+ method: 'post',
+ data: query
+ });
+};
// 修改资产挂牌
export const update_cartellino = query => {
return request({
@@ -312,3 +320,11 @@ export const getagreement = query => {
params: query
});
};
+// 获取文件类型
+export const getFileType = query => {
+ return request({
+ url: '/api/Index/getFileType',
+ method: 'get',
+ params: query
+ });
+};
diff --git a/src/components/page/AssetDetails.vue b/src/components/page/AssetDetails.vue
index ba0e3de..c52c7f5 100644
--- a/src/components/page/AssetDetails.vue
+++ b/src/components/page/AssetDetails.vue
@@ -55,8 +55,8 @@
@@ -90,7 +90,8 @@ export default {
count:'',
type:''
},
- listingList:{}
+ listingList:{},
+ asset1_title:0
}
},
components: {
@@ -102,6 +103,9 @@ export default {
this.getData()
},
methods:{
+ tabAsset1_title(type){
+ this.asset1_title=type
+ },
callback(){
},
@@ -299,6 +303,10 @@ export default {
justify-content: center;
font-weight: bold;
}
+ .asset1_title_item_active{
+ background: #C94C4C;
+ color: white;
+ }
.asset1_content{
padding: 20px ;
}
diff --git a/src/components/page/ClassificationDetails.vue b/src/components/page/ClassificationDetails.vue
index ee46cf2..9464ca4 100644
--- a/src/components/page/ClassificationDetails.vue
+++ b/src/components/page/ClassificationDetails.vue
@@ -45,7 +45,7 @@
:value="item.city_code" >
-
+
-
+
@@ -73,7 +73,6 @@
:action="action"
:show-file-list="false"
:on-change="fileChange"
-
:on-success="(res)=>{handleAvatarSuccess(0,res,index)}" v-for="(item,index) in 5" :key="index">
@@ -126,6 +125,36 @@
+
+
+ 请如实并详细地填写资资产的基本情况
+ 下载模板
+
+
+
+
+
+
+
+ 已上传文件:
+
+ {{file_name.asset_file}}
+
+
+
+
+
- 请上传与标的相关的证明材料(线上交易请在此处上传相关资产)
+
+ 请上传与标的相关的证明材料(线上交易请在此处上传相关资产)
+
-
-
+
+
已上传文件:
-
-
{{file_name.else_serial_file}}
-
+
+ {{item.name}}
+
@@ -257,6 +288,32 @@
成功摘牌后转为成交价款的一部分
+
+
+ 请上传申请承诺文件
+ 下载模板
+
+
+
+
+
+
+
+ 已上传文件:
+
+ {{file_name.promise_file}}
+
+
+
+
+
- 请上传与标的相关的证明材料(线上交易请在此处上传相关资产)
+ 请上传人才产权评价报告
+
{{file_name.accessory}}
-
+
@@ -294,12 +352,32 @@
+
diff --git a/src/router/index.js b/src/router/index.js
index 80799fa..bcf289a 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -54,6 +54,11 @@ export default new Router({
component: () => import(/* webpackChunkName: "dashboard" */ '../components/page/StationNotice.vue'),
meta: { title: '站内通知' }
},
+ {
+ path: '/StationNoticeDetails',
+ component: () => import(/* webpackChunkName: "dashboard" */ '../components/page/StationNoticeDetails.vue'),
+ meta: { title: '站内通知详情' }
+ },
{
path: '/ClassificationDetails',
component: () => import(/* webpackChunkName: "dashboard" */ '../components/page/ClassificationDetails.vue'),