zhengnaiwen_citu пре 4 месеци
родитељ
комит
3ed24fce9a

+ 9 - 0
src/views/salary/claim/sharingClaim/index.vue

@@ -44,6 +44,15 @@ export default {
   data () {
     return {
       searchItems: [
+        {
+          label: '机构名称',
+          prop: 'organizationNo',
+          type: 'select',
+          options: {
+            placeholder: '请选择机构名称',
+            items: []
+          }
+        },
         {
           label: '月份',
           prop: 'month',

+ 9 - 9
src/views/salary/claim/staff/index.vue

@@ -45,15 +45,6 @@ export default {
       customerIdModel: null,
       customerId: null,
       searchItems: [
-        {
-          label: '客户编号',
-          prop: 'customerId',
-          type: 'input',
-          options: {
-            clearable: false,
-            placeholder: '请输入客户编号'
-          }
-        },
         {
           label: '月份',
           prop: 'month',
@@ -66,6 +57,15 @@ export default {
             placeholder: '选择查询月份'
           }
         },
+        {
+          label: '客户编号',
+          prop: 'customerId',
+          type: 'input',
+          options: {
+            clearable: false,
+            placeholder: '请输入客户编号'
+          }
+        },
         {
           label: '科目名称',
           prop: 'subjectName',

+ 5 - 5
src/views/salary/claim/utils/index.js

@@ -1,16 +1,16 @@
 export const HEADERS = [
+  { label: '机构名称', prop: 'organizationName', width: 120 },
+  { label: '数据日期', prop: 'dataDate', width: 120 },
   { label: '客户编号', prop: 'customerId', align: 'center' },
   { label: '一级科目编码/名称', prop: 'oneLevelSubject', width: 180 },
   { label: '二级科目编码/名称', prop: 'twoLevelSubject', width: 180 },
   { label: '金额', prop: 'amount' },
-  { label: '机构名称', prop: 'organizationName' },
+  { label: '员工分润比例', prop: 'employeeProfitSharingRatio', align: 'center', width: 120 },
+  { label: '管户层级标识', prop: 'customerLevelIdentifier', width: 120 },
+  { label: '客户类别标识', prop: 'customerCategoryIdentifier', width: 120 },
   { label: '统一认证号1', prop: 'unifiedCertificationNumber1', width: 150 },
   { label: '员工姓名1', prop: 'employeeName1', width: 120 },
   { label: '统一认证号2', prop: 'unifiedCertificationNumber2', width: 150 },
   { label: '员工姓名2', prop: 'employeeName2', width: 120 },
-  { label: '管户层级标识', prop: 'customerLevelIdentifier' },
-  { label: '客户类别标识', prop: 'customerCategoryIdentifier' },
-  { label: '员工分润比例', prop: 'employeeProfitSharingRatio', align: 'center' },
-  { label: '数据日期', prop: 'dataDate', width: 120 },
   { label: '操作', prop: 'actions', fixed: 'right', width: 180 }
 ]