|
|
@@ -83,7 +83,7 @@
|
|
|
<el-table-column label="物资类不良行为"
|
|
|
align="center"
|
|
|
prop="Wzrecord"
|
|
|
- show-overflow-tooltip="true">
|
|
|
+ :show-overflow-tooltip="true">
|
|
|
</el-table-column>
|
|
|
<el-table-column label="基建类状态"
|
|
|
align="center"
|
|
|
@@ -99,7 +99,7 @@
|
|
|
<el-table-column label="基建类不良行为"
|
|
|
align="center"
|
|
|
prop="Jjrecord"
|
|
|
- show-overflow-tooltip="true">
|
|
|
+ :show-overflow-tooltip="true">
|
|
|
</el-table-column>
|
|
|
<el-table-column label="技术服务类状态"
|
|
|
align="center"
|
|
|
@@ -115,12 +115,12 @@
|
|
|
<el-table-column label="技术服务类不良行为"
|
|
|
align="center"
|
|
|
prop="Jfrecord"
|
|
|
- show-overflow-tooltip="true">
|
|
|
+ :show-overflow-tooltip="true">
|
|
|
</el-table-column>
|
|
|
<el-table-column label="准入范围不良行为"
|
|
|
align="center"
|
|
|
prop="Certrecord"
|
|
|
- show-overflow-tooltip="true">
|
|
|
+ :show-overflow-tooltip="true">
|
|
|
</el-table-column>
|
|
|
<!-- <el-table-column label="类别名称" prop="Categoryname" align="center" width="100px"></el-table-column> -->
|
|
|
|
|
|
@@ -426,19 +426,31 @@
|
|
|
</div>
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="准入范围">
|
|
|
+ <el-form label-width="80px"
|
|
|
+ label-position="top"
|
|
|
+ class="certForm">
|
|
|
+ <el-form-item label="请先填写,不良记录原因">
|
|
|
+ <el-input type="textarea" :rows="4"
|
|
|
+ v-model="entityForm.CertRecord"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+
|
|
|
+ <el-divider></el-divider>
|
|
|
+
|
|
|
<div style="width:100%;height:50px;margin-top:-15px">
|
|
|
- <el-button type="primary"
|
|
|
+ <el-button type="plain"
|
|
|
style="float:right;margin-top:6.5px"
|
|
|
+ plain
|
|
|
size="mini"
|
|
|
@click="initCert($event)">查询</el-button>
|
|
|
<el-form :inline="true"
|
|
|
style="float:right">
|
|
|
- <el-form-item label="准入范围名称">
|
|
|
+ <el-form-item label="">
|
|
|
<el-input size="mini"
|
|
|
- style="width: 165px;"
|
|
|
+ style="width: 225px;"
|
|
|
v-model="certChooseName"
|
|
|
clearable
|
|
|
- placeholder="请输入准入范围名称"></el-input>
|
|
|
+ placeholder="请输入准入范围编码或名称"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
@@ -451,8 +463,7 @@
|
|
|
<el-table size="mini"
|
|
|
:data="goodsList"
|
|
|
border
|
|
|
- height="300px"
|
|
|
- @cell-click="changeCertSubStatus">
|
|
|
+ height="300px">
|
|
|
<el-table-column prop="Code"
|
|
|
label="编码"
|
|
|
width="120px"
|
|
|
@@ -464,14 +475,21 @@
|
|
|
show-overflow-tooltip></el-table-column>
|
|
|
<el-table-column prop="CertSubStatus"
|
|
|
label="状态"
|
|
|
+ width="160px"
|
|
|
align="center"
|
|
|
show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
- <span v-if="scope.row.CertSubStatus=='1'"
|
|
|
+ <el-button type="success" size="mini" v-if="scope.row.CertSubStatus=='1'" @click="changeCertSubStatus(scope.row)">准入</el-button>
|
|
|
+ <el-button type="warning" size="mini" v-else-if="scope.row.CertSubStatus>'1'" @click="changeCertSubStatus(scope.row)">暂停</el-button>
|
|
|
+ <el-button type="plain" size="mini" plain v-else @click="changeCertSubStatus(scope.row)">——</el-button>
|
|
|
+
|
|
|
+ <el-button type="plain" plain size="mini" icon="el-icon-star-off" circle @click="showBackReasonList(scope.row)"></el-button>
|
|
|
+
|
|
|
+ <!--<span v-if="scope.row.CertSubStatus=='1'"
|
|
|
style="color:#67C23A">准入</span>
|
|
|
<span v-else-if="scope.row.CertSubStatus>'1'"
|
|
|
style="color:#E6A23C">暂停</span>
|
|
|
- <span v-else>——</span>
|
|
|
+ <span v-else>——</span>-->
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
@@ -488,27 +506,29 @@
|
|
|
<el-table size="mini"
|
|
|
:data="basisList"
|
|
|
border
|
|
|
- height="300px"
|
|
|
- @cell-click="changeCertSubStatus">
|
|
|
+ height="300px">
|
|
|
<el-table-column prop="Code"
|
|
|
label="编码"
|
|
|
width="120px"
|
|
|
- align="center"
|
|
|
- show-overflow-tooltip></el-table-column>
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ align="center"></el-table-column>
|
|
|
<el-table-column prop="Name"
|
|
|
label="名称"
|
|
|
- align="center"
|
|
|
- show-overflow-tooltip></el-table-column>
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ align="center"></el-table-column>
|
|
|
<el-table-column prop="CertSubStatus"
|
|
|
label="状态"
|
|
|
- align="center"
|
|
|
- show-overflow-tooltip>
|
|
|
+ align="center">
|
|
|
<template slot-scope="scope">
|
|
|
- <span v-if="scope.row.CertSubStatus=='1'"
|
|
|
+ <el-button type="success" size="mini" v-if="scope.row.CertSubStatus=='1'" @click="changeCertSubStatus(scope.row)">准入</el-button>
|
|
|
+ <el-button type="warning" size="mini" v-else-if="scope.row.CertSubStatus>'1'" @click="changeCertSubStatus(scope.row)">暂停</el-button>
|
|
|
+ <el-button type="plain" size="mini" plain v-else @click="changeCertSubStatus(scope.row)">——</el-button>
|
|
|
+ <!--<span v-if="scope.row.CertSubStatus=='1'"
|
|
|
style="color:#67C23A">准入</span>
|
|
|
<span v-else-if="scope.row.CertSubStatus>'1'"
|
|
|
style="color:#E6A23C">暂停</span>
|
|
|
- <span v-else>——</span>
|
|
|
+ <span v-else>——</span>-->
|
|
|
+ <el-button type="plain" plain size="mini" icon="el-icon-star-off" circle @click="showBackReasonList(scope.row)"></el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
@@ -525,8 +545,7 @@
|
|
|
<el-table size="mini"
|
|
|
:data="tcList"
|
|
|
border
|
|
|
- height="300px"
|
|
|
- @cell-click="changeCertSubStatus">
|
|
|
+ height="300px">
|
|
|
<el-table-column prop="Code"
|
|
|
label="编码"
|
|
|
width="120px"
|
|
|
@@ -541,11 +560,16 @@
|
|
|
align="center"
|
|
|
show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
- <span v-if="scope.row.CertSubStatus=='1'"
|
|
|
+ <el-button type="success" size="mini" v-if="scope.row.CertSubStatus=='1'" @click="changeCertSubStatus(scope.row)">准入</el-button>
|
|
|
+ <el-button type="warning" size="mini" v-else-if="scope.row.CertSubStatus>'1'" @click="changeCertSubStatus(scope.row)">暂停</el-button>
|
|
|
+ <el-button type="plain" size="mini" plain v-else @click="changeCertSubStatus(scope.row)">——</el-button>
|
|
|
+
|
|
|
+ <!--<span v-if="scope.row.CertSubStatus=='1'"
|
|
|
style="color:#67C23A">准入</span>
|
|
|
<span v-else-if="scope.row.CertSubStatus>'1'"
|
|
|
style="color:#E6A23C">暂停</span>
|
|
|
- <span v-else>——</span>
|
|
|
+ <span v-else>——</span>-->
|
|
|
+ <el-button type="plain" plain size="mini" icon="el-icon-star-off" circle @click="showBackReasonList(scope.row)"></el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
@@ -558,14 +582,7 @@
|
|
|
:total="currentTCItemCount"></el-pagination>
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
- <el-form label-width="80px"
|
|
|
- label-position="top"
|
|
|
- class="certForm">
|
|
|
- <el-form-item label="不良记录">
|
|
|
- <el-input type="textarea"
|
|
|
- v-model="entityForm.CertRecord"></el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
+
|
|
|
<div style="margin-top:5px;float:right">
|
|
|
<el-button size="small"
|
|
|
@click="addshow = false">取 消</el-button>
|
|
|
@@ -577,101 +594,28 @@
|
|
|
</el-tabs>
|
|
|
</el-dialog>
|
|
|
|
|
|
- <!-- 编辑框(默认隐藏) -->
|
|
|
- <!-- <el-dialog title="企业不良行为编辑"
|
|
|
- :visible.sync="editshow"
|
|
|
- width="400px">
|
|
|
- <el-form :model="editForm"
|
|
|
- :rules="rules"
|
|
|
- ref="EditFormref"> -->
|
|
|
- <!-- 第一行 -->
|
|
|
- <!-- <el-row>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="企业名称"
|
|
|
- required
|
|
|
- prop="Companyname">
|
|
|
- <el-input v-model="editForm.Companyname"
|
|
|
- disabled></el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- <el-row v-if="editForm.Bak1==='1'">
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="准入范围">
|
|
|
- <el-input placeholder="请选择准入范围"
|
|
|
- v-model="certNames"
|
|
|
- readonly
|
|
|
- style="width:100%">
|
|
|
- <el-button type="primary"
|
|
|
- style="width:30%"
|
|
|
- @click="certDialog = true"
|
|
|
- slot="append">选择</el-button>
|
|
|
- </el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row> -->
|
|
|
- <!-- 第二行 -->
|
|
|
- <!-- <el-row>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="准入类别" required prop="Categorycode">
|
|
|
- <el-select style="width: 100%" v-model="editForm.Categorycode" disabled>
|
|
|
- <el-option label="物资类" value="01"></el-option>
|
|
|
- <el-option label="基建类" value="02"></el-option>
|
|
|
- <el-option label="技术服务类" value="03"></el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row> -->
|
|
|
-
|
|
|
- <!-- <el-row>
|
|
|
- <el-form-item label="不良行为时间"> -->
|
|
|
- <!-- <el-date-picker v-model="editForm.Bak2"
|
|
|
- type="date"
|
|
|
- format="yyyy 年 MM 月 dd 日"
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
- placeholder="选择日期"
|
|
|
- style="width: 100%"></el-date-picker> -->
|
|
|
- <!-- <el-date-picker v-model="Bak22"
|
|
|
- type="daterange"
|
|
|
- range-separator="至"
|
|
|
- start-placeholder="开始日期"
|
|
|
- end-placeholder="结束日期">
|
|
|
- </el-date-picker>
|
|
|
- </el-form-item>
|
|
|
- </el-row>
|
|
|
- <el-form-item label="状态">
|
|
|
- <el-select v-model="editForm.Bak3"
|
|
|
- placeholder="请选择"
|
|
|
- style="width:100%">
|
|
|
- <el-option v-for="item in options"
|
|
|
- :key="item.value"
|
|
|
- :label="item.label"
|
|
|
- :value="item.value">
|
|
|
- </el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item> -->
|
|
|
-
|
|
|
- <!-- 第三行 -->
|
|
|
- <!-- <el-row>
|
|
|
- <el-col :span="24">
|
|
|
- <el-form-item label="不良记录"
|
|
|
- required
|
|
|
- prop="Record">
|
|
|
- <el-input style="width: 100%"
|
|
|
- type="textarea"
|
|
|
- v-model="editForm.Record"></el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- </el-form>
|
|
|
- <span style="float: right;margin-top:-10px;">
|
|
|
- <el-button size="small"
|
|
|
- @click="editshow = false">取 消</el-button>
|
|
|
- <el-button type="primary"
|
|
|
- size="small"
|
|
|
- @click="EditSubmit()">确 定</el-button>
|
|
|
- </span>
|
|
|
- </el-dialog> -->
|
|
|
+ <el-dialog title="准入变化历史"
|
|
|
+ stripe
|
|
|
+ :visible.sync="showBackReason"
|
|
|
+ width="800px">
|
|
|
+ <el-table :data="backReasonList">
|
|
|
+ <el-table-column width="80" property="CertSubStatus" label="状态">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-if="scope.row.CertSubStatus=='1'"
|
|
|
+ style="color:#67C23A">准入</span>
|
|
|
+ <span v-else-if="scope.row.CertSubStatus>'1'"
|
|
|
+ style="color:#E6A23C">暂停</span>
|
|
|
+ <span v-else>——</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column width="150" property="CreateOn" label="操作时间">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ jstimehandle(scope.row.CreateOn+'') }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column mini-width="120" property="BackReason" label="原因"></el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </el-dialog>
|
|
|
|
|
|
<el-dialog title="企业列表"
|
|
|
:visible.sync="companyDialog"
|
|
|
@@ -729,132 +673,6 @@
|
|
|
:total="currentItemCount1"></el-pagination>
|
|
|
</el-dialog>
|
|
|
|
|
|
- <!-- <el-dialog :title="certTitle"
|
|
|
- :visible.sync="certDialog"
|
|
|
- top="5vh"
|
|
|
- style="z-index:99;">
|
|
|
- <span style="float: right;">
|
|
|
- <el-button type="primary"
|
|
|
- size="mini"
|
|
|
- style="margin-left:10px; margin-top: -4px;"
|
|
|
- @click="initCert($event)">查询</el-button>
|
|
|
- <el-button type="primary"
|
|
|
- size="mini"
|
|
|
- style="margin-left:10px; margin-top: -4px;"
|
|
|
- @click="certDialog = false">取消</el-button>
|
|
|
- </span>
|
|
|
- <el-form ref="form"
|
|
|
- :inline="true"
|
|
|
- style="float: right; margin-top: -10px">
|
|
|
- <el-form-item label="准入范围名称">
|
|
|
- <el-input size="mini"
|
|
|
- style="width: 165px;"
|
|
|
- v-model="certChooseName"
|
|
|
- placeholder="请输入准入范围名称"></el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- <el-tabs type="border-card"
|
|
|
- style="margin-top: 50px"
|
|
|
- @tab-click="handleClick"
|
|
|
- v-model="activeName">
|
|
|
- <el-tab-pane label="物资类"
|
|
|
- name="first">
|
|
|
- <el-table size="mini"
|
|
|
- :data="goodsList"
|
|
|
- border
|
|
|
- height="300px"
|
|
|
- @selection-change="handleGoodsSelectionChange">
|
|
|
- <el-table-column type="selection"
|
|
|
- width="55">
|
|
|
- </el-table-column>
|
|
|
-
|
|
|
- <el-table-column prop="Code"
|
|
|
- label="编码"
|
|
|
- width="120px"
|
|
|
- align="center"
|
|
|
- show-overflow-tooltip></el-table-column>
|
|
|
- <el-table-column prop="Name"
|
|
|
- label="名称"
|
|
|
- align="center"
|
|
|
- show-overflow-tooltip></el-table-column>
|
|
|
- </el-table>
|
|
|
- <el-pagination @size-change="handleGoodsSizeChange"
|
|
|
- @current-change="handleGoodsCurrentChange"
|
|
|
- :current-page="currentGoodsPage"
|
|
|
- :page-sizes="[10, 15, 20, 25]"
|
|
|
- :page-size="goodsSize"
|
|
|
- layout="total, sizes, prev, pager, next, jumper"
|
|
|
- :total="currentGoodsItemCount"></el-pagination>
|
|
|
- </el-tab-pane>
|
|
|
- <el-tab-pane label="基建类"
|
|
|
- name="second">
|
|
|
- <el-table size="mini"
|
|
|
- :data="basisList"
|
|
|
- border
|
|
|
- height="300px"
|
|
|
- @selection-change="handleBasisSelectionChange">
|
|
|
- <el-table-column type="selection"
|
|
|
- width="55">
|
|
|
- </el-table-column>
|
|
|
-
|
|
|
- <el-table-column prop="Code"
|
|
|
- label="编码"
|
|
|
- width="120px"
|
|
|
- align="center"
|
|
|
- show-overflow-tooltip></el-table-column>
|
|
|
- <el-table-column prop="Name"
|
|
|
- label="名称"
|
|
|
- align="center"
|
|
|
- show-overflow-tooltip></el-table-column>
|
|
|
- </el-table>
|
|
|
- <el-pagination @size-change="handleBasisSizeChange"
|
|
|
- @current-change="handleBasisCurrentChange"
|
|
|
- :current-page="currentBasisPage"
|
|
|
- :page-sizes="[10, 15, 20, 25]"
|
|
|
- :page-size="basisSize"
|
|
|
- layout="total, sizes, prev, pager, next, jumper"
|
|
|
- :total="currentBasisItemCount"></el-pagination>
|
|
|
- </el-tab-pane>
|
|
|
- <el-tab-pane label="技术服务类"
|
|
|
- name="third">
|
|
|
- <el-table size="mini"
|
|
|
- :data="tcList"
|
|
|
- border
|
|
|
- height="300px"
|
|
|
- @selection-change="handleTCSelectionChange">
|
|
|
- <el-table-column type="selection"
|
|
|
- width="55">
|
|
|
- </el-table-column>
|
|
|
-
|
|
|
- <el-table-column prop="Code"
|
|
|
- label="编码"
|
|
|
- width="120px"
|
|
|
- align="center"
|
|
|
- show-overflow-tooltip></el-table-column>
|
|
|
- <el-table-column prop="Name"
|
|
|
- label="名称"
|
|
|
- align="center"
|
|
|
- show-overflow-tooltip></el-table-column>
|
|
|
- </el-table>
|
|
|
- <el-pagination @size-change="handleTCSizeChange"
|
|
|
- @current-change="handleTCCurrentChange"
|
|
|
- :current-page="currentTCPage"
|
|
|
- :page-sizes="[10, 15, 20, 25]"
|
|
|
- :page-size="tcSize"
|
|
|
- layout="total, sizes, prev, pager, next, jumper"
|
|
|
- :total="currentTCItemCount"></el-pagination>
|
|
|
- </el-tab-pane>
|
|
|
- </el-tabs>
|
|
|
- <el-input style="width:100%;margin-top:10px"
|
|
|
- type="textarea"
|
|
|
- readonly
|
|
|
- v-model="yChooseCert"></el-input>
|
|
|
- <div style="width:100%;text-align:right;margin-top:10px">
|
|
|
- <el-button type="primary"
|
|
|
- size="mini"
|
|
|
- @click="savedata()">确 定</el-button>
|
|
|
- </div>
|
|
|
- </el-dialog> -->
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
@@ -864,6 +682,7 @@
|
|
|
|
|
|
<script>
|
|
|
import setapi from '@/api/oilsupplier/oilclassorgset'
|
|
|
+import backReasonApi from '@/api/oilsupplier/supplierpausereason'
|
|
|
export default {
|
|
|
created () {
|
|
|
// 执行初始化方法
|
|
|
@@ -872,6 +691,8 @@ export default {
|
|
|
},
|
|
|
data () {
|
|
|
return {
|
|
|
+ showBackReason: false,
|
|
|
+ backReasonList: [],
|
|
|
isChooseDisable: false,
|
|
|
addShowTitle: '不良行为添加',
|
|
|
wzFlag: false,
|
|
|
@@ -1014,29 +835,40 @@ export default {
|
|
|
|
|
|
return temp
|
|
|
},
|
|
|
- changeCertSubStatus (row, column, cell, event) {
|
|
|
- if (column.property === 'CertSubStatus') {
|
|
|
- this.$confirm('确定更改此准入范围状态吗?', '提示', {
|
|
|
- confirmButtonText: '确定',
|
|
|
- cancelButtonText: '取消',
|
|
|
- type: 'warning'
|
|
|
- }).then((res) => {
|
|
|
- this.$axios.get('suppliercertsub/updatestatus/' + row.Id + '/' + row.CertSubStatus + '', {}).then(res => {
|
|
|
- if (res.data.code === 0) {
|
|
|
- this.$message({
|
|
|
- type: 'success',
|
|
|
- message: '更改成功'
|
|
|
- })
|
|
|
- this.initCert()
|
|
|
- }
|
|
|
- }).catch(err => {
|
|
|
- console.error(err)
|
|
|
- })
|
|
|
- }).catch(() => {
|
|
|
+ changeCertSubStatus (row) {
|
|
|
+ this.$confirm('确定更改此准入范围状态吗?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then((res) => {
|
|
|
+ let certSubStatus = row.CertSubStatus
|
|
|
+ if (!row.CertSubStatus) {
|
|
|
+ certSubStatus = 0
|
|
|
+ }
|
|
|
+ let params = {
|
|
|
+ Id: 0,
|
|
|
+ SupplierId: parseInt(row.SupplierId),
|
|
|
+ SupplierCertId: parseInt(row.SupplierCertId),
|
|
|
+ certSubId: parseInt(row.Id),
|
|
|
+ certSubStatus: certSubStatus,
|
|
|
+ backReason: this.entityForm.CertRecord
|
|
|
+ }
|
|
|
+ this.$axios.post('/suppliercertsub/updatestatuswithlog/' + row.Id, params).then(res => {
|
|
|
+ if (res.data.code === 0) {
|
|
|
+ this.$message({
|
|
|
+ type: 'success',
|
|
|
+ message: '更改成功'
|
|
|
+ })
|
|
|
+ this.initCert()
|
|
|
+ }
|
|
|
+ }).catch(err => {
|
|
|
+ console.error(err)
|
|
|
})
|
|
|
- } else {
|
|
|
- }
|
|
|
+ }).catch(() => {
|
|
|
+ })
|
|
|
+
|
|
|
},
|
|
|
+
|
|
|
savedata () {
|
|
|
if (this.goodsSelection.length === 0 && this.basisSelection.length === 0 && this.tcSelection.length === 0) {
|
|
|
this.$message({
|
|
|
@@ -1520,6 +1352,20 @@ export default {
|
|
|
console.error(err)
|
|
|
})
|
|
|
},
|
|
|
+
|
|
|
+ showBackReasonList (row) {
|
|
|
+ //分页及列表条件
|
|
|
+ let params = {
|
|
|
+ CertSubId: row.Id
|
|
|
+ }
|
|
|
+ //访问接口
|
|
|
+ backReasonApi.getNoPageList(params, this.$axios).then(res => {
|
|
|
+ this.backReasonList = res.data.items
|
|
|
+ this.showBackReason = true
|
|
|
+ }).catch(err => {
|
|
|
+ console.error(err)
|
|
|
+ })
|
|
|
+ },
|
|
|
// 初始化列表方法
|
|
|
initDatas (event) {
|
|
|
if (event != null) {
|