浏览代码

优化表格字段

梁展鹏 3 年之前
父节点
当前提交
3f66610b4b

+ 10 - 0
src/views/financialManagement/cashDetail/index.vue

@@ -47,6 +47,16 @@ export default {
           minWidth: this.$col.b
         },
         {
+          key: 'type',
+          name: '类型',
+          minWidth: this.$col.b
+        },
+        {
+          key: 'value',
+          name: '数值',
+          minWidth: this.$col.b
+        },
+        {
           key: 'createAt',
           name: '时间',
           width: this.$col.b

+ 14 - 9
src/views/financialManagement/orderManagement/index.vue

@@ -36,16 +36,10 @@ export default {
           name: '订单编号',
           minWidth: this.$col.b
         },
-        // {
-        //   key: 'payPerson',
-        //   name: '购买用户',
-        //   width: this.$col.s
-        // },
         {
-          key: 'paidPrice',
-          name: '实付金额',
-          width: this.$col.m,
-          render: (h, { row }) => h('span', `¥${row.paidPrice}`)
+          key: 'accountNickname',
+          name: '账号昵称',
+          width: this.$col.s
         },
         {
           key: 'payablePrice',
@@ -54,12 +48,23 @@ export default {
           render: (h, { row }) => h('span', `¥${row.payablePrice}`)
         },
         {
+          key: 'paidPrice',
+          name: '实付金额',
+          width: this.$col.m,
+          render: (h, { row }) => h('span', `¥${row.paidPrice}`)
+        },
+        {
           key: 'payChannels',
           name: '支付渠道',
           width: this.$col.m
         },
         {
           key: 'payEndTime',
+          name: '创建时间',
+          width: this.$col.b
+        },
+        {
+          key: 'payEndTime',
           name: '支付时间',
           width: this.$col.b
         },