张田田 пре 3 месеци
родитељ
комит
b18cb35f92
3 измењених фајлова са 4 додато и 1 уклоњено
  1. 2 0
      src/model/care.model.ts
  2. 1 0
      src/pages/index/order/management.vue
  3. 1 1
      src/service/OrderDetail.vue

+ 2 - 0
src/model/care.model.ts

@@ -293,6 +293,8 @@ export interface ConditioningRecordListModel {
   orderAmount?: number | string; // 订单金额
   orderAmount?: number | string; // 订单金额
   createBy?: string; // 创建人
   createBy?: string; // 创建人
   estimatedStartDate?: string; // 开始调养日期
   estimatedStartDate?: string; // 开始调养日期
+  realProfitSharing?: string; // 实际分账比例
+  profitSharing?:string; // 预计分账比例
 }
 }
 export type ConditioningRecordListQuery = Partial<ConditioningRecordListModel> & {
 export type ConditioningRecordListQuery = Partial<ConditioningRecordListModel> & {
   orderStatus?: string; // 订单状态
   orderStatus?: string; // 订单状态

+ 1 - 0
src/pages/index/order/management.vue

@@ -158,6 +158,7 @@ const gridOptions = reactive<VxeGridProps<ConditioningRecordListModel>>({
     { field: 'progress', title: '调理状态', slots: { default: 'patients' } },
     { field: 'progress', title: '调理状态', slots: { default: 'patients' } },
     { field: 'orderStatus', title: '订单状态', slots: { default: 'orderStatus' } },
     { field: 'orderStatus', title: '订单状态', slots: { default: 'orderStatus' } },
     { field: 'cost', title: '订单金额' },
     { field: 'cost', title: '订单金额' },
+    { field: 'profitSharing', title: '分账' },
     {
     {
       field: 'action',
       field: 'action',
       title: '操作',
       title: '操作',

+ 1 - 1
src/service/OrderDetail.vue

@@ -80,7 +80,7 @@ const deliveryInfo = computed(() => {
 // 点击项目名称查看商品详情
 // 点击项目名称查看商品详情
 function handleItemNameClick(row: any) {
 function handleItemNameClick(row: any) {
   VxeUI.modal.open({
   VxeUI.modal.open({
-    title: '项目商品详情',
+    title: '商品详情',
     fullscreen: true,
     fullscreen: true,
     escClosable: true,
     escClosable: true,
     destroyOnClose: true,
     destroyOnClose: true,