Browse Source

成本分配列表-增加审核人/单据状态筛选条件

jbb 1 year ago
parent
commit
8617e39d0e
1 changed files with 18 additions and 2 deletions
  1. 18 2
      src/views/cost-allocation-total/list.vue

+ 18 - 2
src/views/cost-allocation-total/list.vue

@@ -79,7 +79,23 @@
                   </a-select>
               </a-form-item>
             </a-col>
-            
+            <a-col :md="6" :sm="8">
+              <a-form-item label="审核人">
+                <a-input placeholder="请输入" v-model="queryParam.approvalMan"></a-input>
+              </a-form-item>
+            </a-col>
+            <a-col :md="6" :sm="8">
+            <a-form-item label="单据状态">
+                <a-select v-model="queryParam.status">
+                    <a-select-option value="">请选择</a-select-option>
+                    <a-select-option value="保存">保存</a-select-option>
+                    <a-select-option value="提交">提交</a-select-option>
+                    <a-select-option value="已指派">已指派</a-select-option>
+                    <a-select-option value="返单">返单</a-select-option>
+                    <a-select-option value="完成">完成</a-select-option>
+                  </a-select>
+              </a-form-item>
+            </a-col>
             
             </template>
 
@@ -216,7 +232,7 @@ export default {
         { title: '事故金额(¥)', width: 120, dataIndex: 'accidentcnyAmount', ellipsis: true, className: 'replacecolor' },
         { title: '事故金额($)', width: 120, dataIndex: 'accidentUsdamount', ellipsis: true, className: 'replacecolor' },
         { title: '备注', width: 120, dataIndex: 'remarks', ellipsis: true, className: 'replacecolor' },
-        { title: '状态', width: 120,fixed: 'right', dataIndex: 'status', ellipsis: true, className: 'replacecolor' },
+        { title: '状态', width: 120,fixed: 'right', dataIndex: ' ', ellipsis: true, className: 'replacecolor' },
 
         { title: '操作', width: 120 ,fixed: 'right', dataIndex: 'option', ellipsis: true, className: 'replacecolor', scopedSlots: { customRender: 'action' } },
       ],