瀏覽代碼

权限设置

sangwenwei 1 年之前
父節點
當前提交
ff12283991

+ 2 - 2
src/views/jy/daily/MeetingRoomList.vue

@@ -109,8 +109,8 @@
 								<el-button text type="primary" size="small" v-if="hasPermission('admin:del') && isJyAdmin" @click="del(scope.row.id)">删除</el-button>
 								<el-button text type="primary" size="small" v-if="hasPermission('admin:del') && isJyAdmin" @click="del(scope.row.id)">删除</el-button>
 							</div>
 							</div>
 							<div v-else>
 							<div v-else>
-								<el-button v-if="hasPermission('jy_meeting:info:edit') && (scope.row.status === '1'|| scope.row.status === '3')" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
-								<el-button text type="primary" size="small" v-if="hasPermission('jy_meeting:info:del') &&(scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3')" @click="del(scope.row.id)">删除</el-button>
+								<el-button v-if="hasPermission('jy_meeting:info:edit') && (scope.row.status === '1'|| scope.row.status === '3') &&scope.row.createById === $store.state.user.id" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
+								<el-button text type="primary" size="small" v-if="hasPermission('jy_meeting:info:del') &&(scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3') &&scope.row.createById === $store.state.user.id" @click="del(scope.row.id)">删除</el-button>
 								<!--              当前申请人撤回-->
 								<!--              当前申请人撤回-->
 								<el-button v-if="hasPermission('jy_meeting:info:edit') &&scope.row.createById === $store.state.user.id && scope.row.status==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
 								<el-button v-if="hasPermission('jy_meeting:info:edit') &&scope.row.createById === $store.state.user.id && scope.row.status==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
 
 

+ 2 - 2
src/views/jy/drive/DriveList.vue

@@ -105,8 +105,8 @@
 								<el-button text type="primary" size="small" v-if="hasPermission('admin:del') && isJyAdmin" @click="del(scope.row.id)">删除</el-button>
 								<el-button text type="primary" size="small" v-if="hasPermission('admin:del') && isJyAdmin" @click="del(scope.row.id)">删除</el-button>
 							</div>
 							</div>
 							<div v-else>
 							<div v-else>
-								<el-button v-if="hasPermission('drive:info:edit')&&(scope.row.status === '0'||scope.row.status === '1'|| scope.row.status === '3')" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
-								<el-button text type="primary" size="small" v-if="hasPermission('drive:info:del')&&(scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3')" @click="del(scope.row.id)">删除</el-button>
+								<el-button v-if="hasPermission('drive:info:edit') && scope.row.createById === $store.state.user.id &&(scope.row.status === '0'||scope.row.status === '1'|| scope.row.status === '3')" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
+								<el-button text type="primary" size="small" v-if="hasPermission('drive:info:del') && scope.row.createById === $store.state.user.id &&(scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3')" @click="del(scope.row.id)">删除</el-button>
 								<!--              当前申请人撤回-->
 								<!--              当前申请人撤回-->
 								<el-button v-if="hasPermission('drive:info:edit')&&(scope.row.createById === $store.state.user.id && scope.row.status==='2')" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
 								<el-button v-if="hasPermission('drive:info:edit')&&(scope.row.createById === $store.state.user.id && scope.row.status==='2')" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
 
 

+ 2 - 2
src/views/jy/driveMaintain/DriveMaintain.vue

@@ -96,8 +96,8 @@
 								<el-button text type="primary" size="small" v-if="hasPermission('admin:del') && isJyAdmin" @click="del(scope.row.id)">删除</el-button>
 								<el-button text type="primary" size="small" v-if="hasPermission('admin:del') && isJyAdmin" @click="del(scope.row.id)">删除</el-button>
 							</div>
 							</div>
 							<div v-else>
 							<div v-else>
-								<el-button v-if="hasPermission('drive:info:add')&&(scope.row.status === '0'||scope.row.status === '1'|| scope.row.status === '3')" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
-								<el-button text type="primary" size="small" v-if="hasPermission('drive:info:del')&&(scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3')" @click="del(scope.row.id)">删除</el-button>
+								<el-button v-if="hasPermission('drive:info:add')&&(scope.row.status === '0'||scope.row.status === '1'|| scope.row.status === '3') &&scope.row.createById === $store.state.user.id" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
+								<el-button text type="primary" size="small" v-if="hasPermission('drive:info:del')&&(scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3') &&scope.row.createById === $store.state.user.id" @click="del(scope.row.id)">删除</el-button>
 								<!--              当前申请人撤回-->
 								<!--              当前申请人撤回-->
 								<el-button v-if="hasPermission('drive:info:add')&&scope.row.createById === $store.state.user.id && scope.row.status==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
 								<el-button v-if="hasPermission('drive:info:add')&&scope.row.createById === $store.state.user.id && scope.row.status==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
 
 

