Browse Source

添加列和搜索条件

lex-xin 4 years ago
parent
commit
582e83b180
1 changed files with 20 additions and 2 deletions
  1. 20 2
      src/views/operationalEarly/operationalList.vue

+ 20 - 2
src/views/operationalEarly/operationalList.vue

@@ -38,6 +38,9 @@
           </el-date-picker>
         </el-form-item>
         <el-form-item>
+          <el-input v-model="searchForm.maxSalary" type="number" placeholder="预警课酬小于"></el-input>
+        </el-form-item>
+        <el-form-item>
           <el-button type="danger" native-type="submit">搜索</el-button>
           <el-button native-type="reset" type="primary">重置</el-button>
         </el-form-item>
@@ -71,7 +74,9 @@
             label="乐团节数"
           >
           </el-table-column>
-          <el-table-column align="center" prop="vipCourseNum" label="小课节数">
+          <el-table-column align="center" prop="vipCourseNum" label="VIP节数">
+          </el-table-column>
+          <el-table-column align="center" prop="practiceCourseNum" label="网管节数">
           </el-table-column>
           <el-table-column
             align="center"
@@ -87,7 +92,7 @@
           <el-table-column
             align="center"
             prop="expectVipCourseSalary"
-            label="预计小课课酬"
+            label="预计VIP课酬"
           >
             <template slot-scope="scope">
               <div>
@@ -97,6 +102,17 @@
           </el-table-column>
           <el-table-column
             align="center"
+            prop="expectPracticeCourseSalary"
+            label="预计网管课酬"
+          >
+            <template slot-scope="scope">
+              <div>
+                {{ scope.row.expectPracticeCourseSalary | moneyFormat }}
+              </div>
+            </template>
+          </el-table-column>
+          <el-table-column
+            align="center"
             label="预计课酬合计"
             prop="expectTotalSalary"
           >
@@ -148,6 +164,7 @@ export default {
         organId: null,
         monthStr: nowMonth,
         userId: null,
+        maxSalary: null,
       },
       tableList: [{}],
       organList: [],
@@ -187,6 +204,7 @@ export default {
         organId: null,
         monthStr: null,
         userId: null,
+        maxSalary: null,
       };
       this.getList();
     },