Browse Source

页面返回值提醒修改

user5 2 years ago
parent
commit
1950078a12

+ 6 - 6
src/views/modules/reimbursementSys/accountant/reimbursementForm.vue

@@ -8,7 +8,7 @@
              label-width="120px" v-loading="loading" :class="method==='view'?'readonly':''" :disabled="method==='view'" @submit.native.prevent>
       <el-row :gutter="15">
         <el-col :span="12">
-          <el-form-item label="随机业务编码" prop="randomType">
+          <el-form-item label="随机报销批次" prop="randomType">
             <el-radio-group v-model="inputForm.randomType" @change="changeRadio(inputForm.randomType)">
               <el-radio label="1">是</el-radio>
               <el-radio label="0">否</el-radio>
@@ -17,8 +17,8 @@
         </el-col>
 
         <el-col :span="12" v-if="this.isShow">
-          <el-form-item label="业务编码" prop="businessCode" :rules=" [{required: true,max: 50, message: '业务编号不能为空', trigger: 'blur'}]">
-            <el-input v-model="inputForm.businessCode" placeholder="业务编码"></el-input>
+          <el-form-item label="报销批次" prop="businessCode" :rules=" [{required: true,max: 50, message: '报销批次不能为空', trigger: 'blur'}]">
+            <el-input v-model="inputForm.businessCode" placeholder="报销批次"></el-input>
           </el-form-item>
         </el-col>
       </el-row>
@@ -48,7 +48,7 @@
           parent: {
             id: ''
           },
-          businessCode: '' // 业务编码
+          businessCode: '' // 报销批次
         }
       }
     },