+ 2 - 2
src/views/jy/evection/EvectionList.vue

@@ -130,8 +130,8 @@
 								<el-button text type="primary"  v-if="hasPermission('admin:del') && isJyAdmin" @click="del(scope.row.id)">删除</el-button>
 								<el-button text type="primary"  v-if="hasPermission('admin:del') && isJyAdmin" @click="del(scope.row.id)">删除</el-button>
 							</div>
 							</div>
 							<div v-else>
 							<div v-else>
-								<el-button v-if="hasPermission('evection:edit')&&(scope.row.status === '0'||scope.row.status === '1'|| scope.row.status === '3')"  text type="primary"  @click="edit(scope.row)">修改</el-button>
-								<el-button text type="primary"  v-if="hasPermission('evection:del')&&(scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3')" @click="del(scope.row.id)">删除</el-button>
+								<el-button v-if="hasPermission('evection:edit')&&(scope.row.status === '0'||scope.row.status === '1'|| scope.row.status === '3') &&scope.row.createById === $store.state.user.id"  text type="primary"  @click="edit(scope.row)">修改</el-button>
+								<el-button text type="primary"  v-if="hasPermission('evection:del')&&(scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3') &&scope.row.createById === $store.state.user.id" @click="del(scope.row.id)">删除</el-button>
 								<!--              当前申请人撤回-->
 								<!--              当前申请人撤回-->
 								<el-button v-if="hasPermission('evection:edit')&&scope.row.createById === $store.state.user.id && scope.row.status==='2'" text type="primary"  @click="reback(scope.row)">撤回</el-button>
 								<el-button v-if="hasPermission('evection:edit')&&scope.row.createById === $store.state.user.id && scope.row.status==='2'" text type="primary"  @click="reback(scope.row)">撤回</el-button>
 
 

+ 4 - 4
src/views/jy/finance/InvoiceList.vue

@@ -264,10 +264,10 @@
               <div v-else>
               <div v-else>
               <el-button v-if="hasPermission('cw_finance:invoice:edit')&&scope.row.createBy.id === $store.state.user.id&&(scope.row.status === '1'||scope.row.status === '3')" text type="primary" @click="invoicePush(scope.row)">修改</el-button>
               <el-button v-if="hasPermission('cw_finance:invoice:edit')&&scope.row.createBy.id === $store.state.user.id&&(scope.row.status === '1'||scope.row.status === '3')" text type="primary" @click="invoicePush(scope.row)">修改</el-button>
               <el-button v-if="hasPermission('cw_finance:invoice:edit')&&scope.row.createBy.id === $store.state.user.id&&scope.row.status === '2'" text type="primary"  @click="invoiceReback(scope.row)">撤回</el-button>
               <el-button v-if="hasPermission('cw_finance:invoice:edit')&&scope.row.createBy.id === $store.state.user.id&&scope.row.status === '2'" text type="primary"  @click="invoiceReback(scope.row)">撤回</el-button>
