From ffd3a617b48869d29f9ebb5b611f19795ab5e295 Mon Sep 17 00:00:00 2001
From: ltlzx <942659938@qq.com>
Date: Sat, 23 Apr 2022 00:36:45 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/App.vue | 16 +-
src/api/index.js | 6 +-
src/components/Sidebar.vue | 2 +-
src/components/accountDetails/index.vue | 2 +-
src/components/billDetails/index.vue | 4 +-
src/components/dateSelect/index.vue | 20 +-
src/components/dateSelect/order.vue | 457 ++++++++++++++++++
src/components/orderDetails/index.vue | 43 +-
src/components/page/Home/index.vue | 27 +-
src/components/page/admission/index.vue | 25 +-
src/components/page/afterService/invoice.vue | 36 +-
.../page/classification/Category.vue | 12 +-
.../page/classification/DataQuery.vue | 43 +-
src/components/page/fundSettlement/index.vue | 12 +-
.../page/fundSettlement/splitProportion.vue | 16 +-
src/components/page/layout/index.vue | 35 +-
src/components/page/order/closed.vue | 60 ++-
src/components/page/order/completed.vue | 60 ++-
src/components/page/order/index.vue | 68 +--
src/components/page/order/pendingPayment.vue | 60 ++-
src/components/page/order/toBeDelivered.vue | 60 ++-
src/components/page/order/toBeSettled.vue | 60 ++-
src/router/index.js | 2 +-
23 files changed, 818 insertions(+), 308 deletions(-)
create mode 100644 src/components/dateSelect/order.vue
diff --git a/src/App.vue b/src/App.vue
index 5fa0375..aab5b99 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -15,23 +15,9 @@ export default {
name: 'App',
data(){
return{
- zh_CN,
- transitionName: "turn-on",
+ zh_CN
}
},
- watch: {
- $route (to, from) {
- // 切换动画
- // 页面之间的跳转一般由路由中的level来实现
- let level = this.$route.meta.level // 监听路由的层级
- console.log(level)
- if (level === 1) {
- this.transitionName = 'turn-on'
- } else {
- this.transitionName = 'turn-off'
- }
- }
- }
}
diff --git a/src/api/index.js b/src/api/index.js
index 95ddf8a..7369713 100644
--- a/src/api/index.js
+++ b/src/api/index.js
@@ -8,7 +8,7 @@ export const getAllDate = query => {
data: query
});
};
-//数据查看
+//标的信息
export const goodsDetail = query => {
return request({
url: '/admin/goods.Goods/goodsDetail',
@@ -16,7 +16,7 @@ export const goodsDetail = query => {
data: query
});
};
-//数据查看-资源详情
+//标的信息-资源详情
export const sourceDetail = query => {
return request({
url: '/admin/goods.Goods/sourceDetail',
@@ -88,7 +88,7 @@ export const getOrderList = query => {
data: query
});
};
-//订单数据查看
+//订单标的信息
export const orderDetail = query => {
return request({
url: '/admin/order.Order/orderDetail',
diff --git a/src/components/Sidebar.vue b/src/components/Sidebar.vue
index ec2604e..5118083 100644
--- a/src/components/Sidebar.vue
+++ b/src/components/Sidebar.vue
@@ -69,7 +69,7 @@ export default {
{icon:'',url:"pendingPayment",title:"待付款订单",key:'/pendingPayment',auth:'PendingPayment',isShow:true},
{icon:'',url:"toBeDelivered",title:"待交付订单",key:'/toBeDelivered',auth:'PendDelivery',isShow:true},
{icon:'',url:"toBeSettled",title:"待结算订单",key:'/toBeSettled',auth:'PendBalance',isShow:true},
- {icon:'',url:"completed",title:"已完成订单",key:'/completed',auth:'OrderCompleted',isShow:true},
+ {icon:'',url:"completed",title:"已终止订单",key:'/completed',auth:'OrderCompleted',isShow:true},
{icon:'',url:"closed",title:"已关闭订单",key:'/closed',auth:'OrderClosed',isShow:true},
]
},
diff --git a/src/components/accountDetails/index.vue b/src/components/accountDetails/index.vue
index 718a5fc..3e0d275 100644
--- a/src/components/accountDetails/index.vue
+++ b/src/components/accountDetails/index.vue
@@ -14,7 +14,7 @@
认证状态:{{data.attest_status==1?'认证中':data.attest_status==2?'认证成功':'认证失败'}}
基本信息:{{data.username}}
统一社会信用代码:{{data.institution_code}}
- 账户ISLI标识码:{{data.user_isli}}
+ 身份ISLI认证码:{{data.user_isli}}
diff --git a/src/components/billDetails/index.vue b/src/components/billDetails/index.vue
index e1fa2f3..530937d 100644
--- a/src/components/billDetails/index.vue
+++ b/src/components/billDetails/index.vue
@@ -154,7 +154,7 @@
// align:'center'
},
{
- title: '佣金/服务费(含税)',
+ title: '佣金/交易佣金(含税)',
dataIndex: 'service_charge',
width:'120px',
// align:'center'
@@ -178,7 +178,7 @@
// align:'center'
},
{
- title: '服务费分配',
+ title: '交易佣金分配',
dataIndex: 'service_charge_allot',
width:'120px',
// align:'center'
diff --git a/src/components/dateSelect/index.vue b/src/components/dateSelect/index.vue
index 4394141..7cc68ec 100644
--- a/src/components/dateSelect/index.vue
+++ b/src/components/dateSelect/index.vue
@@ -1,6 +1,6 @@
-
+
@@ -11,11 +11,11 @@
+
机构名称:{{userinfo.name}}
认证类型:{{userinfo.userType}}
认证状态:{{userinfo.state==0?'认证中':userinfo.state==1?'认证成功':'认证失败'}}
-
基本信息:{{userinfo.name}}
统一社会信用代码:{{userinfo.uscc}}
-
账户ISLI标识码:{{userinfo.islicode}}
+
身份ISLI认证码:{{userinfo.islicode}}
+
交易品种:{{item.goods_type==1?'文化资源数据':'文化数字内容'}}
交易方式:{{item.goods_entrust==1?'转让':'授权'}}
-
权益:{{item.goods_ownership_str}}
-
委托周期:{{item.contractual_period==1?'永久性委托':item.contractual_period==2?'一次性委托':'阶段性委托'}}
+
权利类型:{{item.goods_ownership_str}}
+
委托类型:{{item.contractual_period==1?'永久性委托':item.contractual_period==2?'一次性委托':'阶段性委托'}}
收费类型:{{item.charges_type==1?'免费':'付费'}}
自报价:{{item.price}}
+
委托开始时间:{{item.contractual_start_time}}
+
委托终止时间:{{item.contractualtime_end_time}}
@@ -110,7 +112,7 @@
-
+
@@ -274,7 +276,7 @@
align:'center'
},
{
- title: '资源总数',
+ title: '关联目标数量',
dataIndex: 'source_count',
width:'110px',
align:'center'
diff --git a/src/components/dateSelect/order.vue b/src/components/dateSelect/order.vue
new file mode 100644
index 0000000..b791cfc
--- /dev/null
+++ b/src/components/dateSelect/order.vue
@@ -0,0 +1,457 @@
+
+
+
+
+
+
+ *
+ 标的信息
+ {{index+1}}
+
+ 标的信息
+
+
+
+
机构名称:{{item.userinfo.name}}
+
认证类型:{{item.userinfo.userType}}
+
认证状态:{{item.userinfo.state==0?'认证中':item.userinfo.state==1?'认证成功':'认证失败'}}
+
统一社会信用代码:{{item.userinfo.uscc}}
+
身份ISLI认证码:{{item.userinfo.islicode}}
+
+
+
+
+
{{item.goods.goods_type==1?'文化资源数据':'文化数字内容'}}-基本信息
+
+
+
+
+
![]()
+

+
+
+
标的名称:{{item.goods.goods_name}}
+
+
+
标志码:{{item.goods.goods_islicode}}
+
交易ISLI编码:{{item.goods.contract_code}}
+
交易品种:{{item.goods.goods_type==1?'文化资源数据':'文化数字内容'}}
+
交易方式:{{item.goods.goods_entrust==1?'转让':'授权'}}
+
权利类型:{{item.goods.goods_ownership_str}}
+
委托类型:{{item.goods.contractual_period==1?'永久性委托':item.goods.contractual_period==2?'一次性委托':'阶段性委托'}}
+
收费类型:{{item.goods.charges_type==1?'免费':'付费'}}
+
+
自报价:{{item.goods.price}}
+
交易佣金:{{item.goods.price}}
+
委托开始时间:{{item.goods.contractual_start_time}}
+
委托终止时间:{{item.goods.contractualtime_end_time}}
+
标的价款:¥ {{item.goods.money}}
+
购买年限:{{item.goods.transaction_count}}
+
交易佣金:¥ {{item.goods.service_charge}}
+
+
+
+
+
+
+
+
+
+
{{item.goods.goods_type==1?'文化资源数据':'文化数字内容'}}-关联资源
+
+
+
{{item.goods.goods_type==1?'文化资源数据':'文化数字内容'}}集
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
{{sourceDate.collectionType}}-基本信息
+
+
+
+
+
+
+
标的名称:{{sourceDate.source_name}}
+
+
+
其他标识符:{{sourceDate.otherIdentifiers}}
+
标识符:{{sourceDate.identifier}}
+
类型:{{sourceDate.collectionType}}
+
服务类型:{{sourceDate.serviceType}}
+
分类:{{sourceDate.classification}}
+
贡献者:{{sourceDate.contributors}}
+
著作权人:{{sourceDate.copyrightOwner}}
+
载体:{{sourceDate.carrier}}
+
登记者:{{sourceDate.registrant}}
+
登记日期:{{sourceDate.registerDate}}
+
+
+
所属/收藏机构:{{sourceDate.repositoryName}}
+
尺寸:{{sourceDate.dimensions}}
+
组件数量:{{sourceDate.quantity}}
+
标签:{{sourceDate.label}}
+
描述:{{sourceDate.description}}
+
哈希值:{{sourceDate.md5}}
+
版本:{{sourceDate.edition}}
+
现况:{{sourceDate.collectionCondition}}
+
封面:{{sourceDate.covers}}
+
+
+
+
+
+
+
+
{{sourceDate.collectionType}}-关联资源
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/components/orderDetails/index.vue b/src/components/orderDetails/index.vue
index 751d0c0..5e5fd24 100644
--- a/src/components/orderDetails/index.vue
+++ b/src/components/orderDetails/index.vue
@@ -5,7 +5,7 @@
等待购买方付款
等待买卖双方交付
正在结算中
-
订单已完成
+
订单已终止
订单已关闭
@@ -29,7 +29,7 @@
-
+
{{order.status==5?'订单已关闭':'关闭订单'}}
@@ -39,26 +39,35 @@
订单信息
-
授权方/卖方:{{order_info.entrust_name}}
+
被授权方/付款方:{{order_info.buy_username}}
+
身份ISLI认证码:{{buyuser.islicode}}
+
统一社会信用代码:{{buyuser.uscc}}
+
认证类型:{{buyuser.userType}}
+
认证状态:{{buyuser.state==0?'认证中':buyuser.state==1?'认证成功':'认证失败'}}
订单类型:{{order_info.type==1?'委托订单':order_info.type==2?'认证订单':'服务订单'}}
订单编号:{{order_info.batchcode}}
-
订单ISLI标识码:{{order_info.contract_code}}
-
交易流水号:{{order_info.close_serial_number}}
+
-
标的名称:{{order_info.goods_name}}
-
标的类型:{{order_info.goods_type==1?'文化资源数据':'文化数字内容'}}
+
+
-
交易方式:{{order_info.goods_entrust}}
-
权属类型:{{order_info.goods_ownership_str}}
-
交易价额:¥ {{order_info.price}}
-
交易数量:{{order_info.transaction_count}}
+
+
+
-
服务费:¥ {{order_info.service_charge}}
-
交易总额:¥ {{order_info.total_money}} 元
+
+ {{item.role_type==1?'委托方':item.role_type==2?'购买方':'平台方'}}分账比列:
+ {{item.calculate==1?item.ratio:item.amount}}
+
+
+
订单金额:¥ {{order_info.total_money}} 元
@@ -81,7 +90,7 @@
-
平台服务发票
+
交易佣金发票
-
+
- -
+
-
{{ index + 1 }}
{{ item.username }}
{{ item.count }}
@@ -75,12 +75,12 @@
-
+
- -
+
-
{{ index + 1 }}
{{ item.username }}
{{ item.count }}
@@ -90,6 +90,7 @@
+
@@ -109,17 +110,17 @@ export default {
{name:'待付款订单',url:'/pendingPayment',num:'',id:'awaitpay_count'},
{name:'待交付订单',url:'/toBeDelivered',num:'',id:'awaitdelivery_count'},
{name:'待结算订单',url:'/toBeSettled',num:'',id:'awaitclose_count'},
- {name:'已完成订单',url:'/completed',num:'',id:'complete_count'},
+ {name:'已终止订单',url:'/completed',num:'',id:'complete_count'},
{name:'已关闭订单',url:'/closed',num:'',id:'close_count'},
],
tadayWorkList:[
- {name:'交易总额',price:'¥845,256,996.30',id:'deal_money'},
- {name:'订单总额',price:'¥672,356,258.70',id:'order_money'},
- {name:'交易文化数据',price:'1,888',id:'deal_goods_count'},
- {name:'上架文化数据',price:'99',id:'shelf_count'},
- {name:'下架文化数据',price:'9',id:'out_count'},
- {name:'新增订单',price:'2,169',id:'yester_order_count'},
- {name:'已完成订单',price:'1,169',id:'yester_complete_count'},
+ {name:'订单金额总额',price:'',id:'deal_money'},
+ {name:'标的价款总额',price:'',id:'order_money'},
+ {name:'交易文化数据',price:'',id:'deal_goods_count'},
+ {name:'已发布文化数据',price:'',id:'shelf_count'},
+ {name:'委托期满文化数据',price:'',id:'out_count'},
+ {name:'新增订单',price:'',id:'yester_order_count'},
+ {name:'已终止订单',price:'',id:'yester_complete_count'},
],
query:{
leftDate:'year',
diff --git a/src/components/page/admission/index.vue b/src/components/page/admission/index.vue
index 6b61b8d..8537494 100644
--- a/src/components/page/admission/index.vue
+++ b/src/components/page/admission/index.vue
@@ -17,11 +17,11 @@
- 委托方:
-
+ 委托方/授权方:
+
- 标的类型:
+ 交易品种:
全部
文化资源数据
@@ -29,13 +29,14 @@
- 数据状态:
+ 发布状态:
全部文化数据
- 已上架文化数据
- 已下架文化数据
+ 已发布文化数据
+ 暂停中文化数据
+ 已终止文化数据
已转让文化数据
- 已失效文化数据
+ 委托期满文化数据
@@ -65,14 +66,14 @@
- {{goods_status==1?'上架中':goods_status==2?'下架中':goods_status==3?'已转让':'已失效'}}
+ {{goods_status==1?'已发布':goods_status==2?'已终止':goods_status==3?'已转让':goods_status==4?'委托期满':'暂停中'}}
{{goods_type==1?'文化资源数据':'文化数字内容'}}
- 数据查看
+ 标的信息
操作记录
关联订单
@@ -153,7 +154,7 @@ export default {
// align:'center'
// },
{
- title: '创建时间',
+ title: '上线时间',
dataIndex: 'createtime',
// align:'center'
},
@@ -168,7 +169,7 @@ export default {
// align:'center'
},
{
- title: '授权方',
+ title: '委托方/授权方',
dataIndex: 'username',
// align:'center'
},
@@ -179,7 +180,7 @@ export default {
// align:'center'
},
{
- title: '数据状态',
+ title: '发布状态',
dataIndex: 'goods_status',
scopedSlots:{customRender:'goods_status'},
// align:'center'
diff --git a/src/components/page/afterService/invoice.vue b/src/components/page/afterService/invoice.vue
index c0b9c78..6f4cbbd 100644
--- a/src/components/page/afterService/invoice.vue
+++ b/src/components/page/afterService/invoice.vue
@@ -15,25 +15,25 @@
销方纳税人:
-
+
购方纳税人:
-
+
订单编号:
-
+
订单状态:
@@ -43,11 +43,11 @@
-
+
创建时间:
-
+
查 询
重 置
@@ -102,13 +102,13 @@ export default {
page:1,
data:[],
columns:[
- {
- title: '序号',
- className: 'table_column',
- dataIndex: 'id',
- width:'65px',
- align:'center'
- },
+ // {
+ // title: '序号',
+ // className: 'table_column',
+ // dataIndex: 'id',
+ // width:'65px',
+ // align:'center'
+ // },
{
title: '生成时间',
dataIndex: 'money',
@@ -140,11 +140,11 @@ export default {
dataIndex: '',
align:'center'
},
- {
- title: '订单类型',
- dataIndex: '',
- align:'center'
- },
+ // {
+ // title: '订单类型',
+ // dataIndex: '',
+ // align:'center'
+ // },
{
title: '发票金额',
dataIndex: '',
diff --git a/src/components/page/classification/Category.vue b/src/components/page/classification/Category.vue
index 3b3d1dd..0813177 100644
--- a/src/components/page/classification/Category.vue
+++ b/src/components/page/classification/Category.vue
@@ -164,12 +164,12 @@ export default {
logDate:[],
data:[],
columns:[
- {
- title: '序号',
- dataIndex: 'id',
- width:'65px',
- align:'center'
- },
+ // {
+ // title: '序号',
+ // dataIndex: 'id',
+ // width:'65px',
+ // align:'center'
+ // },
{
title: '创建时间',
dataIndex: 'createtime',
diff --git a/src/components/page/classification/DataQuery.vue b/src/components/page/classification/DataQuery.vue
index a925122..ba5dd9f 100644
--- a/src/components/page/classification/DataQuery.vue
+++ b/src/components/page/classification/DataQuery.vue
@@ -10,7 +10,7 @@
- ISLI标识码:
+ 标的ISLI标识码:
@@ -18,11 +18,11 @@
- 委托方:
-
+ 委托方/授权方:
+
- 标的类型:
+ 交易品种:
全部
文化资源数据
@@ -30,13 +30,14 @@
- 数据状态:
+ 发布状态:
全部文化数据
- 已上架文化数据
- 已下架文化数据
+ 已发布文化数据
+ 暂停中文化数据
+ 已终止文化数据
已转让文化数据
- 已失效文化数据
+ 委托期满文化数据
@@ -59,7 +60,7 @@
- 创建时间:
+ 上线时间:
@@ -77,7 +78,7 @@
- {{goods_status==1?'上架中':goods_status==2?'下架中':goods_status==3?'已转让':'已失效'}}
+ {{goods_status==1?'已发布':goods_status==2?'已终止':goods_status==3?'已转让':goods_status==4?'委托期满':'暂停中'}}
{{goods_type==1?'文化资源数据':'文化数字内容'}}
@@ -87,7 +88,7 @@
- 数据查看
+ 标的信息
操作记录
@@ -145,19 +146,19 @@ export default {
page:1,
data:[],
columns:[
+ // {
+ // title: '序号',
+ // dataIndex: 'id',
+ // width:'65px',
+ // align:'center'
+ // },
{
- title: '序号',
- dataIndex: 'id',
- width:'65px',
- align:'center'
- },
- {
- title: '创建时间',
+ title: '上线时间',
dataIndex: 'createtime',
// align:'center'
},
{
- title: 'ISLI标识码',
+ title: '标的ISLI标识码',
dataIndex: 'goods_islicode',
// align:'center'
},
@@ -167,7 +168,7 @@ export default {
// align:'center'
},
{
- title: '授权方',
+ title: '委托方/授权方',
dataIndex: 'username',
// align:'center'
},
@@ -178,7 +179,7 @@ export default {
// align:'center'
},
{
- title: '数据状态',
+ title: '发布状态',
dataIndex: 'goods_status',
scopedSlots:{customRender:'goods_status'},
// align:'center'
diff --git a/src/components/page/fundSettlement/index.vue b/src/components/page/fundSettlement/index.vue
index dcbaf2a..42b251e 100644
--- a/src/components/page/fundSettlement/index.vue
+++ b/src/components/page/fundSettlement/index.vue
@@ -111,12 +111,12 @@ export default {
islicode:'',
data:[],
columns:[
- {
- title: '序号',
- dataIndex: 'id',
- width:'65px',
- // align:'center'
- },
+ // {
+ // title: '序号',
+ // dataIndex: 'id',
+ // width:'65px',
+ // // align:'center'
+ // },
{
title: '用户编码',
dataIndex: 'islicode',
diff --git a/src/components/page/fundSettlement/splitProportion.vue b/src/components/page/fundSettlement/splitProportion.vue
index 27a4eff..2a1fde2 100644
--- a/src/components/page/fundSettlement/splitProportion.vue
+++ b/src/components/page/fundSettlement/splitProportion.vue
@@ -101,7 +101,7 @@
- 平台服务费用
+ 交易佣金费用
@@ -194,12 +194,12 @@ export default {
},
data:[],
columns:[
- {
- title: '序号',
- dataIndex: 'id',
- width:'65px',
- align:'center'
- },
+ // {
+ // title: '序号',
+ // dataIndex: 'id',
+ // width:'65px',
+ // align:'center'
+ // },
{
title: '创建时间',
dataIndex: 'createtime',
@@ -304,7 +304,7 @@ export default {
this.query1.rule_name=''
},
addRule(){
- if(parseInt(this.query1.ratio[0].ratio)+parseInt(this.query1.ratio[2].ratio)!=100){
+ if(parseFloat(this.query1.ratio[0].ratio)+parseFloat(this.query1.ratio[2].ratio)!=100){
this.$message.error('授权方和平台方的加起来比列要等于100');
return
}
diff --git a/src/components/page/layout/index.vue b/src/components/page/layout/index.vue
index 380eb0f..bfa0dbb 100644
--- a/src/components/page/layout/index.vue
+++ b/src/components/page/layout/index.vue
@@ -23,7 +23,7 @@
- {{goods_status==1?'上架中':goods_status==2?'下架中':goods_status==3?'已转让':'已失效'}}
+ {{goods_status==1?'已发布':goods_status==2?'已终止':goods_status==3?'已转让':goods_status==4?'委托期满':'暂停中'}}
{{goods_type==1?'文化资源数据':'文化数字内容'}}
@@ -55,7 +55,7 @@
- 标的类型:
+ 交易品种:
全部
文化资源数据
@@ -63,13 +63,14 @@
- 数据状态:
+ 发布状态:
全部文化数据
- 已上架文化数据
- 已下架文化数据
+ 已发布文化数据
+ 暂停中文化数据
+ 已终止文化数据
已转让文化数据
- 已失效文化数据
+ 委托期满文化数据
@@ -106,7 +107,7 @@
- {{goods_status==1?'上架中':goods_status==2?'下架中':goods_status==3?'已转让':'已失效'}}
+ {{goods_status==1?'已发布':goods_status==2?'已终止':goods_status==3?'已转让':goods_status==4?'委托期满':'暂停中'}}
{{goods_type==1?'文化资源数据':'文化数字内容'}}
@@ -188,12 +189,12 @@ export default {
data:[],
data1:[],
columns1:[
- {
- title: '序号',
- dataIndex: 'id',
- width:'65px',
- align:'center'
- },
+ // {
+ // title: '序号',
+ // dataIndex: 'id',
+ // width:'65px',
+ // align:'center'
+ // },
{
title: '创建时间',
dataIndex: 'createtime',
@@ -210,7 +211,7 @@ export default {
// align:'center'
},
{
- title: '授权方',
+ title: '委托方/授权方',
dataIndex: 'username',
// align:'center'
},
@@ -221,7 +222,7 @@ export default {
// align:'center'
},
{
- title: '数据状态',
+ title: '发布状态',
dataIndex: 'goods_status',
scopedSlots:{customRender:'goods_status'},
// align:'center'
@@ -256,7 +257,7 @@ export default {
// align:'center'
},
{
- title: '授权方',
+ title: '委托方/授权方',
dataIndex: 'username',
// align:'center'
},
@@ -267,7 +268,7 @@ export default {
// align:'center'
},
{
- title: '数据状态',
+ title: '发布状态',
dataIndex: 'goods_status',
scopedSlots:{customRender:'goods_status'},
// align:'center'
diff --git a/src/components/page/order/closed.vue b/src/components/page/order/closed.vue
index 10290ba..a8ba107 100644
--- a/src/components/page/order/closed.vue
+++ b/src/components/page/order/closed.vue
@@ -9,21 +9,21 @@
-
+
订单编号:
-
- 授权方:
-
+
+ 委托方/授权方:
+
-
- 被授权方:
-
+
+ 购买方/被授权方:
+
-
- 标的名称:
-
+
+ 交易标的:
+
-
-
+
+ 收费类型:
+
+ 全部
+ 免费
+ 付费
+
+
+
交易方式:
全部
@@ -44,11 +51,11 @@
授权
-
+
创建时间:
-
+
查 询
重 置
@@ -67,7 +74,7 @@
- 数据查看
+ 标的信息
订单详情
@@ -89,7 +96,7 @@
-
+
@@ -109,6 +116,7 @@ export default {
transaction_status:'5',
createtime:'',
goods_isli:'',
+ charges_type:'',
},
visible:false,
visible2:false,
@@ -122,12 +130,12 @@ export default {
page:1,
data:[],
columns:[
- {
- title: '序号',
- dataIndex: 'id',
- width:'65px',
- align:'center'
- },
+ // {
+ // title: '序号',
+ // dataIndex: 'id',
+ // width:'65px',
+ // align:'center'
+ // },
{
title: '订单创建时间',
dataIndex: 'createtime',
@@ -140,7 +148,7 @@ export default {
// align:'center'
},
{
- title: '授权方/卖方',
+ title: '委托方/授权方',
dataIndex: 'entrust_name',
// align:'center'
},
@@ -150,7 +158,7 @@ export default {
// align:'center'
},
{
- title: '被授权方/买方',
+ title: '购买方/被授权方',
dataIndex: 'buy_username',
// width:'130px',
// align:'center'
@@ -168,7 +176,7 @@ export default {
// align:'center'
},
{
- title: '交易总额',
+ title: '订单金额',
dataIndex: 'total_money',
// width:'90px',
// align:'center'
@@ -184,7 +192,7 @@ export default {
},
components:{
Operation,
- dataSelect: () => import('../../dateSelect/index.vue'),
+ orderDataSelect: () => import('../../dateSelect/order.vue'),
orderDetails: () => import('../../orderDetails/index.vue'),
},
created(){
diff --git a/src/components/page/order/completed.vue b/src/components/page/order/completed.vue
index 99c1f9a..fee2095 100644
--- a/src/components/page/order/completed.vue
+++ b/src/components/page/order/completed.vue
@@ -9,21 +9,21 @@
-
+
订单编号:
-
- 授权方:
-
+
+ 委托方/授权方:
+
-
- 被授权方:
-
+
+ 购买方/被授权方:
+
-
- 标的名称:
-
+
+ 交易标的:
+
-
-
+
+ 收费类型:
+
+ 全部
+ 免费
+ 付费
+
+
+
交易方式:
全部
@@ -44,11 +51,11 @@
授权
-
+
创建时间:
-
+
查 询
重 置
@@ -67,7 +74,7 @@
- 数据查看
+ 标的信息
订单详情
@@ -89,7 +96,7 @@
-
+
@@ -109,6 +116,7 @@ export default {
transaction_status:'4',
createtime:'',
goods_isli:'',
+ charges_type:'',
},
visible:false,
visible2:false,
@@ -122,12 +130,12 @@ export default {
page:1,
data:[],
columns:[
- {
- title: '序号',
- dataIndex: 'id',
- width:'65px',
- align:'center'
- },
+ // {
+ // title: '序号',
+ // dataIndex: 'id',
+ // width:'65px',
+ // align:'center'
+ // },
{
title: '订单创建时间',
dataIndex: 'createtime',
@@ -140,7 +148,7 @@ export default {
// align:'center'
},
{
- title: '授权方/卖方',
+ title: '委托方/授权方',
dataIndex: 'entrust_name',
// align:'center'
},
@@ -150,7 +158,7 @@ export default {
// align:'center'
},
{
- title: '被授权方/买方',
+ title: '购买方/被授权方',
dataIndex: 'buy_username',
// width:'130px',
// align:'center'
@@ -168,7 +176,7 @@ export default {
// align:'center'
},
{
- title: '交易总额',
+ title: '订单金额',
dataIndex: 'total_money',
// width:'90px',
// align:'center'
@@ -184,7 +192,7 @@ export default {
},
components:{
Operation,
- dataSelect: () => import('../../dateSelect/index.vue'),
+ orderDataSelect: () => import('../../dateSelect/order.vue'),
orderDetails: () => import('../../orderDetails/index.vue'),
},
created(){
diff --git a/src/components/page/order/index.vue b/src/components/page/order/index.vue
index b442fed..8d99981 100644
--- a/src/components/page/order/index.vue
+++ b/src/components/page/order/index.vue
@@ -9,21 +9,21 @@
-
+
订单编号:
-
- 授权方:
-
+
+ 委托方/授权方:
+
-
- 被授权方:
-
+
+ 购买方/被授权方:
+
-
- 标的名称:
-
+
+ 交易标的:
+
-
-
+
+ 收费类型:
+
+ 全部
+ 免费
+ 付费
+
+
+
交易方式:
全部
@@ -44,22 +51,22 @@
授权
-
- 交易状态:
+
+ 订单状态:
全部
待付款
待交付
待结算
- 已完成
+ 已终止
已关闭
-
+
订单创建时间:
-
+
查 询
重 置
@@ -77,11 +84,11 @@
{{type==1?'委托订单':type==2?'认证订单':'服务订单'}}
- {{status==1?'待付款':status==2?'待交付':status==3?'待结算':status==4?'已完成':'已关闭'}}
+ {{status==1?'待付款':status==2?'待交付':status==3?'待结算':status==4?'已终止':'已关闭'}}
- 数据查看
+ 标的信息
订单详情
@@ -103,7 +110,7 @@
-
+
@@ -123,6 +130,7 @@ export default {
transaction_status:'',
createtime:'',
goods_isli:'',
+ charges_type:'',
},
batchcode:'',
visible:false,
@@ -136,12 +144,12 @@ export default {
page:1,
data:[],
columns:[
- {
- title: '序号',
- dataIndex: 'id',
- width:'65px',
- align:'center'
- },
+ // {
+ // title: '序号',
+ // dataIndex: 'id',
+ // width:'65px',
+ // align:'center'
+ // },
{
title: '订单创建时间',
// width:'160px',
@@ -154,7 +162,7 @@ export default {
// align:'center'
},
{
- title: '授权方/卖方',
+ title: '委托方/授权方',
dataIndex: 'entrust_name',
// align:'center'
},
@@ -164,7 +172,7 @@ export default {
// align:'center'
},
{
- title: '被授权方/买方',
+ title: '购买方/被授权方',
dataIndex: 'buy_username',
// width:'130px',
// align:'center'
@@ -182,7 +190,7 @@ export default {
// align:'center'
},
{
- title: '交易总额',
+ title: '订单金额',
dataIndex: 'total_money',
// align:'center'
},
@@ -204,7 +212,7 @@ export default {
},
components:{
Operation,
- dataSelect: () => import('../../dateSelect/index.vue'),
+ orderDataSelect: () => import('../../dateSelect/order.vue'),
orderDetails: () => import('../../orderDetails/index.vue'),
},
created(){
diff --git a/src/components/page/order/pendingPayment.vue b/src/components/page/order/pendingPayment.vue
index 6f041a8..2e00de4 100644
--- a/src/components/page/order/pendingPayment.vue
+++ b/src/components/page/order/pendingPayment.vue
@@ -9,21 +9,21 @@
-
+
订单编号:
-
- 授权方:
-
+
+ 委托方/授权方:
+
-
- 被授权方:
-
+
+ 购买方/被授权方:
+
-
- 标的名称:
-
+
+ 交易标的:
+
-
-
+
+ 收费类型:
+
+ 全部
+ 免费
+ 付费
+
+
+
交易方式:
全部
@@ -44,11 +51,11 @@
授权
-
+
订单创建时间:
-
+
查 询
重 置
@@ -66,7 +73,7 @@
- 数据查看
+ 标的信息
订单详情
@@ -88,7 +95,7 @@
-
+
@@ -108,6 +115,7 @@ export default {
transaction_status:'1',
createtime:'',
goods_isli:'',
+ charges_type:'',
},
batchcode:'',
visible:false,
@@ -121,12 +129,12 @@ export default {
page:1,
data:[],
columns:[
- {
- title: '序号',
- dataIndex: 'id',
- width:'65px',
- align:'center'
- },
+ // {
+ // title: '序号',
+ // dataIndex: 'id',
+ // width:'65px',
+ // align:'center'
+ // },
{
title: '订单创建时间',
// width:'160px',
@@ -139,7 +147,7 @@ export default {
// align:'center'
},
{
- title: '授权方/卖方',
+ title: '委托方/授权方',
dataIndex: 'entrust_name',
align:'center'
},
@@ -149,7 +157,7 @@ export default {
align:'center'
},
{
- title: '被授权方/买方',
+ title: '购买方/被授权方',
dataIndex: 'buy_username',
// width:'130px',
align:'center'
@@ -167,7 +175,7 @@ export default {
align:'center'
},
{
- title: '交易总额',
+ title: '订单金额',
dataIndex: 'total_money',
align:'center'
},
@@ -182,7 +190,7 @@ export default {
},
components:{
Operation,
- dataSelect: () => import('../../dateSelect/index.vue'),
+ orderDataSelect: () => import('../../dateSelect/order.vue'),
orderDetails: () => import('../../orderDetails/index.vue'),
},
created(){
diff --git a/src/components/page/order/toBeDelivered.vue b/src/components/page/order/toBeDelivered.vue
index 1b4c257..ca9a790 100644
--- a/src/components/page/order/toBeDelivered.vue
+++ b/src/components/page/order/toBeDelivered.vue
@@ -9,21 +9,21 @@
-
+
订单编号:
-
- 授权方:
-
+
+ 委托方/授权方:
+
-
- 被授权方:
-
+
+ 购买方/被授权方:
+
-
- 标的名称:
-
+
+ 交易标的:
+
-
-
+
+ 收费类型:
+
+ 全部
+ 免费
+ 付费
+
+
+
交易方式:
全部
@@ -44,11 +51,11 @@
授权
-
+
订单创建时间:
-
+
查 询
重 置
@@ -67,7 +74,7 @@
- 数据查看
+ 标的信息
订单详情
@@ -89,7 +96,7 @@
-
+
@@ -109,6 +116,7 @@ export default {
transaction_status:'2',
createtime:'',
goods_isli:'',
+ charges_type:'',
},
visible:false,
visible2:false,
@@ -122,12 +130,12 @@ export default {
page:1,
data:[],
columns:[
- {
- title: '序号',
- dataIndex: 'id',
- width:'65px',
- align:'center'
- },
+ // {
+ // title: '序号',
+ // dataIndex: 'id',
+ // width:'65px',
+ // align:'center'
+ // },
{
title: '订单创建时间',
dataIndex: 'createtime',
@@ -140,7 +148,7 @@ export default {
// align:'center'
},
{
- title: '授权方/卖方',
+ title: '委托方/授权方',
dataIndex: 'entrust_name',
// align:'center'
},
@@ -150,7 +158,7 @@ export default {
// align:'center'
},
{
- title: '被授权方/买方',
+ title: '购买方/被授权方',
dataIndex: 'buy_username',
// width:'130px',
// align:'center'
@@ -168,7 +176,7 @@ export default {
// align:'center'
},
{
- title: '交易总额',
+ title: '订单金额',
dataIndex: 'total_money',
// width:'90px',
// align:'center'
@@ -184,7 +192,7 @@ export default {
},
components:{
Operation,
- dataSelect: () => import('../../dateSelect/index.vue'),
+ orderDataSelect: () => import('../../dateSelect/order.vue'),
orderDetails: () => import('../../orderDetails/index.vue'),
},
created(){
diff --git a/src/components/page/order/toBeSettled.vue b/src/components/page/order/toBeSettled.vue
index a0f77a3..99f28b3 100644
--- a/src/components/page/order/toBeSettled.vue
+++ b/src/components/page/order/toBeSettled.vue
@@ -9,21 +9,21 @@
-
+
订单编号:
-
- 授权方:
-
+
+ 委托方/授权方:
+
-
- 被授权方:
-
+
+ 购买方/被授权方:
+
-
- 标的名称:
-
+
+ 交易标的:
+
-
-
+
+ 收费类型:
+
+ 全部
+ 免费
+ 付费
+
+
+
交易方式:
全部
@@ -44,11 +51,11 @@
授权
-
+
创建时间:
-
+
查 询
重 置
@@ -67,7 +74,7 @@
- 数据查看
+ 标的信息
订单详情
@@ -89,7 +96,7 @@
-
+
@@ -109,6 +116,7 @@ export default {
transaction_status:'3',
createtime:'',
goods_isli:'',
+ charges_type:'',
},
visible:false,
visible2:false,
@@ -122,12 +130,12 @@ export default {
page:1,
data:[],
columns:[
- {
- title: '序号',
- dataIndex: 'id',
- width:'65px',
- align:'center'
- },
+ // {
+ // title: '序号',
+ // dataIndex: 'id',
+ // width:'65px',
+ // align:'center'
+ // },
{
title: '订单创建时间',
dataIndex: 'createtime',
@@ -140,7 +148,7 @@ export default {
// align:'center'
},
{
- title: '授权方/卖方',
+ title: '委托方/授权方',
dataIndex: 'entrust_name',
// align:'center'
},
@@ -150,7 +158,7 @@ export default {
// align:'center'
},
{
- title: '被授权方/买方',
+ title: '购买方/被授权方',
dataIndex: 'buy_username',
// width:'130px',
// align:'center'
@@ -168,7 +176,7 @@ export default {
// align:'center'
},
{
- title: '交易总额',
+ title: '订单金额',
dataIndex: 'total_money',
// width:'90px',
// align:'center'
@@ -184,7 +192,7 @@ export default {
},
components:{
Operation,
- dataSelect: () => import('../../dateSelect/index.vue'),
+ orderDataSelect: () => import('../../dateSelect/order.vue'),
orderDetails: () => import('../../orderDetails/index.vue'),
},
created(){
diff --git a/src/router/index.js b/src/router/index.js
index a2bafe4..3e09acd 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -60,7 +60,7 @@ export default new Router({
{
path: '/completed',
component: () => import(/* webpackChunkName: "dashboard" */ '../components/page/order/completed.vue'),
- meta: { title: '已完成订单' }
+ meta: { title: '已终止订单' }
},
{
path: '/closed',