@@ -60,9 +60,9 @@
       init (method, obj) {
         this.method = method
         if (method === 'editBusiness') {
-          this.title = '修改业务编码'
+          this.title = '修改报销批次'
         } else if (method === 'view') {
-          this.title = '查看业务编码'
+          this.title = '查看报销批次'
         }
         this.visible = true
         this.$nextTick(() => {

+ 3 - 3
src/views/modules/reimbursementSys/accountant/reimbursementList.vue

@@ -160,9 +160,9 @@
 
           <vxe-column title="操作" width="300px" fixed="right" align="center">
             <template slot-scope="scope">
-              <el-button v-if="hasPermission('accountant:reimbursement:edit')  && scope.row.businessFlag === '1'" type="text" icon="el-icon-edit" size="small" @click="editInvoiceBusiness(scope.row.id)">新增业务编码</el-button>
-              <el-button v-if="hasPermission('accountant:reimbursement:edit') && scope.row.businessCode!=='' && scope.row.parentId === '0' && scope.row.randomType === '1' " type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">编辑业务编码</el-button>
-              <el-button v-if="hasPermission('accountant:reimbursement:edit') && (scope.row.businessCode==='' && scope.row.parentId === '0' && scope.row.businessFlag === '0')" type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">新增业务编码</el-button>
+              <el-button v-if="hasPermission('accountant:reimbursement:edit')  && scope.row.businessFlag === '1'" type="text" icon="el-icon-edit" size="small" @click="editInvoiceBusiness(scope.row.id)">新增报销批次</el-button>
+              <el-button v-if="hasPermission('accountant:reimbursement:edit') && scope.row.businessCode!=='' && scope.row.parentId === '0' && scope.row.randomType === '1' " type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">编辑报销批次</el-button>
+              <el-button v-if="hasPermission('accountant:reimbursement:edit') && (scope.row.businessCode==='' && scope.row.parentId === '0' && scope.row.businessFlag === '0')" type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">新增报销批次</el-button>
               <el-button v-if="hasPermission('accountant:reimbursement:edit') && scope.row.businessCode !== '' && !scope.row.reimbursementRatio && scope.row.parentId === '0'" type="text" icon="el-icon-edit" size="small" @click="editBusinessRatio(scope.row.id)">报销比例</el-button>
               <el-button v-if="hasPermission('accountant:reimbursementBusiness:add') && scope.row.businessCode !== '' && scope.row.reimbursementRatio && scope.row.parentId === '0' && scope.row.reimbursementStatus === '0'" type="text" icon="el-icon-plus" size="small" @click="addBusinessInfo(scope.row.id, scope.row.businessCode)">业务报销</el-button>
               <el-button v-if="hasPermission('accountant:reimbursementBusiness:view') && scope.row.businessCode !== '' && scope.row.reimbursementRatio && scope.row.parentId === '0'" type="text" icon="el-icon-view" size="small" @click="viewBusinessInfo(scope.row.id)">业务报销详情</el-button>

+ 3 - 3
src/views/modules/reimbursementSys/accountant/reimbursementRatioForm.vue

@@ -9,8 +9,8 @@
       <el-row :gutter="15">
 
         <el-col :span="12">
-          <el-form-item label="业务编码" prop="businessCode" :rules=" [{required: true,max: 50, message: '业务编号不能为空', trigger: 'blur'}]">
-            <el-input v-model="inputForm.businessCode" placeholder="业务编码" :disabled="true"></el-input>
+          <el-form-item label="报销批次" prop="businessCode" :rules=" [{required: true,max: 50, message: '报销批次不能为空', trigger: 'blur'}]">
+            <el-input v-model="inputForm.businessCode" placeholder="报销批次" :disabled="true"></el-input>
           </el-form-item>
         </el-col>
         <el-col :span="12">
@@ -87,7 +87,7 @@
         if (method === 'editBusinessRatio') {
           this.title = '修改报销比例'
         } else if (method === 'view') {
-          this.title = '查看业务编码'
+          this.title = '查看报销批次'
         }
         this.visible = true
         this.$nextTick(() => {

+ 6 - 6
src/views/modules/reimbursementSys/assess/reimbursementForm.vue

@@ -8,7 +8,7 @@
              label-width="120px" v-loading="loading" :class="method==='view'?'readonly':''" :disabled="method==='view'" @submit.native.prevent>
       <el-row :gutter="15">
         <el-col :span="12">
-          <el-form-item label="随机业务编码" prop="randomType">
+          <el-form-item label="随机报销批次" prop="randomType">
             <el-radio-group v-model="inputForm.randomType" @change="changeRadio(inputForm.randomType)">
               <el-radio label="1">是</el-radio>
               <el-radio label="0">否</el-radio>
@@ -17,8 +17,8 @@
         </el-col>
 
         <el-col :span="12" v-if="this.isShow">
-          <el-form-item label="业务编码" prop="businessCode" :rules=" [{required: true,max: 50, message: '业务编号不能为空', trigger: 'blur'}]">
-            <el-input v-model="inputForm.businessCode" placeholder="业务编码"></el-input>
+          <el-form-item label="报销批次" prop="businessCode" :rules=" [{required: true,max: 50, message: '报销批次不能为空', trigger: 'blur'}]">
+            <el-input v-model="inputForm.businessCode" placeholder="报销批次"></el-input>
           </el-form-item>
         </el-col>
       </el-row>
@@ -48,7 +48,7 @@
           parent: {
             id: ''
           },
-          businessCode: '' // 业务编码
+          businessCode: '' // 报销批次
         }
       }
     },
@@ -60,9 +60,9 @@
       init (method, obj) {
         this.method = method
         if (method === 'editBusiness') {
-          this.title = '修改业务编码'
+          this.title = '修改报销批次'
         } else if (method === 'view') {
-          this.title = '查看业务编码'
+          this.title = '查看报销批次'
         }
         this.visible = true
         this.$nextTick(() => {

+ 3 - 3
src/views/modules/reimbursementSys/assess/reimbursementList.vue

@@ -160,9 +160,9 @@
 
           <vxe-column title="操作" width="300px" fixed="right" align="center">
             <template slot-scope="scope">
-              <el-button v-if="hasPermission('assess:reimbursement:edit')  && scope.row.businessFlag === '1'" type="text" icon="el-icon-edit" size="small" @click="editInvoiceBusiness(scope.row.id)">新增业务编码</el-button>
-              <el-button v-if="hasPermission('assess:reimbursement:edit') && scope.row.businessCode!=='' && scope.row.parentId === '0' && scope.row.randomType === '1' " type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">编辑业务编码</el-button>
-              <el-button v-if="hasPermission('assess:reimbursement:edit') && (scope.row.businessCode==='' && scope.row.parentId === '0' && scope.row.businessFlag === '0')" type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">新增业务编码</el-button>
+              <el-button v-if="hasPermission('assess:reimbursement:edit')  && scope.row.businessFlag === '1'" type="text" icon="el-icon-edit" size="small" @click="editInvoiceBusiness(scope.row.id)">新增报销批次</el-button>
+              <el-button v-if="hasPermission('assess:reimbursement:edit') && scope.row.businessCode!=='' && scope.row.parentId === '0' && scope.row.randomType === '1' " type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">编辑报销批次</el-button>
+              <el-button v-if="hasPermission('assess:reimbursement:edit') && (scope.row.businessCode==='' && scope.row.parentId === '0' && scope.row.businessFlag === '0')" type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">新增报销批次</el-button>
               <el-button v-if="hasPermission('assess:reimbursement:edit') && scope.row.businessCode !== '' && !scope.row.reimbursementRatio && scope.row.parentId === '0'" type="text" icon="el-icon-edit" size="small" @click="editBusinessRatio(scope.row.id)">报销比例</el-button>
               <el-button v-if="hasPermission('assess:reimbursementBusiness:add') && scope.row.businessCode !== '' && scope.row.reimbursementRatio && scope.row.parentId === '0' && scope.row.reimbursementStatus === '0'" type="text" icon="el-icon-plus" size="small" @click="addBusinessInfo(scope.row.id, scope.row.businessCode)">业务报销</el-button>
               <el-button v-if="hasPermission('assess:reimbursementBusiness:view') && scope.row.businessCode !== '' && scope.row.reimbursementRatio && scope.row.parentId === '0'" type="text" icon="el-icon-view" size="small" @click="viewBusinessInfo(scope.row.id)">业务报销详情</el-button>

+ 3 - 3
src/views/modules/reimbursementSys/assess/reimbursementRatioForm.vue

@@ -9,8 +9,8 @@
       <el-row :gutter="15">
 
         <el-col :span="12">
-          <el-form-item label="业务编码" prop="businessCode" :rules=" [{required: true,max: 50, message: '业务编号不能为空', trigger: 'blur'}]">
-            <el-input v-model="inputForm.businessCode" placeholder="业务编码" :disabled="true"></el-input>
+          <el-form-item label="报销批次" prop="businessCode" :rules=" [{required: true,max: 50, message: '报销批次不能为空', trigger: 'blur'}]">
+            <el-input v-model="inputForm.businessCode" placeholder="报销批次" :disabled="true"></el-input>
           </el-form-item>
         </el-col>
         <el-col :span="12">
@@ -87,7 +87,7 @@
         if (method === 'editBusinessRatio') {
           this.title = '修改报销比例'
         } else if (method === 'view') {
-          this.title = '查看业务编码'
+          this.title = '查看报销批次'
         }
         this.visible = true
         this.$nextTick(() => {

+ 6 - 6
src/views/modules/reimbursementSys/project/reimbursementForm.vue

@@ -8,7 +8,7 @@
              label-width="120px" v-loading="loading" :class="method==='view'?'readonly':''" :disabled="method==='view'" @submit.native.prevent>
       <el-row :gutter="15">
         <el-col :span="12">
-          <el-form-item label="随机业务编码" prop="randomType">
+          <el-form-item label="随机报销批次" prop="randomType">
             <el-radio-group v-model="inputForm.randomType" @change="changeRadio(inputForm.randomType)">
               <el-radio label="1">是</el-radio>
               <el-radio label="0">否</el-radio>
@@ -17,8 +17,8 @@
         </el-col>
 
         <el-col :span="12" v-if="this.isShow">
-          <el-form-item label="业务编码" prop="businessCode" :rules=" [{required: true,max: 50, message: '业务编号不能为空', trigger: 'blur'}]">
-            <el-input v-model="inputForm.businessCode" placeholder="业务编码"></el-input>
+          <el-form-item label="报销批次" prop="businessCode" :rules=" [{required: true,max: 50, message: '报销批次不能为空', trigger: 'blur'}]">
+            <el-input v-model="inputForm.businessCode" placeholder="报销批次"></el-input>
           </el-form-item>
         </el-col>
       </el-row>
@@ -48,7 +48,7 @@
           parent: {
             id: ''
           },
-          businessCode: '' // 业务编码
+          businessCode: '' // 报销批次
         }
       }
     },
@@ -60,9 +60,9 @@
       init (method, obj) {
         this.method = method
         if (method === 'editBusiness') {
-          this.title = '修改业务编码'
+          this.title = '修改报销批次'
         } else if (method === 'view') {
-          this.title = '查看业务编码'
+          this.title = '查看报销批次'
         }
         this.visible = true
         this.$nextTick(() => {

+ 3 - 3
src/views/modules/reimbursementSys/project/reimbursementList.vue

@@ -160,9 +160,9 @@
 
           <vxe-column title="操作" width="300px" fixed="right" align="center">
             <template slot-scope="scope">
-              <el-button v-if="hasPermission('project:reimbursement:edit')  && scope.row.businessFlag === '1'" type="text" icon="el-icon-edit" size="small" @click="editInvoiceBusiness(scope.row.id)">新增业务编码</el-button>
-              <el-button v-if="hasPermission('project:reimbursement:edit') && scope.row.businessCode!=='' && scope.row.parentId === '0' && scope.row.randomType === '1' " type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">编辑业务编码</el-button>
-              <el-button v-if="hasPermission('project:reimbursement:edit') && (scope.row.businessCode==='' && scope.row.parentId === '0' && scope.row.businessFlag === '0')" type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">新增业务编码</el-button>
+              <el-button v-if="hasPermission('project:reimbursement:edit')  && scope.row.businessFlag === '1'" type="text" icon="el-icon-edit" size="small" @click="editInvoiceBusiness(scope.row.id)">新增报销批次</el-button>
+              <el-button v-if="hasPermission('project:reimbursement:edit') && scope.row.businessCode!=='' && scope.row.parentId === '0' && scope.row.randomType === '1' " type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">编辑报销批次</el-button>
+              <el-button v-if="hasPermission('project:reimbursement:edit') && (scope.row.businessCode==='' && scope.row.parentId === '0' && scope.row.businessFlag === '0')" type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">新增报销批次</el-button>
               <el-button v-if="hasPermission('project:reimbursement:edit') && scope.row.businessCode !== '' && !scope.row.reimbursementRatio && scope.row.parentId === '0'" type="text" icon="el-icon-edit" size="small" @click="editBusinessRatio(scope.row.id)">报销比例</el-button>
               <el-button v-if="hasPermission('project:reimbursementBusiness:add') && scope.row.businessCode !== '' && scope.row.reimbursementRatio && scope.row.parentId === '0' && scope.row.reimbursementStatus === '0'" type="text" icon="el-icon-plus" size="small" @click="addBusinessInfo(scope.row.id, scope.row.businessCode)">业务报销</el-button>
               <el-button v-if="hasPermission('project:reimbursementBusiness:view') && scope.row.businessCode !== '' && scope.row.reimbursementRatio && scope.row.parentId === '0'" type="text" icon="el-icon-view" size="small" @click="viewBusinessInfo(scope.row.id)">业务报销详情</el-button>

+ 3 - 3
src/views/modules/reimbursementSys/project/reimbursementRatioForm.vue

@@ -9,8 +9,8 @@
       <el-row :gutter="15">
 
         <el-col :span="12">
-          <el-form-item label="业务编码" prop="businessCode" :rules=" [{required: true,max: 50, message: '业务编号不能为空', trigger: 'blur'}]">
-            <el-input v-model="inputForm.businessCode" placeholder="业务编码" :disabled="true"></el-input>
+          <el-form-item label="报销批次" prop="businessCode" :rules=" [{required: true,max: 50, message: '报销批次不能为空', trigger: 'blur'}]">
+            <el-input v-model="inputForm.businessCode" placeholder="报销批次" :disabled="true"></el-input>
           </el-form-item>
         </el-col>
         <el-col :span="12">
@@ -87,7 +87,7 @@
         if (method === 'editBusinessRatio') {
           this.title = '修改报销比例'
         } else if (method === 'view') {
-          this.title = '查看业务编码'
+          this.title = '查看报销批次'
         }
         this.visible = true
         this.$nextTick(() => {

+ 6 - 6
src/views/modules/reimbursementSys/reimbursementForm.vue

@@ -8,7 +8,7 @@
              label-width="120px" v-loading="loading" :class="method==='view'?'readonly':''" :disabled="method==='view'" @submit.native.prevent>
       <el-row :gutter="15">
         <el-col :span="12">
-          <el-form-item label="随机业务编码" prop="randomType">
+          <el-form-item label="随机报销批次" prop="randomType">
             <el-radio-group v-model="inputForm.randomType" @change="changeRadio(inputForm.randomType)">
               <el-radio label="1">是</el-radio>
               <el-radio label="0">否</el-radio>
@@ -17,8 +17,8 @@
         </el-col>
 
         <el-col :span="12"  v-if="this.isShow">
-          <el-form-item label="业务编码" prop="businessCode" :rules=" [{required: true ,max: 50, message: '业务编号不能为空', trigger: 'blur'}]">
-            <el-input v-model="inputForm.businessCode" placeholder="业务编码"></el-input>
+          <el-form-item label="报销批次" prop="businessCode" :rules=" [{required: true ,max: 50, message: '报销批次不能为空', trigger: 'blur'}]">
+            <el-input v-model="inputForm.businessCode" placeholder="报销批次"></el-input>
           </el-form-item>
         </el-col>
       </el-row>
@@ -48,7 +48,7 @@
           parent: {
             id: ''
           },
-          businessCode: '' // 业务编码
+          businessCode: '' // 报销批次
         }
       }
     },
@@ -60,9 +60,9 @@
       init (method, obj) {
         this.method = method
         if (method === 'editBusiness') {
-          this.title = '修改业务编码'
+          this.title = '修改报销批次'
         } else if (method === 'view') {
-          this.title = '查看业务编码'
+          this.title = '查看报销批次'
         }
         this.visible = true
         this.$nextTick(() => {

+ 3 - 3
src/views/modules/reimbursementSys/reimbursementList.vue

@@ -158,9 +158,9 @@
 
           <vxe-column title="操作" width="300px" fixed="right" align="center">
             <template slot-scope="scope">
-              <el-button v-if="hasPermission('reimbursement:edit')  && scope.row.businessFlag === '1'" type="text" icon="el-icon-edit" size="small" @click="editInvoiceBusiness(scope.row.id)">新增业务编码</el-button>
-              <el-button v-if="hasPermission('reimbursement:edit') && scope.row.businessCode!=='' && scope.row.parentId === '0' && scope.row.randomType === '1' " type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">编辑业务编码</el-button>
-              <el-button v-if="hasPermission('reimbursement:edit') && (scope.row.businessCode==='' && scope.row.parentId === '0' && scope.row.businessFlag === '0')" type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">新增业务编码</el-button>
+              <el-button v-if="hasPermission('reimbursement:edit')  && scope.row.businessFlag === '1'" type="text" icon="el-icon-edit" size="small" @click="editInvoiceBusiness(scope.row.id)">新增报销批次</el-button>
+              <el-button v-if="hasPermission('reimbursement:edit') && scope.row.businessCode!=='' && scope.row.parentId === '0' && scope.row.randomType === '1' " type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">编辑报销批次</el-button>
+              <el-button v-if="hasPermission('reimbursement:edit') && (scope.row.businessCode==='' && scope.row.parentId === '0' && scope.row.businessFlag === '0')" type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">新增报销批次</el-button>
               <el-button v-if="hasPermission('reimbursement:edit') && scope.row.businessCode !== '' && !scope.row.reimbursementRatio && scope.row.parentId === '0'" type="text" icon="el-icon-edit" size="small" @click="editBusinessRatio(scope.row.id)">报销比例</el-button>
               <el-button v-if="hasPermission('reimbursementBusiness:add') && scope.row.businessCode !== '' && scope.row.reimbursementRatio && scope.row.parentId === '0' && scope.row.reimbursementStatus === '0'" type="text" icon="el-icon-plus" size="small" @click="addBusinessInfo(scope.row.id, scope.row.businessCode)">业务报销</el-button>
               <el-button v-if="hasPermission('reimbursementBusiness:view') && scope.row.businessCode !== '' && scope.row.reimbursementRatio && scope.row.parentId === '0'" type="text" icon="el-icon-view" size="small" @click="viewBusinessInfo(scope.row.id)">业务报销详情</el-button>

+ 3 - 3
src/views/modules/reimbursementSys/reimbursementRatioForm.vue

@@ -9,8 +9,8 @@
       <el-row :gutter="15">
 
         <el-col :span="12">
-          <el-form-item label="业务编码" prop="businessCode" :rules=" [{required: true,max: 50, message: '业务编号不能为空', trigger: 'blur'}]">
-            <el-input v-model="inputForm.businessCode" placeholder="业务编码" :disabled="true"></el-input>
+          <el-form-item label="报销批次" prop="businessCode" :rules=" [{required: true,max: 50, message: '报销批次不能为空', trigger: 'blur'}]">
+            <el-input v-model="inputForm.businessCode" placeholder="报销批次" :disabled="true"></el-input>
           </el-form-item>
         </el-col>
         <el-col :span="12">
@@ -87,7 +87,7 @@
         if (method === 'editBusinessRatio') {
           this.title = '修改报销比例'
         } else if (method === 'view') {
-          this.title = '查看业务编码'
+          this.title = '查看报销批次'
         }
         this.visible = true
         this.$nextTick(() => {

+ 6 - 6
src/views/modules/reimbursementSys/wuHanReimbursementForm.vue

@@ -8,7 +8,7 @@
              label-width="120px" v-loading="loading" :class="method==='view'?'readonly':''" :disabled="method==='view'" @submit.native.prevent>
       <el-row :gutter="15">
         <el-col :span="12">
-          <el-form-item label="随机业务编码" prop="randomType">
+          <el-form-item label="随机报销批次" prop="randomType">
             <el-radio-group v-model="inputForm.randomType" @change="changeRadio(inputForm.randomType)">
               <el-radio label="1">是</el-radio>
               <el-radio label="0">否</el-radio>
@@ -17,8 +17,8 @@
         </el-col>
 
         <el-col :span="12"  v-if="this.isShow">
-          <el-form-item label="业务编码" prop="businessCode" :rules=" [{required: true ,max: 50, message: '业务编号不能为空', trigger: 'blur'}]">
-            <el-input v-model="inputForm.businessCode" placeholder="业务编码"></el-input>
+          <el-form-item label="报销批次" prop="businessCode" :rules=" [{required: true ,max: 50, message: '报销批次不能为空', trigger: 'blur'}]">
+            <el-input v-model="inputForm.businessCode" placeholder="报销批次"></el-input>
           </el-form-item>
         </el-col>
       </el-row>
@@ -48,7 +48,7 @@
           parent: {
             id: ''
           },
-          businessCode: '' // 业务编码
+          businessCode: '' // 报销批次
         }
       }
     },
@@ -60,9 +60,9 @@
       init (method, obj) {
         this.method = method
         if (method === 'editBusiness') {
-          this.title = '修改业务编码'
+          this.title = '修改报销批次'
         } else if (method === 'view') {
-          this.title = '查看业务编码'
+          this.title = '查看报销批次'
         }
         this.visible = true
         this.$nextTick(() => {

+ 3 - 3
src/views/modules/reimbursementSys/wuHanReimbursementList.vue

@@ -157,9 +157,9 @@
 
           <vxe-column title="操作" width="300px" fixed="right" align="center">
             <template slot-scope="scope">
-              <el-button v-if="hasPermission('wuHanReimbursement:edit')  && scope.row.businessFlag === '1'" type="text" icon="el-icon-edit" size="small" @click="editInvoiceBusiness(scope.row.id)">新增业务编码</el-button>
-              <el-button v-if="hasPermission('wuHanReimbursement:edit') && scope.row.businessCode!=='' && scope.row.parentId === '0' && scope.row.randomType === '1' " type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">编辑业务编码</el-button>
-              <el-button v-if="hasPermission('wuHanReimbursement:edit') && (scope.row.businessCode==='' && scope.row.parentId === '0' && scope.row.businessFlag === '0')" type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">新增业务编码</el-button>
+              <el-button v-if="hasPermission('wuHanReimbursement:edit')  && scope.row.businessFlag === '1'" type="text" icon="el-icon-edit" size="small" @click="editInvoiceBusiness(scope.row.id)">新增报销批次</el-button>
+              <el-button v-if="hasPermission('wuHanReimbursement:edit') && scope.row.businessCode!=='' && scope.row.parentId === '0' && scope.row.randomType === '1' " type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">编辑报销批次</el-button>
+              <el-button v-if="hasPermission('wuHanReimbursement:edit') && (scope.row.businessCode==='' && scope.row.parentId === '0' && scope.row.businessFlag === '0')" type="text" icon="el-icon-edit" size="small" @click="editBusiness(scope.row.id)">新增报销批次</el-button>
               <el-button v-if="hasPermission('wuHanReimbursement:edit') && scope.row.businessCode !== '' && !scope.row.reimbursementRatio && scope.row.parentId === '0'" type="text" icon="el-icon-edit" size="small" @click="editBusinessRatio(scope.row.id)">报销比例</el-button>
               <el-button v-if="hasPermission('wuHanReimbursementBusiness:add') && scope.row.businessCode !== '' && scope.row.reimbursementRatio && scope.row.parentId === '0' && scope.row.reimbursementStatus === '0'" type="text" icon="el-icon-plus" size="small" @click="addBusinessInfo(scope.row.id, scope.row.businessCode)">业务报销</el-button>
               <el-button v-if="hasPermission('wuHanReimbursementBusiness:view') && scope.row.businessCode !== '' && scope.row.reimbursementRatio && scope.row.parentId === '0'" type="text" icon="el-icon-view" size="small" @click="viewBusinessInfo(scope.row.id)">业务报销详情</el-button>

+ 3 - 3
src/views/modules/reimbursementSys/wuHanReimbursementRatioForm.vue

@@ -9,8 +9,8 @@
       <el-row :gutter="15">
 
         <el-col :span="12">
-          <el-form-item label="业务编码" prop="businessCode" :rules=" [{required: true,max: 50, message: '业务编号不能为空', trigger: 'blur'}]">
-            <el-input v-model="inputForm.businessCode" placeholder="业务编码" :disabled="true"></el-input>
+          <el-form-item label="报销批次" prop="businessCode" :rules=" [{required: true,max: 50, message: '报销批次不能为空', trigger: 'blur'}]">
+            <el-input v-model="inputForm.businessCode" placeholder="报销批次" :disabled="true"></el-input>
           </el-form-item>
         </el-col>
         <el-col :span="12">
@@ -87,7 +87,7 @@
         if (method === 'editBusinessRatio') {
           this.title = '修改报销比例'
         } else if (method === 'view') {
-          this.title = '查看业务编码'
+          this.title = '查看报销批次'
         }
         this.visible = true
         this.$nextTick(() => {