-              <el-button v-if="hasPermission('cw_finance:invoice:edit:detail')&&scope.row.status === '5'&&scope.row.receivablesStatus !== '1'" text type="primary"  @click="editDetail(scope.row.id)">修改发票明细</el-button>
-              <el-button v-if="hasPermission('cw_finance:invoice:edit:receivables')&&scope.row.status === '5'&&scope.row.receivablesStatus !== '1'" text type="primary"  @click="view(true, scope.row)">收款</el-button>
-              <el-button v-if="hasPermission('cw_finance:invoice:edit:is_receivables')&&scope.row.status === '5'&&scope.row.receivablesStatus !== '1'" text type="primary"  @click="isReceivables(scope.row)">确认收款</el-button>
-              <el-button v-if="hasPermission('cw_finance:invoice:edit:is_receivables')&&scope.row.status === '5'&&scope.row.receivablesStatus === '1'" text type="primary" @click="recallReceivables(scope.row)">撤回收款</el-button>
+              <el-button v-if="hasPermission('cw_finance:invoice:edit:detail')&&scope.row.status === '5'&&scope.row.receivablesStatus !== '1' &&scope.row.createById === $store.state.user.id" text type="primary"  @click="editDetail(scope.row.id)">修改发票明细</el-button>
+              <el-button v-if="hasPermission('cw_finance:invoice:edit:receivables')&&scope.row.status === '5'&&scope.row.receivablesStatus !== '1' &&scope.row.createById === $store.state.user.id" text type="primary"  @click="view(true, scope.row)">收款</el-button>
+              <el-button v-if="hasPermission('cw_finance:invoice:edit:is_receivables')&&scope.row.status === '5'&&scope.row.receivablesStatus !== '1' &&scope.row.createById === $store.state.user.id" text type="primary"  @click="isReceivables(scope.row)">确认收款</el-button>
+              <el-button v-if="hasPermission('cw_finance:invoice:edit:is_receivables')&&scope.row.status === '5'&&scope.row.receivablesStatus === '1' &&scope.row.createById === $store.state.user.id" text type="primary" @click="recallReceivables(scope.row)">撤回收款</el-button>
               <el-button v-if="hasPermission('cw_finance:invoice:edit')&&scope.row.createBy.id === $store.state.user.id&&(scope.row.status === '5'||scope.row.status === '7')" text type="primary"  @click="invoiceInvalidPush(scope.row)">作废</el-button>
               <el-button v-if="hasPermission('cw_finance:invoice:edit')&&scope.row.createBy.id === $store.state.user.id&&(scope.row.status === '5'||scope.row.status === '7')" text type="primary"  @click="invoiceInvalidPush(scope.row)">作废</el-button>
               <el-button v-if="hasPermission('cw_finance:invoice:edit')&&scope.row.createBy.id === $store.state.user.id&&scope.row.status === '6'" text type="primary" @click="invoiceInvalidReBack(scope.row)">作废撤回</el-button>
               <el-button v-if="hasPermission('cw_finance:invoice:edit')&&scope.row.createBy.id === $store.state.user.id&&scope.row.status === '6'" text type="primary" @click="invoiceInvalidReBack(scope.row)">作废撤回</el-button>
               <el-button v-if="hasPermission('cw_finance:invoice:edit')&&scope.row.createBy.id === $store.state.user.id&&(scope.row.status === '1'||scope.row.status === '3')" text type="primary"  @click="del(scope.row.id)">删除</el-button>
               <el-button v-if="hasPermission('cw_finance:invoice:edit')&&scope.row.createBy.id === $store.state.user.id&&(scope.row.status === '1'||scope.row.status === '3')" text type="primary"  @click="del(scope.row.id)">删除</el-button>

+ 2 - 2
src/views/jy/goOut/GoOutList.vue

@@ -129,8 +129,8 @@
 								<el-button text type="primary" size="small" v-if="hasPermission('admin:del') && isJyAdmin" @click="del(scope.row.id)">删除</el-button>
 								<el-button text type="primary" size="small" v-if="hasPermission('admin:del') && isJyAdmin" @click="del(scope.row.id)">删除</el-button>
 							</div>
 							</div>
 							<div v-else>
 							<div v-else>
-								<el-button v-if="hasPermission('goOut:edit')&&(scope.row.status === '0'||scope.row.status === '1'|| scope.row.status === '3')" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
-								<el-button text type="primary" size="small" v-if="hasPermission('goOut:del')&&(scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3')" @click="del(scope.row.id)">删除</el-button>
+								<el-button v-if="hasPermission('goOut:edit')&&(scope.row.status === '0'||scope.row.status === '1'|| scope.row.status === '3') &&scope.row.createById === $store.state.user.id" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
+								<el-button text type="primary" size="small" v-if="hasPermission('goOut:del')&&(scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3') &&scope.row.createById === $store.state.user.id" @click="del(scope.row.id)">删除</el-button>
 								<!--              当前申请人撤回-->
 								<!--              当前申请人撤回-->
 								<el-button v-if="hasPermission('goOut:edit')&&scope.row.createById === $store.state.user.id && scope.row.status==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
 								<el-button v-if="hasPermission('goOut:edit')&&scope.row.createById === $store.state.user.id && scope.row.status==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
 
 

+ 2 - 2
src/views/jy/holiday/HolidayList.vue

@@ -119,8 +119,8 @@
 								<el-button text type="primary" size="small" v-if="hasPermission('admin:del') && isJyAdmin" @click="del(scope.row.id)">删除</el-button>
 								<el-button text type="primary" size="small" v-if="hasPermission('admin:del') && isJyAdmin" @click="del(scope.row.id)">删除</el-button>
 							</div>
 							</div>
 							<div v-else>
 							<div v-else>
