xialei 1 год назад
Родитель
Сommit
c5702117fc
1 измененных файлов с 10 добавлено и 0 удалено
  1. 10 0
      src/views/accounts/accountRecord/index.vue

+ 10 - 0
src/views/accounts/accountRecord/index.vue

@@ -37,11 +37,21 @@
37 37
             <span style="color: orange;"> -{{ scope.row.expenditure }} </span>
38 38
           </template>
39 39
         </el-table-column> -->
40
+        <el-table-column label="分润额" prop="fenrun" min-width="130">
41
+          <template slot-scope="scope">
42
+            <span style="color: green;"> {{ scope.row.fenrun }} </span>
43
+          </template>
44
+        </el-table-column>
40 45
         <el-table-column label="入账金额(元)" prop="accounting" min-width="130">
41 46
           <template slot-scope="scope">
42 47
             <span style="color: green;"> {{ scope.row.accounting }} </span>
43 48
           </template>
44 49
         </el-table-column>
50
+        <el-table-column label="京豆" prop="jingdou" min-width="130">
51
+          <template slot-scope="scope">
52
+            <span style="color: green;"> {{ scope.row.jingdou }} </span>
53
+          </template>
54
+        </el-table-column>
45 55
         <el-table-column label="操作" min-width="130">
46 56
           <template slot-scope="scope">
47 57
             <el-button type="text" size="small" class="mr10" @click="checkAccountDetail(scope.row)">账单详情</el-button>