diff --git a/pages/market/clue/clue_info.vue b/pages/market/clue/clue_info.vue index e6be625..f91da5e 100644 --- a/pages/market/clue/clue_info.vue +++ b/pages/market/clue/clue_info.vue @@ -281,6 +281,7 @@ resource_sharing_id:'',//共享资源表id clientInfo:{ id:'',//共享资源id + resource_id:'',//客户资源id customerResource:{},//客户资源信息 sixSpeed:{},//六要素信息 },//共享资源详情 @@ -377,7 +378,7 @@ //跳转页面-订单列表 openViewOrder() { - let resource_id = this.clientInfo.resource_id + let resource_id = this.clientInfo.resource_id//客户资源id this.$navigateTo({ url: `/pages/market/clue/order_list?resource_id=${resource_id}` }) diff --git a/pages/market/clue/order_list.vue b/pages/market/clue/order_list.vue index 5da2bd0..0ef299a 100644 --- a/pages/market/clue/order_list.vue +++ b/pages/market/clue/order_list.vue @@ -16,22 +16,47 @@ :key="k" > - 企业合同 - 下载合同 + 订单状态 + - 合同名称: - {{v.title}} + 客户姓名: + {{ v.resource_id_name }} + - 签署方: - {{v.signatory_a}} + 付款类型: + + {{ v.payment_type === 'cash' ? '现金支付' : v.payment_type === 'scan_code' ? '扫码支付' : '订阅支付' }} + + + + 订单金额: + ¥{{ v.order_amount }} + + - 签署方: - {{v.signatory_b}} + 课程: + {{ v.course_id_name }} + + + 班级: + {{ v.class_id_name }} + + + + 人员: + {{ v.staff_id_name }} + + + + 支付时间: + {{ v.payment_time }} + + @@ -41,8 +66,8 @@