我的待办信用修复添加显示下级待办的按钮

This commit is contained in:
zhouxy 2026-01-14 19:11:30 +08:00
parent 3c6f16c7c2
commit 3f79063bb5
1 changed files with 17 additions and 4 deletions

View File

@ -693,7 +693,7 @@
/> />
</el-select> </el-select>
</el-col> </el-col>
<el-col :span="14"> <el-col :span="10">
<label class="label-name_3u">倒计时工作日</label> <label class="label-name_3u">倒计时工作日</label>
<el-switch <el-switch
v-model="searchForm.gzrNumSwitch" v-model="searchForm.gzrNumSwitch"
@ -703,6 +703,18 @@
<el-input-number v-model="searchForm.gzrNum" size="mini" :min="-1" :max="4" /> <el-input-number v-model="searchForm.gzrNum" size="mini" :min="-1" :max="4" />
</el-col> </el-col>
</el-row> </el-row>
<el-row style="margin:10px;margin-left: 50px">
<el-col :span="10">
<label class="label-name_3u">是否显示下级单位待办</label>
<span></span>
<el-switch
v-model="searchForm.childUnitSwitch"
active-color="#13ce66"
inactive-color="#ff4949"
/>
<span></span>
</el-col>
</el-row>
<el-col :span="24" :offset="1" style="margin-bottom: 10px;margin-top: 10px;"> <el-col :span="24" :offset="1" style="margin-bottom: 10px;margin-top: 10px;">
<div class="btn-box" style="font-size: 14px"> <div class="btn-box" style="font-size: 14px">
<el-button type="primary" size="mini" @click="search">查询</el-button> <el-button type="primary" size="mini" @click="search">查询</el-button>
@ -2721,15 +2733,13 @@
</template> </template>
<script> <script>
import { taskCommonPage, taskUnionPage, taskUnionPageStatistic, checkPrint } from '@/api/task' import { taskUnionPage, taskUnionPageStatistic, checkPrint } from '@/api/task'
import { import {
saveAbnormalAccept, saveAbnormalAccept,
getRegulatory,
checkoutToincludeabn, checkoutToincludeabn,
batchReviewAndExamine, batchReviewAndExamine,
isPassDissentApply isPassDissentApply
} from '@/api/abnormal' } from '@/api/abnormal'
import { queryOlderP } from '@/api/updatePassword'
import { getUsersWithPermission } from '@/api/user' import { getUsersWithPermission } from '@/api/user'
import { batchJyycxfShAndSp, batchYzfwShAndSp, batchShAndSp, getRemInfoByBatch } from '@/api/credit' import { batchJyycxfShAndSp, batchYzfwShAndSp, batchShAndSp, getRemInfoByBatch } from '@/api/credit'
import { isMenHu } from '@/utils/utils' import { isMenHu } from '@/utils/utils'
@ -2861,6 +2871,7 @@ export default {
busstatus: '', busstatus: '',
currentNodeOrBizStatus: '', currentNodeOrBizStatus: '',
gzrNumSwitch: false, gzrNumSwitch: false,
childUnitSwitch: false,
gzrNum: 0 gzrNum: 0
}, },
loading: false, loading: false,
@ -3539,6 +3550,7 @@ export default {
break break
// //
case '15': case '15':
// eslint-disable-next-line no-case-declarations
let path = '' let path = ''
if (row.currentNodeOrBizStatus === 'accept') { if (row.currentNodeOrBizStatus === 'accept') {
path = 'accept' path = 'accept'
@ -3558,6 +3570,7 @@ export default {
break break
// //
case '16': case '16':
// eslint-disable-next-line no-case-declarations
const page = row.currentNodeOrBizStatus === 'acceptDissentEnter' ? 'applyAccept' : row.currentNodeOrBizStatus === 'handleDissentAccept' ? 'applyExamine' : 'approvalExamine' const page = row.currentNodeOrBizStatus === 'acceptDissentEnter' ? 'applyAccept' : row.currentNodeOrBizStatus === 'handleDissentAccept' ? 'applyExamine' : 'approvalExamine'
this.$router.push({ this.$router.push({
path: `/illegal/dissent/${page}`, path: `/illegal/dissent/${page}`,