-								<el-button v-if="hasPermission('holiday:edit')&&(scope.row.status === '0'||scope.row.status === '1'|| scope.row.status === '3')" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
-								<el-button text type="primary" size="small" v-if="hasPermission('holiday:del')&&(scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3')" @click="del(scope.row.id)">删除</el-button>
+								<el-button v-if="hasPermission('holiday:edit')&&(scope.row.status === '0'||scope.row.status === '1'|| scope.row.status === '3') &&scope.row.createById === $store.state.user.id" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
+								<el-button text type="primary" size="small" v-if="hasPermission('holiday:del')&&(scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3') &&scope.row.createById === $store.state.user.id" @click="del(scope.row.id)">删除</el-button>
 								<!--              当前申请人撤回-->
 								<!--              当前申请人撤回-->
 								<el-button v-if="hasPermission('holiday:edit')&&scope.row.createById === $store.state.user.id && scope.row.status==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
 								<el-button v-if="hasPermission('holiday:edit')&&scope.row.createById === $store.state.user.id && scope.row.status==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
 
 

+ 2 - 2
src/views/jy/humanResources/DimissionList.vue

@@ -108,8 +108,8 @@
 							</div>
 							</div>
 							<div v-else>
 							<div v-else>
 <!--								<el-button v-if="hasPermission('dimission:edit') "  size="small" text type="primary"  @click="adminEdit(scope.row)">修改</el-button>-->
 <!--								<el-button v-if="hasPermission('dimission:edit') "  size="small" text type="primary"  @click="adminEdit(scope.row)">修改</el-button>-->
-								<el-button v-if="hasPermission('dimission:edit')&&(scope.row.status === '0'||scope.row.status === '1'|| scope.row.status === '3')" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
-								<el-button text type="primary" size="small" v-if="hasPermission('dimission:del') && scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3'" @click="del(scope.row.id)">删除</el-button>
+								<el-button v-if="hasPermission('dimission:edit')&&(scope.row.status === '0'||scope.row.status === '1'|| scope.row.status === '3')&&scope.row.createById === $store.state.user.id" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
+								<el-button text type="primary" size="small" v-if="hasPermission('dimission:del') && (scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3') &&scope.row.createById === $store.state.user.id" @click="del(scope.row.id)">删除</el-button>
 								<!--              当前申请人撤回-->
 								<!--              当前申请人撤回-->
 								<el-button v-if="hasPermission('dimission:edit') && scope.row.createById === $store.state.user.id && scope.row.status==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
 								<el-button v-if="hasPermission('dimission:edit') && scope.row.createById === $store.state.user.id && scope.row.status==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
 
 

+ 2 - 2
src/views/jy/humanResources/EntryList.vue

@@ -162,8 +162,8 @@
 								<el-button v-if="scope.row.loginFlag === '0'"   size="small" text type="primary"  @click="updateLoginFlag1(scope.row)">激活</el-button>
 								<el-button v-if="scope.row.loginFlag === '0'"   size="small" text type="primary"  @click="updateLoginFlag1(scope.row)">激活</el-button>
 							</div>
 							</div>
 							<div v-else>
 							<div v-else>
-								<el-button v-if="hasPermission('entry:edit')&&(scope.row.type === '0'||scope.row.type === '1'|| scope.row.type === '3')" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
-								<el-button text type="primary" size="small" v-if="hasPermission('entry:del') && scope.row.type==='0' || scope.row.type==='1'|| scope.row.type==='3'" @click="del(scope.row.id)">删除</el-button>
+								<el-button v-if="hasPermission('entry:edit')&&(scope.row.type === '0'||scope.row.type === '1'|| scope.row.type === '3')&&scope.row.createById === $store.state.user.id" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
+								<el-button text type="primary" size="small" v-if="hasPermission('entry:del') && scope.row.type==='0' || scope.row.type==='1'|| scope.row.type==='3'&&scope.row.createById === $store.state.user.id" @click="del(scope.row.id)">删除</el-button>
 								<!--              当前申请人撤回-->
 								<!--              当前申请人撤回-->
 								<el-button v-if="hasPermission('entry:edit') && scope.row.createById === $store.state.user.id && scope.row.type==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
 								<el-button v-if="hasPermission('entry:edit') && scope.row.createById === $store.state.user.id && scope.row.type==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
 
 

+ 2 - 2
src/views/jy/inscription/InscriptionList.vue

@@ -105,8 +105,8 @@
 								<el-button text type="primary" size="small" v-if="hasPermission('admin:del') && isJyAdmin" @click="del(scope.row.id)">删除</el-button>
 								<el-button text type="primary" size="small" v-if="hasPermission('admin:del') && isJyAdmin" @click="del(scope.row.id)">删除</el-button>
 							</div>
 							</div>
 							<div v-else>
 							<div v-else>
-								<el-button v-if="hasPermission('inscription:edit')&&(scope.row.status === '0'||scope.row.status === '1'|| scope.row.status === '3')" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
-								<el-button text type="primary" size="small" v-if="hasPermission('inscription:del')&&(scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3')" @click="del(scope.row.id)">删除</el-button>
+								<el-button v-if="hasPermission('inscription:edit')&&(scope.row.status === '0'||scope.row.status === '1'|| scope.row.status === '3') &&scope.row.createById === $store.state.user.id" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
+								<el-button text type="primary" size="small" v-if="hasPermission('inscription:del')&&(scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3') &&scope.row.createById === $store.state.user.id" @click="del(scope.row.id)">删除</el-button>
 								<!--              当前申请人撤回-->
 								<!--              当前申请人撤回-->
 								<el-button v-if="hasPermission('inscription:edit')&&scope.row.createById === $store.state.user.id && scope.row.status==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
 								<el-button v-if="hasPermission('inscription:edit')&&scope.row.createById === $store.state.user.id && scope.row.status==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
 
 

+ 2 - 2
src/views/jy/monthly/MonthlyList.vue

@@ -98,8 +98,8 @@
 								<el-button text type="primary" size="small" v-if="hasPermission('admin:del') && isJyAdmin" @click="del(scope.row.id)">删除</el-button>
 								<el-button text type="primary" size="small" v-if="hasPermission('admin:del') && isJyAdmin" @click="del(scope.row.id)">删除</el-button>
 							</div>
 							</div>
 							<div v-else>
 							<div v-else>
-								<el-button  size="small" text type="primary" v-if="hasPermission('monthly:edit')"  @click="edit(scope.row)">修改</el-button>
-								<el-button text type="primary" size="small" v-if="hasPermission('monthly:del')"  @click="del(scope.row.id)">删除</el-button>
+								<el-button  size="small" text type="primary" v-if="hasPermission('monthly:edit') &&scope.row.createById === $store.state.user.id"  @click="edit(scope.row)">修改</el-button>
+								<el-button text type="primary" size="small" v-if="hasPermission('monthly:del') &&scope.row.createById === $store.state.user.id"  @click="del(scope.row.id)">删除</el-button>
 							</div>
 							</div>
 						</template>
 						</template>
 					</vxe-column>
 					</vxe-column>

+ 2 - 2
src/views/jy/payment/PaymentList.vue

@@ -120,8 +120,8 @@
 								<el-button text type="primary" size="small" v-if="hasPermission('admin:del') && isJyAdmin">删除</el-button>
 								<el-button text type="primary" size="small" v-if="hasPermission('admin:del') && isJyAdmin">删除</el-button>
 							</div>
 							</div>
 							<div v-else>
 							<div v-else>
-								<el-button v-if="hasPermission('payment:edit') &&(scope.row.status === '0'||scope.row.status === '1'|| scope.row.status === '3')" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
-								<el-button text type="primary" size="small" v-if="hasPermission('payment:del') &&scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3'" @click="del(scope.row.id)">删除</el-button>
+								<el-button v-if="hasPermission('payment:edit') &&(scope.row.status === '0'||scope.row.status === '1'|| scope.row.status === '3') &&scope.row.createById === $store.state.user.id" size="small" text type="primary"  @click="edit(scope.row)">修改</el-button>
+								<el-button text type="primary" size="small" v-if="hasPermission('payment:del') &&(scope.row.status==='0' || scope.row.status==='1'|| scope.row.status==='3')&&scope.row.createById === $store.state.user.id" @click="del(scope.row.id)">删除</el-button>
 								<!--              当前申请人撤回-->
 								<!--              当前申请人撤回-->
 								<el-button v-if="hasPermission('payment:edit') &&scope.row.createById === $store.state.user.id && scope.row.status==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
 								<el-button v-if="hasPermission('payment:edit') &&scope.row.createById === $store.state.user.id && scope.row.status==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>