|  | @@ -1,320 +1,514 @@
 | 
	
		
			
				|  |  |  <template>
 | 
	
		
			
				|  |  | -	<div class="page">
 | 
	
		
			
				|  |  | -		<el-form :inline="true" v-if="searchVisible" class="query-form m-b-10" ref="searchForm" :model="searchForm"
 | 
	
		
			
				|  |  | -			@keyup.enter="refreshList()" @submit.prevent>
 | 
	
		
			
				|  |  | -			<!-- 搜索框-->
 | 
	
		
			
				|  |  | -			<el-form-item prop="name" label="文件名称:">
 | 
	
		
			
				|  |  | -				<el-input v-model="searchForm.name" placeholder="请输入文件名称" clearable></el-input>
 | 
	
		
			
				|  |  | -			</el-form-item>
 | 
	
		
			
				|  |  | -			<el-form-item prop="yearNum" label="年份:">
 | 
	
		
			
				|  |  | -				<el-input v-model="searchForm.yearNum" placeholder="请输入年份" clearable></el-input>
 | 
	
		
			
				|  |  | -			</el-form-item>
 | 
	
		
			
				|  |  | -			<el-form-item prop="authorPerson" label="拟稿人:">
 | 
	
		
			
				|  |  | -				<UserSelect tenantId="10000" :limit="1" v-model="searchForm.authorPerson"></UserSelect>
 | 
	
		
			
				|  |  | -			</el-form-item>
 | 
	
		
			
				|  |  | -			<el-form-item prop="open" label="是否公开:">
 | 
	
		
			
				|  |  | -				<el-select clearable v-model="searchForm.open" placeholder="是否公开">
 | 
	
		
			
				|  |  | -					<el-option v-for="item in $dictUtils.getDictList('yes_no')" :key="item.value" :label="item.label"
 | 
	
		
			
				|  |  | -						:value="item.value">
 | 
	
		
			
				|  |  | -					</el-option>
 | 
	
		
			
				|  |  | -				</el-select>
 | 
	
		
			
				|  |  | -			</el-form-item>
 | 
	
		
			
				|  |  | -			<el-form-item prop="state" label="状态:">
 | 
	
		
			
				|  |  | -				<el-select clearable v-model="searchForm.state" placeholder="请选择状态">
 | 
	
		
			
				|  |  | -					<el-option v-for="item in $dictUtils.getDictList('gw_state')" :key="item.value" :label="item.label"
 | 
	
		
			
				|  |  | -						:value="item.value">
 | 
	
		
			
				|  |  | -					</el-option>
 | 
	
		
			
				|  |  | -				</el-select>
 | 
	
		
			
				|  |  | -			</el-form-item>
 | 
	
		
			
				|  |  | -			<el-form-item>
 | 
	
		
			
				|  |  | -				<el-button type="primary" @click="refreshList" icon="search">查询</el-button>
 | 
	
		
			
				|  |  | -				<el-button type="default" @click="resetSearch" icon="refresh-right">重置</el-button>
 | 
	
		
			
				|  |  | -			</el-form-item>
 | 
	
		
			
				|  |  | -		</el-form>
 | 
	
		
			
				|  |  | +  <div class="page">
 | 
	
		
			
				|  |  | +    <el-form
 | 
	
		
			
				|  |  | +      :inline="true"
 | 
	
		
			
				|  |  | +      v-if="searchVisible"
 | 
	
		
			
				|  |  | +      class="query-form m-b-10"
 | 
	
		
			
				|  |  | +      ref="searchForm"
 | 
	
		
			
				|  |  | +      :model="searchForm"
 | 
	
		
			
				|  |  | +      @keyup.enter="refreshList()"
 | 
	
		
			
				|  |  | +      @submit.prevent
 | 
	
		
			
				|  |  | +    >
 | 
	
		
			
				|  |  | +      <!-- 搜索框-->
 | 
	
		
			
				|  |  | +      <el-form-item prop="name" label="文件名称:">
 | 
	
		
			
				|  |  | +        <el-input
 | 
	
		
			
				|  |  | +          v-model="searchForm.name"
 | 
	
		
			
				|  |  | +          placeholder="请输入文件名称"
 | 
	
		
			
				|  |  | +          clearable
 | 
	
		
			
				|  |  | +        ></el-input>
 | 
	
		
			
				|  |  | +      </el-form-item>
 | 
	
		
			
				|  |  | +      <el-form-item prop="yearNum" label="年份:">
 | 
	
		
			
				|  |  | +        <el-input
 | 
	
		
			
				|  |  | +          v-model="searchForm.yearNum"
 | 
	
		
			
				|  |  | +          placeholder="请输入年份"
 | 
	
		
			
				|  |  | +          clearable
 | 
	
		
			
				|  |  | +        ></el-input>
 | 
	
		
			
				|  |  | +      </el-form-item>
 | 
	
		
			
				|  |  | +      <el-form-item prop="authorPerson" label="拟稿人:">
 | 
	
		
			
				|  |  | +        <UserSelect
 | 
	
		
			
				|  |  | +          tenantId="10000"
 | 
	
		
			
				|  |  | +          :limit="1"
 | 
	
		
			
				|  |  | +          v-model="searchForm.authorPerson"
 | 
	
		
			
				|  |  | +        ></UserSelect>
 | 
	
		
			
				|  |  | +      </el-form-item>
 | 
	
		
			
				|  |  | +      <el-form-item prop="open" label="是否公开:">
 | 
	
		
			
				|  |  | +        <el-select clearable v-model="searchForm.open" placeholder="是否公开">
 | 
	
		
			
				|  |  | +          <el-option
 | 
	
		
			
				|  |  | +            v-for="item in $dictUtils.getDictList('yes_no')"
 | 
	
		
			
				|  |  | +            :key="item.value"
 | 
	
		
			
				|  |  | +            :label="item.label"
 | 
	
		
			
				|  |  | +            :value="item.value"
 | 
	
		
			
				|  |  | +          >
 | 
	
		
			
				|  |  | +          </el-option>
 | 
	
		
			
				|  |  | +        </el-select>
 | 
	
		
			
				|  |  | +      </el-form-item>
 | 
	
		
			
				|  |  | +      <el-form-item prop="state" label="状态:">
 | 
	
		
			
				|  |  | +        <el-select
 | 
	
		
			
				|  |  | +          clearable
 | 
	
		
			
				|  |  | +          v-model="searchForm.state"
 | 
	
		
			
				|  |  | +          placeholder="请选择状态"
 | 
	
		
			
				|  |  | +        >
 | 
	
		
			
				|  |  | +          <el-option
 | 
	
		
			
				|  |  | +            v-for="item in $dictUtils.getDictList('gw_state')"
 | 
	
		
			
				|  |  | +            :key="item.value"
 | 
	
		
			
				|  |  | +            :label="item.label"
 | 
	
		
			
				|  |  | +            :value="item.value"
 | 
	
		
			
				|  |  | +          >
 | 
	
		
			
				|  |  | +          </el-option>
 | 
	
		
			
				|  |  | +        </el-select>
 | 
	
		
			
				|  |  | +      </el-form-item>
 | 
	
		
			
				|  |  | +      <el-form-item>
 | 
	
		
			
				|  |  | +        <el-button type="primary" @click="refreshList" icon="search"
 | 
	
		
			
				|  |  | +          >查询</el-button
 | 
	
		
			
				|  |  | +        >
 | 
	
		
			
				|  |  | +        <el-button type="default" @click="resetSearch" icon="refresh-right"
 | 
	
		
			
				|  |  | +          >重置</el-button
 | 
	
		
			
				|  |  | +        >
 | 
	
		
			
				|  |  | +      </el-form-item>
 | 
	
		
			
				|  |  | +    </el-form>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -		<div class="jp-table">
 | 
	
		
			
				|  |  | -			<vxe-toolbar ref="yzCirculationCardToolbar" :refresh="{ query: refreshList }" import export print custom>
 | 
	
		
			
				|  |  | -				<template #buttons>
 | 
	
		
			
				|  |  | -					<el-button v-if="hasPermission('yzcirculation:yzCirculationCard:add')" type="primary" icon="plus"
 | 
	
		
			
				|  |  | -						@click="add()">新建</el-button>
 | 
	
		
			
				|  |  | -					<el-button v-if="hasPermission('yzcirculation:yzCirculationCard:edit')" type="warning"
 | 
	
		
			
				|  |  | -						icon="edit-filled" @click="edit()"
 | 
	
		
			
				|  |  | -						v-show="$refs.yzCirculationCardTable && $refs.yzCirculationCardTable.getCheckboxRecords().length === 1"
 | 
	
		
			
				|  |  | -						plain>修改</el-button>
 | 
	
		
			
				|  |  | -					<el-button v-if="hasPermission('yzcirculation:yzCirculationCard:del')" type="danger"
 | 
	
		
			
				|  |  | -						icon="del-filled" @click="del()"
 | 
	
		
			
				|  |  | -						v-show="$refs.yzCirculationCardTable && $refs.yzCirculationCardTable.getCheckboxRecords().length > 0"
 | 
	
		
			
				|  |  | -						plain>删除</el-button>
 | 
	
		
			
				|  |  | -				</template>
 | 
	
		
			
				|  |  | -				<template #tools>
 | 
	
		
			
				|  |  | -					<vxe-button type="text" :title="searchVisible ? '收起检索' : '展开检索'
 | 
	
		
			
				|  |  | -			" icon="vxe-icon-search" class="tool-btn" @click="searchVisible = !searchVisible"></vxe-button>
 | 
	
		
			
				|  |  | -					<vxe-button type="text" title="下载导入模板"
 | 
	
		
			
				|  |  | -						v-if="hasPermission('yzcirculation:yzCirculationCard:import')" icon="iconfont icon-xiazaimoban1"
 | 
	
		
			
				|  |  | -						class="tool-btn m-l-0" @click="downloadTpl()">
 | 
	
		
			
				|  |  | -					</vxe-button>
 | 
	
		
			
				|  |  | -				</template>
 | 
	
		
			
				|  |  | -			</vxe-toolbar>
 | 
	
		
			
				|  |  | -			<div class="jp-table-body">
 | 
	
		
			
				|  |  | -				<vxe-table border="inner" auto-resize resizable height="auto" :loading="loading" size="small"
 | 
	
		
			
				|  |  | -					ref="yzCirculationCardTable" show-header-overflow show-overflow highlight-hover-row
 | 
	
		
			
				|  |  | -					:menu-config="{}" :print-config="{}" :import-config="{
 | 
	
		
			
				|  |  | -			importMethod: importMethod,
 | 
	
		
			
				|  |  | -			types: ['csv', 'xls', 'xlsx'],
 | 
	
		
			
				|  |  | -			remote: true,
 | 
	
		
			
				|  |  | -		}" :export-config="{
 | 
	
		
			
				|  |  | -			remote: true,
 | 
	
		
			
				|  |  | -			filename: `拟稿申请数据${moment(new Date()).format(
 | 
	
		
			
				|  |  | -				'YYYY-MM-DD'
 | 
	
		
			
				|  |  | -			)}`,
 | 
	
		
			
				|  |  | -			sheetName: '拟稿申请数据',
 | 
	
		
			
				|  |  | -			exportMethod: exportMethod,
 | 
	
		
			
				|  |  | -			types: ['xlsx'],
 | 
	
		
			
				|  |  | -			modes: ['current', 'selected', 'all'],
 | 
	
		
			
				|  |  | -		}" @sort-change="sortChangeHandle" :sort-config="{ remote: true }" :data="dataList" :checkbox-config="{}">
 | 
	
		
			
				|  |  | -					<vxe-column type="seq" width="40"></vxe-column>
 | 
	
		
			
				|  |  | -					<vxe-column type="checkbox" width="40px"></vxe-column>
 | 
	
		
			
				|  |  | -					<vxe-column field="yearNum" sortable title="年份">
 | 
	
		
			
				|  |  | -					</vxe-column>
 | 
	
		
			
				|  |  | -					<vxe-column field="cardNum" sortable title="卡号">
 | 
	
		
			
				|  |  | -					</vxe-column>
 | 
	
		
			
				|  |  | -					<vxe-column field="name" sortable title="文件名称">
 | 
	
		
			
				|  |  | -					</vxe-column>
 | 
	
		
			
				|  |  | -					<vxe-column field="authorPerson" sortable title="拟稿人">
 | 
	
		
			
				|  |  | -					</vxe-column>
 | 
	
		
			
				|  |  | -					<vxe-column field="proofreader" sortable title="校对人">
 | 
	
		
			
				|  |  | -					</vxe-column>
 | 
	
		
			
				|  |  | -					<vxe-column field="open" sortable title="是否公开">
 | 
	
		
			
				|  |  | -						<template #default="{ row }">
 | 
	
		
			
				|  |  | -							{{ $dictUtils.getDictLabel("yes_no", row.open, '-') }}
 | 
	
		
			
				|  |  | -						</template>
 | 
	
		
			
				|  |  | -					</vxe-column>
 | 
	
		
			
				|  |  | -					<vxe-column field="printNum" sortable title="印数">
 | 
	
		
			
				|  |  | -						<template #default="{ row }">
 | 
	
		
			
				|  |  | -							{{ row.printNum == 0 ? "-" : row.printNum }}
 | 
	
		
			
				|  |  | -						</template>
 | 
	
		
			
				|  |  | -					</vxe-column>
 | 
	
		
			
				|  |  | -					<vxe-column field="state" sortable title="状态">
 | 
	
		
			
				|  |  | -						<template #default="{ row }">
 | 
	
		
			
				|  |  | -							{{ $dictUtils.getDictLabel("gw_state", row.state, '-') }}
 | 
	
		
			
				|  |  | -						</template>
 | 
	
		
			
				|  |  | -					</vxe-column>
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -					<vxe-column fixed="right" align="center" width="300" title="操作">
 | 
	
		
			
				|  |  | -						<template #default="{ row }">
 | 
	
		
			
				|  |  | -							<el-button v-if="hasPermission('yzcirculation:yzCirculationCard:view')" type="primary" text
 | 
	
		
			
				|  |  | -								icon="view-filled" @click="view(row.id)">查看</el-button>
 | 
	
		
			
				|  |  | -							<el-button
 | 
	
		
			
				|  |  | -								v-if="hasPermission('yzcirculation:yzCirculationCard:edit') && row.state == '1' && role != '租户管理员'"
 | 
	
		
			
				|  |  | -								type="success" text icon="edit-filled" @click="examine(row.id)">审批</el-button>
 | 
	
		
			
				|  |  | -							<el-button
 | 
	
		
			
				|  |  | -								v-if="hasPermission('yzcirculation:yzCirculationCard:edit') && (role == '租户管理员' || role == '办公室管理员')"
 | 
	
		
			
				|  |  | -								type="primary" text icon="edit-filled" @click="edit(row.id)">修改</el-button>
 | 
	
		
			
				|  |  | -							<el-button v-if="hasPermission('yzcirculation:yzCirculationCard:del')" type="danger" text
 | 
	
		
			
				|  |  | -								icon="del-filled" @click="del(row.id)">删除</el-button>
 | 
	
		
			
				|  |  | -						</template>
 | 
	
		
			
				|  |  | -					</vxe-column>
 | 
	
		
			
				|  |  | -				</vxe-table>
 | 
	
		
			
				|  |  | -				<vxe-pager background size="small" :current-page="tablePage.currentPage" :page-size="tablePage.pageSize"
 | 
	
		
			
				|  |  | -					:total="tablePage.total" :page-sizes="[10, 20, 100, 1000, { label: '全量数据', value: 1000000 }]"
 | 
	
		
			
				|  |  | -					:layouts="['PrevPage', 'JumpNumber', 'NextPage', 'FullJump', 'Sizes', 'Total']"
 | 
	
		
			
				|  |  | -					@page-change="currentChangeHandle">
 | 
	
		
			
				|  |  | -				</vxe-pager>
 | 
	
		
			
				|  |  | -			</div>
 | 
	
		
			
				|  |  | -		</div>
 | 
	
		
			
				|  |  | -		<!-- 弹窗, 新增 / 修改 -->
 | 
	
		
			
				|  |  | -		<YzCirculationCardForm ref="yzCirculationCardForm" @refreshDataList="refreshList"></YzCirculationCardForm>
 | 
	
		
			
				|  |  | -		<YzCardInfo ref="yzCardInfo" @refreshDataList="refreshList"></YzCardInfo>
 | 
	
		
			
				|  |  | -	</div>
 | 
	
		
			
				|  |  | +    <div class="jp-table" style="height: calc(100% - 120px)">
 | 
	
		
			
				|  |  | +      <vxe-toolbar
 | 
	
		
			
				|  |  | +        ref="yzCirculationCardToolbar"
 | 
	
		
			
				|  |  | +        :refresh="{ query: refreshList }"
 | 
	
		
			
				|  |  | +        import
 | 
	
		
			
				|  |  | +        export
 | 
	
		
			
				|  |  | +        print
 | 
	
		
			
				|  |  | +        custom
 | 
	
		
			
				|  |  | +      >
 | 
	
		
			
				|  |  | +        <template #buttons>
 | 
	
		
			
				|  |  | +          <el-button
 | 
	
		
			
				|  |  | +            v-if="hasPermission('yzcirculation:yzCirculationCard:add')"
 | 
	
		
			
				|  |  | +            type="primary"
 | 
	
		
			
				|  |  | +            icon="plus"
 | 
	
		
			
				|  |  | +            @click="add()"
 | 
	
		
			
				|  |  | +            >新建</el-button
 | 
	
		
			
				|  |  | +          >
 | 
	
		
			
				|  |  | +          <el-button
 | 
	
		
			
				|  |  | +            v-if="hasPermission('yzcirculation:yzCirculationCard:edit')"
 | 
	
		
			
				|  |  | +            type="warning"
 | 
	
		
			
				|  |  | +            icon="edit-filled"
 | 
	
		
			
				|  |  | +            @click="edit()"
 | 
	
		
			
				|  |  | +            v-show="
 | 
	
		
			
				|  |  | +              $refs.yzCirculationCardTable &&
 | 
	
		
			
				|  |  | +              $refs.yzCirculationCardTable.getCheckboxRecords().length === 1
 | 
	
		
			
				|  |  | +            "
 | 
	
		
			
				|  |  | +            plain
 | 
	
		
			
				|  |  | +            >修改</el-button
 | 
	
		
			
				|  |  | +          >
 | 
	
		
			
				|  |  | +          <el-button
 | 
	
		
			
				|  |  | +            v-if="hasPermission('yzcirculation:yzCirculationCard:del')"
 | 
	
		
			
				|  |  | +            type="danger"
 | 
	
		
			
				|  |  | +            icon="del-filled"
 | 
	
		
			
				|  |  | +            @click="del()"
 | 
	
		
			
				|  |  | +            v-show="
 | 
	
		
			
				|  |  | +              $refs.yzCirculationCardTable &&
 | 
	
		
			
				|  |  | +              $refs.yzCirculationCardTable.getCheckboxRecords().length > 0
 | 
	
		
			
				|  |  | +            "
 | 
	
		
			
				|  |  | +            plain
 | 
	
		
			
				|  |  | +            >删除</el-button
 | 
	
		
			
				|  |  | +          >
 | 
	
		
			
				|  |  | +        </template>
 | 
	
		
			
				|  |  | +        <template #tools>
 | 
	
		
			
				|  |  | +          <vxe-button
 | 
	
		
			
				|  |  | +            type="text"
 | 
	
		
			
				|  |  | +            :title="searchVisible ? '收起检索' : '展开检索'"
 | 
	
		
			
				|  |  | +            icon="vxe-icon-search"
 | 
	
		
			
				|  |  | +            class="tool-btn"
 | 
	
		
			
				|  |  | +            @click="searchVisible = !searchVisible"
 | 
	
		
			
				|  |  | +          ></vxe-button>
 | 
	
		
			
				|  |  | +          <vxe-button
 | 
	
		
			
				|  |  | +            type="text"
 | 
	
		
			
				|  |  | +            title="下载导入模板"
 | 
	
		
			
				|  |  | +            v-if="hasPermission('yzcirculation:yzCirculationCard:import')"
 | 
	
		
			
				|  |  | +            icon="iconfont icon-xiazaimoban1"
 | 
	
		
			
				|  |  | +            class="tool-btn m-l-0"
 | 
	
		
			
				|  |  | +            @click="downloadTpl()"
 | 
	
		
			
				|  |  | +          >
 | 
	
		
			
				|  |  | +          </vxe-button>
 | 
	
		
			
				|  |  | +        </template>
 | 
	
		
			
				|  |  | +      </vxe-toolbar>
 | 
	
		
			
				|  |  | +      <div class="jp-table-body">
 | 
	
		
			
				|  |  | +        <vxe-table
 | 
	
		
			
				|  |  | +          border="inner"
 | 
	
		
			
				|  |  | +          auto-resize
 | 
	
		
			
				|  |  | +          resizable
 | 
	
		
			
				|  |  | +          height="auto"
 | 
	
		
			
				|  |  | +          :loading="loading"
 | 
	
		
			
				|  |  | +          size="small"
 | 
	
		
			
				|  |  | +          ref="yzCirculationCardTable"
 | 
	
		
			
				|  |  | +          show-header-overflow
 | 
	
		
			
				|  |  | +          show-overflow
 | 
	
		
			
				|  |  | +          highlight-hover-row
 | 
	
		
			
				|  |  | +          :menu-config="{}"
 | 
	
		
			
				|  |  | +          :print-config="{}"
 | 
	
		
			
				|  |  | +          :import-config="{
 | 
	
		
			
				|  |  | +            importMethod: importMethod,
 | 
	
		
			
				|  |  | +            types: ['csv', 'xls', 'xlsx'],
 | 
	
		
			
				|  |  | +            remote: true,
 | 
	
		
			
				|  |  | +          }"
 | 
	
		
			
				|  |  | +          :export-config="{
 | 
	
		
			
				|  |  | +            remote: true,
 | 
	
		
			
				|  |  | +            filename: `拟稿申请数据${moment(new Date()).format('YYYY-MM-DD')}`,
 | 
	
		
			
				|  |  | +            sheetName: '拟稿申请数据',
 | 
	
		
			
				|  |  | +            exportMethod: exportMethod,
 | 
	
		
			
				|  |  | +            types: ['xlsx'],
 | 
	
		
			
				|  |  | +            modes: ['current', 'selected', 'all'],
 | 
	
		
			
				|  |  | +          }"
 | 
	
		
			
				|  |  | +          @sort-change="sortChangeHandle"
 | 
	
		
			
				|  |  | +          :sort-config="{ remote: true }"
 | 
	
		
			
				|  |  | +          :data="dataList"
 | 
	
		
			
				|  |  | +          :checkbox-config="{}"
 | 
	
		
			
				|  |  | +        >
 | 
	
		
			
				|  |  | +          <vxe-column type="seq" width="40"></vxe-column>
 | 
	
		
			
				|  |  | +          <vxe-column type="checkbox" width="40px"></vxe-column>
 | 
	
		
			
				|  |  | +          <vxe-column field="yearNum" sortable title="年份"> </vxe-column>
 | 
	
		
			
				|  |  | +          <vxe-column field="cardNum" sortable title="卡号"> </vxe-column>
 | 
	
		
			
				|  |  | +          <vxe-column field="name" sortable title="文件名称"> </vxe-column>
 | 
	
		
			
				|  |  | +          <vxe-column field="authorPerson" sortable title="拟稿人">
 | 
	
		
			
				|  |  | +          </vxe-column>
 | 
	
		
			
				|  |  | +          <vxe-column field="proofreader" sortable title="校对人"> </vxe-column>
 | 
	
		
			
				|  |  | +          <vxe-column field="open" sortable title="是否公开">
 | 
	
		
			
				|  |  | +            <template #default="{ row }">
 | 
	
		
			
				|  |  | +              {{ $dictUtils.getDictLabel("yes_no", row.open, "-") }}
 | 
	
		
			
				|  |  | +            </template>
 | 
	
		
			
				|  |  | +          </vxe-column>
 | 
	
		
			
				|  |  | +          <vxe-column field="printNum" sortable title="印数">
 | 
	
		
			
				|  |  | +            <template #default="{ row }">
 | 
	
		
			
				|  |  | +              {{ row.printNum == 0 ? "-" : row.printNum }}
 | 
	
		
			
				|  |  | +            </template>
 | 
	
		
			
				|  |  | +          </vxe-column>
 | 
	
		
			
				|  |  | +          <vxe-column field="state" sortable title="状态">
 | 
	
		
			
				|  |  | +            <template #default="{ row }">
 | 
	
		
			
				|  |  | +              {{ $dictUtils.getDictLabel("gw_state", row.state, "-") }}
 | 
	
		
			
				|  |  | +            </template>
 | 
	
		
			
				|  |  | +          </vxe-column>
 | 
	
		
			
				|  |  | +          <vxe-column field="suspend" sortable title="中止原因">
 | 
	
		
			
				|  |  | +            <template #default="{ row }">
 | 
	
		
			
				|  |  | +              {{ row.state == 2 ? row.suspend : "" }}
 | 
	
		
			
				|  |  | +            </template>
 | 
	
		
			
				|  |  | +          </vxe-column>
 | 
	
		
			
				|  |  | +          <vxe-column fixed="right" align="center" width="300" title="操作">
 | 
	
		
			
				|  |  | +            <template #default="{ row }">
 | 
	
		
			
				|  |  | +              <el-button
 | 
	
		
			
				|  |  | +                v-if="hasPermission('yzcirculation:yzCirculationCard:view')"
 | 
	
		
			
				|  |  | +                type="primary"
 | 
	
		
			
				|  |  | +                text
 | 
	
		
			
				|  |  | +                icon="view-filled"
 | 
	
		
			
				|  |  | +                @click="view(row.id)"
 | 
	
		
			
				|  |  | +                >查看</el-button
 | 
	
		
			
				|  |  | +              >
 | 
	
		
			
				|  |  | +              <el-button
 | 
	
		
			
				|  |  | +                v-if="
 | 
	
		
			
				|  |  | +                  hasPermission('yzcirculation:yzCirculationCard:edit') &&
 | 
	
		
			
				|  |  | +                  row.state == '1' &&
 | 
	
		
			
				|  |  | +                  role != '租户管理员' &&
 | 
	
		
			
				|  |  | +                  row.state != 2
 | 
	
		
			
				|  |  | +                "
 | 
	
		
			
				|  |  | +                type="success"
 | 
	
		
			
				|  |  | +                text
 | 
	
		
			
				|  |  | +                @click="examine(row.id)"
 | 
	
		
			
				|  |  | +                >审批</el-button
 | 
	
		
			
				|  |  | +              >
 | 
	
		
			
				|  |  | +              <el-button
 | 
	
		
			
				|  |  | +                v-if="
 | 
	
		
			
				|  |  | +                  hasPermission('yzcirculation:yzCirculationCard:edit') &&
 | 
	
		
			
				|  |  | +                  (role == '租户管理员' || role == '办公室管理员') &&
 | 
	
		
			
				|  |  | +                  row.state != 3 &&
 | 
	
		
			
				|  |  | +                  row.state != 2
 | 
	
		
			
				|  |  | +                "
 | 
	
		
			
				|  |  | +                type="primary"
 | 
	
		
			
				|  |  | +                text
 | 
	
		
			
				|  |  | +                icon="edit-filled"
 | 
	
		
			
				|  |  | +                @click="edit(row.id)"
 | 
	
		
			
				|  |  | +                >修改</el-button
 | 
	
		
			
				|  |  | +              >
 | 
	
		
			
				|  |  | +              <el-button
 | 
	
		
			
				|  |  | +                v-if="
 | 
	
		
			
				|  |  | +                  hasPermission('yzcirculation:yzCirculationCard:edit') &&
 | 
	
		
			
				|  |  | +                  row.state != 2 &&
 | 
	
		
			
				|  |  | +                  row.state != 3
 | 
	
		
			
				|  |  | +                "
 | 
	
		
			
				|  |  | +                type="info"
 | 
	
		
			
				|  |  | +                text
 | 
	
		
			
				|  |  | +                @click="suspend(row)"
 | 
	
		
			
				|  |  | +                >中止</el-button
 | 
	
		
			
				|  |  | +              >
 | 
	
		
			
				|  |  | +              <el-button
 | 
	
		
			
				|  |  | +                v-if="
 | 
	
		
			
				|  |  | +                  hasPermission('yzcirculation:yzCirculationCard:del') &&
 | 
	
		
			
				|  |  | +                  row.state != 3
 | 
	
		
			
				|  |  | +                "
 | 
	
		
			
				|  |  | +                type="danger"
 | 
	
		
			
				|  |  | +                text
 | 
	
		
			
				|  |  | +                icon="del-filled"
 | 
	
		
			
				|  |  | +                @click="del(row.id)"
 | 
	
		
			
				|  |  | +                >删除</el-button
 | 
	
		
			
				|  |  | +              >
 | 
	
		
			
				|  |  | +            </template>
 | 
	
		
			
				|  |  | +          </vxe-column>
 | 
	
		
			
				|  |  | +        </vxe-table>
 | 
	
		
			
				|  |  | +        <vxe-pager
 | 
	
		
			
				|  |  | +          background
 | 
	
		
			
				|  |  | +          size="small"
 | 
	
		
			
				|  |  | +          :current-page="tablePage.currentPage"
 | 
	
		
			
				|  |  | +          :page-size="tablePage.pageSize"
 | 
	
		
			
				|  |  | +          :total="tablePage.total"
 | 
	
		
			
				|  |  | +          :page-sizes="[
 | 
	
		
			
				|  |  | +            10,
 | 
	
		
			
				|  |  | +            20,
 | 
	
		
			
				|  |  | +            100,
 | 
	
		
			
				|  |  | +            1000,
 | 
	
		
			
				|  |  | +            { label: '全量数据', value: 1000000 },
 | 
	
		
			
				|  |  | +          ]"
 | 
	
		
			
				|  |  | +          :layouts="[
 | 
	
		
			
				|  |  | +            'PrevPage',
 | 
	
		
			
				|  |  | +            'JumpNumber',
 | 
	
		
			
				|  |  | +            'NextPage',
 | 
	
		
			
				|  |  | +            'FullJump',
 | 
	
		
			
				|  |  | +            'Sizes',
 | 
	
		
			
				|  |  | +            'Total',
 | 
	
		
			
				|  |  | +          ]"
 | 
	
		
			
				|  |  | +          @page-change="currentChangeHandle"
 | 
	
		
			
				|  |  | +        >
 | 
	
		
			
				|  |  | +        </vxe-pager>
 | 
	
		
			
				|  |  | +      </div>
 | 
	
		
			
				|  |  | +    </div>
 | 
	
		
			
				|  |  | +    <!-- 弹窗, 新增 / 修改 -->
 | 
	
		
			
				|  |  | +    <YzCirculationCardForm
 | 
	
		
			
				|  |  | +      ref="yzCirculationCardForm"
 | 
	
		
			
				|  |  | +      @refreshDataList="refreshList"
 | 
	
		
			
				|  |  | +    ></YzCirculationCardForm>
 | 
	
		
			
				|  |  | +    <YzCardInfo ref="yzCardInfo" @refreshDataList="refreshList"></YzCardInfo>
 | 
	
		
			
				|  |  | +  </div>
 | 
	
		
			
				|  |  |  </template>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  <script>
 | 
	
		
			
				|  |  | -import YzCirculationCardForm from './YzCirculationCardForm'
 | 
	
		
			
				|  |  | -import YzCardInfo from './YzCardInfo'
 | 
	
		
			
				|  |  | -import yzCirculationCardService from '@/api/yzcirculation/yzCirculationCardService'
 | 
	
		
			
				|  |  | -import UserSelect from '@/components/userSelect'
 | 
	
		
			
				|  |  | +import YzCirculationCardForm from "./YzCirculationCardForm";
 | 
	
		
			
				|  |  | +import YzCardInfo from "./YzCardInfo";
 | 
	
		
			
				|  |  | +import yzCirculationCardService from "@/api/yzcirculation/yzCirculationCardService";
 | 
	
		
			
				|  |  | +import UserSelect from "@/components/userSelect";
 | 
	
		
			
				|  |  |  export default {
 | 
	
		
			
				|  |  | -	data() {
 | 
	
		
			
				|  |  | -		return {
 | 
	
		
			
				|  |  | -			searchVisible: true,
 | 
	
		
			
				|  |  | -			role: '',
 | 
	
		
			
				|  |  | -			searchForm: {
 | 
	
		
			
				|  |  | -				name: '',
 | 
	
		
			
				|  |  | -				open: '',
 | 
	
		
			
				|  |  | -				state: '',
 | 
	
		
			
				|  |  | -				yearNum: '',
 | 
	
		
			
				|  |  | -				authorPerson: ''
 | 
	
		
			
				|  |  | -			},
 | 
	
		
			
				|  |  | -			dataList: [],
 | 
	
		
			
				|  |  | -			tablePage: {
 | 
	
		
			
				|  |  | -				total: 0,
 | 
	
		
			
				|  |  | -				currentPage: 1,
 | 
	
		
			
				|  |  | -				pageSize: 10,
 | 
	
		
			
				|  |  | -				orders: [{ column: "a.state", asc: true }, { column: "a.create_time", asc: false }],
 | 
	
		
			
				|  |  | -			},
 | 
	
		
			
				|  |  | -			loading: false
 | 
	
		
			
				|  |  | -		}
 | 
	
		
			
				|  |  | -	},
 | 
	
		
			
				|  |  | -	components: {
 | 
	
		
			
				|  |  | -		UserSelect,
 | 
	
		
			
				|  |  | -		YzCirculationCardForm,
 | 
	
		
			
				|  |  | -		YzCardInfo
 | 
	
		
			
				|  |  | -	},
 | 
	
		
			
				|  |  | -	created() {
 | 
	
		
			
				|  |  | -	},
 | 
	
		
			
				|  |  | -	mounted() {
 | 
	
		
			
				|  |  | -		this.$nextTick(() => {
 | 
	
		
			
				|  |  | -			this.role = JSON.parse(window.localStorage.getItem('USER_INFO')).roleNames
 | 
	
		
			
				|  |  | -			// 将表格和工具栏进行关联
 | 
	
		
			
				|  |  | -			const $table = this.$refs.yzCirculationCardTable
 | 
	
		
			
				|  |  | -			const $toolbar = this.$refs.yzCirculationCardToolbar
 | 
	
		
			
				|  |  | -			$table.connect($toolbar)
 | 
	
		
			
				|  |  | -		})
 | 
	
		
			
				|  |  | -	},
 | 
	
		
			
				|  |  | -	activated() {
 | 
	
		
			
				|  |  | -		this.refreshList()
 | 
	
		
			
				|  |  | -	},
 | 
	
		
			
				|  |  | -	methods: {
 | 
	
		
			
				|  |  | -		// 获取数据列表
 | 
	
		
			
				|  |  | -		refreshList() {
 | 
	
		
			
				|  |  | -			this.loading = true
 | 
	
		
			
				|  |  | -			yzCirculationCardService.list({
 | 
	
		
			
				|  |  | -				'current': this.tablePage.currentPage,
 | 
	
		
			
				|  |  | -				'size': this.tablePage.pageSize,
 | 
	
		
			
				|  |  | -				'orders': this.tablePage.orders,
 | 
	
		
			
				|  |  | -				...this.searchForm
 | 
	
		
			
				|  |  | -			}).then((data) => {
 | 
	
		
			
				|  |  | -				this.dataList = data.records
 | 
	
		
			
				|  |  | -				this.tablePage.total = data.total
 | 
	
		
			
				|  |  | -				this.loading = false
 | 
	
		
			
				|  |  | -			})
 | 
	
		
			
				|  |  | -		},
 | 
	
		
			
				|  |  | -		// 当前页
 | 
	
		
			
				|  |  | -		currentChangeHandle({ currentPage, pageSize }) {
 | 
	
		
			
				|  |  | -			this.tablePage.currentPage = currentPage
 | 
	
		
			
				|  |  | -			this.tablePage.pageSize = pageSize
 | 
	
		
			
				|  |  | -			this.refreshList()
 | 
	
		
			
				|  |  | -		},
 | 
	
		
			
				|  |  | -		// 排序
 | 
	
		
			
				|  |  | -		sortChangeHandle(obj) {
 | 
	
		
			
				|  |  | -			this.tablePage.orders = [];
 | 
	
		
			
				|  |  | -			if (obj.order != null) {
 | 
	
		
			
				|  |  | -				this.tablePage.orders = [{ column: obj.column.sortBy || this.$utils.toLine(obj.property), asc: obj.order === "asc" }];
 | 
	
		
			
				|  |  | -			} else {
 | 
	
		
			
				|  |  | -				this.tablePage.orders = [{ column: "a.create_time", asc: false }];
 | 
	
		
			
				|  |  | -			}
 | 
	
		
			
				|  |  | -			this.refreshList();
 | 
	
		
			
				|  |  | -		},
 | 
	
		
			
				|  |  | -		// 新增
 | 
	
		
			
				|  |  | -		add() {
 | 
	
		
			
				|  |  | -			this.$refs.yzCirculationCardForm.init('add', '')
 | 
	
		
			
				|  |  | -		},
 | 
	
		
			
				|  |  | -		// 审批
 | 
	
		
			
				|  |  | -		examine(id) {
 | 
	
		
			
				|  |  | -			id = id || this.$refs.yzCirculationCardTable.getCheckboxRecords().map(item => {
 | 
	
		
			
				|  |  | -				return item.id
 | 
	
		
			
				|  |  | -			})[0]
 | 
	
		
			
				|  |  | -			this.$refs.yzCardInfo.init('edit', id)
 | 
	
		
			
				|  |  | -		},
 | 
	
		
			
				|  |  | -		// 修改
 | 
	
		
			
				|  |  | -		edit(id) {
 | 
	
		
			
				|  |  | -			id = id || this.$refs.yzCirculationCardTable.getCheckboxRecords().map(item => {
 | 
	
		
			
				|  |  | -				return item.id
 | 
	
		
			
				|  |  | -			})[0]
 | 
	
		
			
				|  |  | -			this.$refs.yzCirculationCardForm.init('edit', id)
 | 
	
		
			
				|  |  | -		},
 | 
	
		
			
				|  |  | -		// 查看
 | 
	
		
			
				|  |  | -		view(id) {
 | 
	
		
			
				|  |  | -			this.$refs.yzCardInfo.init('view', id)
 | 
	
		
			
				|  |  | -		},
 | 
	
		
			
				|  |  | -		// 删除
 | 
	
		
			
				|  |  | -		del(id) {
 | 
	
		
			
				|  |  | -			let ids = id || this.$refs.yzCirculationCardTable.getCheckboxRecords().map(item => {
 | 
	
		
			
				|  |  | -				return item.id
 | 
	
		
			
				|  |  | -			}).join(',')
 | 
	
		
			
				|  |  | -			this.$confirm(`确定删除所选项吗?`, '提示', {
 | 
	
		
			
				|  |  | -				confirmButtonText: '确定',
 | 
	
		
			
				|  |  | -				cancelButtonText: '取消',
 | 
	
		
			
				|  |  | -				type: 'warning'
 | 
	
		
			
				|  |  | -			}).then(() => {
 | 
	
		
			
				|  |  | -				this.loading = true
 | 
	
		
			
				|  |  | -				yzCirculationCardService.delete(ids).then((data) => {
 | 
	
		
			
				|  |  | -					this.$message.success(data)
 | 
	
		
			
				|  |  | -					this.refreshList()
 | 
	
		
			
				|  |  | -					this.loading = false
 | 
	
		
			
				|  |  | -				})
 | 
	
		
			
				|  |  | -			})
 | 
	
		
			
				|  |  | -		},
 | 
	
		
			
				|  |  | -		// 下载模板
 | 
	
		
			
				|  |  | -		downloadTpl() {
 | 
	
		
			
				|  |  | -			this.loading = true
 | 
	
		
			
				|  |  | -			yzCirculationCardService
 | 
	
		
			
				|  |  | -				.exportTemplate()
 | 
	
		
			
				|  |  | -				.then((data) => {
 | 
	
		
			
				|  |  | -					// 将二进制流文件写入excel表,以下为重要步骤
 | 
	
		
			
				|  |  | -					this.$utils.downloadExcel(data, "拟稿申请导入模板");
 | 
	
		
			
				|  |  | -					this.loading = false
 | 
	
		
			
				|  |  | -				})
 | 
	
		
			
				|  |  | -				.catch(function (err) {
 | 
	
		
			
				|  |  | -					this.loading = false
 | 
	
		
			
				|  |  | -					if (err.response) {
 | 
	
		
			
				|  |  | -						console.log(err.response);
 | 
	
		
			
				|  |  | -					}
 | 
	
		
			
				|  |  | -				});
 | 
	
		
			
				|  |  | -		},
 | 
	
		
			
				|  |  | -		// 自定义服务端导入
 | 
	
		
			
				|  |  | -		importMethod({ file }) {
 | 
	
		
			
				|  |  | -			// 处理表单
 | 
	
		
			
				|  |  | -			const formBody = new FormData();
 | 
	
		
			
				|  |  | -			formBody.append("file", file);
 | 
	
		
			
				|  |  | -			this.loading = true
 | 
	
		
			
				|  |  | -			yzCirculationCardService.importExcel(formBody).then((result) => {
 | 
	
		
			
				|  |  | -				this.$message.success({
 | 
	
		
			
				|  |  | -					dangerouslyUseHTMLString: true,
 | 
	
		
			
				|  |  | -					message: result,
 | 
	
		
			
				|  |  | -				});
 | 
	
		
			
				|  |  | -				this.refreshList();
 | 
	
		
			
				|  |  | -			});
 | 
	
		
			
				|  |  | -		},
 | 
	
		
			
				|  |  | -		// 自定义服务端导出
 | 
	
		
			
				|  |  | -		exportMethod({ options }) {
 | 
	
		
			
				|  |  | -			// 传给服务端的参数
 | 
	
		
			
				|  |  | -			const params = {
 | 
	
		
			
				|  |  | -				current: this.tablePage.currentPage,
 | 
	
		
			
				|  |  | -				size: this.tablePage.pageSize,
 | 
	
		
			
				|  |  | -				orders: this.tablePage.orders,
 | 
	
		
			
				|  |  | -				...this.searchForm,
 | 
	
		
			
				|  |  | -				filename: options.filename,
 | 
	
		
			
				|  |  | -				sheetName: options.sheetName,
 | 
	
		
			
				|  |  | -				isHeader: options.isHeader,
 | 
	
		
			
				|  |  | -				original: options.original,
 | 
	
		
			
				|  |  | -				mode: options.mode,
 | 
	
		
			
				|  |  | -				selectIds:
 | 
	
		
			
				|  |  | -					options.mode === "selected"
 | 
	
		
			
				|  |  | -						? options.data.map((item) => item.id)
 | 
	
		
			
				|  |  | -						: [],
 | 
	
		
			
				|  |  | -				exportFields: options.columns.map(
 | 
	
		
			
				|  |  | -					(column) => column.property && column.property.split(".")[0]
 | 
	
		
			
				|  |  | -				),
 | 
	
		
			
				|  |  | -			};
 | 
	
		
			
				|  |  | -			this.loading = true;
 | 
	
		
			
				|  |  | -			return yzCirculationCardService
 | 
	
		
			
				|  |  | -				.exportExcel(params)
 | 
	
		
			
				|  |  | -				.then((data) => {
 | 
	
		
			
				|  |  | -					// 将二进制流文件写入excel表,以下为重要步骤
 | 
	
		
			
				|  |  | -					this.$utils.downloadExcel(data, options.filename);
 | 
	
		
			
				|  |  | -					this.loading = false;
 | 
	
		
			
				|  |  | -				})
 | 
	
		
			
				|  |  | -				.catch(function (err) {
 | 
	
		
			
				|  |  | -					if (err.response) {
 | 
	
		
			
				|  |  | -						console.log(err.response);
 | 
	
		
			
				|  |  | -					}
 | 
	
		
			
				|  |  | -				});
 | 
	
		
			
				|  |  | -		},
 | 
	
		
			
				|  |  | -		resetSearch() {
 | 
	
		
			
				|  |  | -			this.$refs.searchForm.resetFields()
 | 
	
		
			
				|  |  | -			this.refreshList()
 | 
	
		
			
				|  |  | -		}
 | 
	
		
			
				|  |  | -	}
 | 
	
		
			
				|  |  | -}
 | 
	
		
			
				|  |  | +  data() {
 | 
	
		
			
				|  |  | +    return {
 | 
	
		
			
				|  |  | +      searchVisible: true,
 | 
	
		
			
				|  |  | +      role: "",
 | 
	
		
			
				|  |  | +      searchForm: {
 | 
	
		
			
				|  |  | +        name: "",
 | 
	
		
			
				|  |  | +        open: "",
 | 
	
		
			
				|  |  | +        state: "",
 | 
	
		
			
				|  |  | +        yearNum: "",
 | 
	
		
			
				|  |  | +        authorPerson: "",
 | 
	
		
			
				|  |  | +      },
 | 
	
		
			
				|  |  | +      dataList: [],
 | 
	
		
			
				|  |  | +      tablePage: {
 | 
	
		
			
				|  |  | +        total: 0,
 | 
	
		
			
				|  |  | +        currentPage: 1,
 | 
	
		
			
				|  |  | +        pageSize: 10,
 | 
	
		
			
				|  |  | +        orders: [
 | 
	
		
			
				|  |  | +          { column: "a.state", asc: true },
 | 
	
		
			
				|  |  | +          { column: "a.create_time", asc: false },
 | 
	
		
			
				|  |  | +        ],
 | 
	
		
			
				|  |  | +      },
 | 
	
		
			
				|  |  | +      loading: false,
 | 
	
		
			
				|  |  | +    };
 | 
	
		
			
				|  |  | +  },
 | 
	
		
			
				|  |  | +  components: {
 | 
	
		
			
				|  |  | +    UserSelect,
 | 
	
		
			
				|  |  | +    YzCirculationCardForm,
 | 
	
		
			
				|  |  | +    YzCardInfo,
 | 
	
		
			
				|  |  | +  },
 | 
	
		
			
				|  |  | +  created() {},
 | 
	
		
			
				|  |  | +  mounted() {
 | 
	
		
			
				|  |  | +    this.$nextTick(() => {
 | 
	
		
			
				|  |  | +      this.role = JSON.parse(
 | 
	
		
			
				|  |  | +        window.localStorage.getItem("USER_INFO")
 | 
	
		
			
				|  |  | +      ).roleNames;
 | 
	
		
			
				|  |  | +      // 将表格和工具栏进行关联
 | 
	
		
			
				|  |  | +      const $table = this.$refs.yzCirculationCardTable;
 | 
	
		
			
				|  |  | +      const $toolbar = this.$refs.yzCirculationCardToolbar;
 | 
	
		
			
				|  |  | +      $table.connect($toolbar);
 | 
	
		
			
				|  |  | +    });
 | 
	
		
			
				|  |  | +  },
 | 
	
		
			
				|  |  | +  activated() {
 | 
	
		
			
				|  |  | +    this.refreshList();
 | 
	
		
			
				|  |  | +  },
 | 
	
		
			
				|  |  | +  methods: {
 | 
	
		
			
				|  |  | +    // 获取数据列表
 | 
	
		
			
				|  |  | +    refreshList() {
 | 
	
		
			
				|  |  | +      this.loading = true;
 | 
	
		
			
				|  |  | +      yzCirculationCardService
 | 
	
		
			
				|  |  | +        .list({
 | 
	
		
			
				|  |  | +          current: this.tablePage.currentPage,
 | 
	
		
			
				|  |  | +          size: this.tablePage.pageSize,
 | 
	
		
			
				|  |  | +          orders: this.tablePage.orders,
 | 
	
		
			
				|  |  | +          ...this.searchForm,
 | 
	
		
			
				|  |  | +        })
 | 
	
		
			
				|  |  | +        .then((data) => {
 | 
	
		
			
				|  |  | +          this.dataList = data.records;
 | 
	
		
			
				|  |  | +          this.tablePage.total = data.total;
 | 
	
		
			
				|  |  | +          this.loading = false;
 | 
	
		
			
				|  |  | +        });
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 当前页
 | 
	
		
			
				|  |  | +    currentChangeHandle({ currentPage, pageSize }) {
 | 
	
		
			
				|  |  | +      this.tablePage.currentPage = currentPage;
 | 
	
		
			
				|  |  | +      this.tablePage.pageSize = pageSize;
 | 
	
		
			
				|  |  | +      this.refreshList();
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 排序
 | 
	
		
			
				|  |  | +    sortChangeHandle(obj) {
 | 
	
		
			
				|  |  | +      this.tablePage.orders = [];
 | 
	
		
			
				|  |  | +      if (obj.order != null) {
 | 
	
		
			
				|  |  | +        this.tablePage.orders = [
 | 
	
		
			
				|  |  | +          {
 | 
	
		
			
				|  |  | +            column: obj.column.sortBy || this.$utils.toLine(obj.property),
 | 
	
		
			
				|  |  | +            asc: obj.order === "asc",
 | 
	
		
			
				|  |  | +          },
 | 
	
		
			
				|  |  | +        ];
 | 
	
		
			
				|  |  | +      } else {
 | 
	
		
			
				|  |  | +        this.tablePage.orders = [{ column: "a.create_time", asc: false }];
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      this.refreshList();
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 新增
 | 
	
		
			
				|  |  | +    add() {
 | 
	
		
			
				|  |  | +      this.$refs.yzCirculationCardForm.init("add", "");
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 审批
 | 
	
		
			
				|  |  | +    examine(id) {
 | 
	
		
			
				|  |  | +      id =
 | 
	
		
			
				|  |  | +        id ||
 | 
	
		
			
				|  |  | +        this.$refs.yzCirculationCardTable.getCheckboxRecords().map((item) => {
 | 
	
		
			
				|  |  | +          return item.id;
 | 
	
		
			
				|  |  | +        })[0];
 | 
	
		
			
				|  |  | +      this.$refs.yzCardInfo.init("edit", id);
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 中止
 | 
	
		
			
				|  |  | +    suspend(row) {
 | 
	
		
			
				|  |  | +      this.$prompt(`输入中止该流程原因`, "提示", {
 | 
	
		
			
				|  |  | +        confirmButtonText: "确定",
 | 
	
		
			
				|  |  | +        cancelButtonText: "取消",
 | 
	
		
			
				|  |  | +        type: "warning",
 | 
	
		
			
				|  |  | +      }).then(({ value }) => {
 | 
	
		
			
				|  |  | +        this.loading = true;
 | 
	
		
			
				|  |  | +        row.suspend = value;
 | 
	
		
			
				|  |  | +        row.state = 2;
 | 
	
		
			
				|  |  | +        row.authorPerson = row.authorId;
 | 
	
		
			
				|  |  | +        row.proofreader = row.proofreaderId;
 | 
	
		
			
				|  |  | +        yzCirculationCardService.save(row).then((data) => {
 | 
	
		
			
				|  |  | +          this.$message.success("已中止");
 | 
	
		
			
				|  |  | +          this.refreshList();
 | 
	
		
			
				|  |  | +          this.loading = false;
 | 
	
		
			
				|  |  | +        });
 | 
	
		
			
				|  |  | +      });
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 修改
 | 
	
		
			
				|  |  | +    edit(id) {
 | 
	
		
			
				|  |  | +      id =
 | 
	
		
			
				|  |  | +        id ||
 | 
	
		
			
				|  |  | +        this.$refs.yzCirculationCardTable.getCheckboxRecords().map((item) => {
 | 
	
		
			
				|  |  | +          return item.id;
 | 
	
		
			
				|  |  | +        })[0];
 | 
	
		
			
				|  |  | +      this.$refs.yzCirculationCardForm.init("edit", id);
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 查看
 | 
	
		
			
				|  |  | +    view(id) {
 | 
	
		
			
				|  |  | +      this.$refs.yzCardInfo.init("view", id);
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 删除
 | 
	
		
			
				|  |  | +    del(id) {
 | 
	
		
			
				|  |  | +      let ids =
 | 
	
		
			
				|  |  | +        id ||
 | 
	
		
			
				|  |  | +        this.$refs.yzCirculationCardTable
 | 
	
		
			
				|  |  | +          .getCheckboxRecords()
 | 
	
		
			
				|  |  | +          .map((item) => {
 | 
	
		
			
				|  |  | +            return item.id;
 | 
	
		
			
				|  |  | +          })
 | 
	
		
			
				|  |  | +          .join(",");
 | 
	
		
			
				|  |  | +      this.$confirm(`确定删除所选项吗?`, "提示", {
 | 
	
		
			
				|  |  | +        confirmButtonText: "确定",
 | 
	
		
			
				|  |  | +        cancelButtonText: "取消",
 | 
	
		
			
				|  |  | +        type: "warning",
 | 
	
		
			
				|  |  | +      }).then(() => {
 | 
	
		
			
				|  |  | +        this.loading = true;
 | 
	
		
			
				|  |  | +        yzCirculationCardService.delete(ids).then((data) => {
 | 
	
		
			
				|  |  | +          this.$message.success(data);
 | 
	
		
			
				|  |  | +          this.refreshList();
 | 
	
		
			
				|  |  | +          this.loading = false;
 | 
	
		
			
				|  |  | +        });
 | 
	
		
			
				|  |  | +      });
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 下载模板
 | 
	
		
			
				|  |  | +    downloadTpl() {
 | 
	
		
			
				|  |  | +      this.loading = true;
 | 
	
		
			
				|  |  | +      yzCirculationCardService
 | 
	
		
			
				|  |  | +        .exportTemplate()
 | 
	
		
			
				|  |  | +        .then((data) => {
 | 
	
		
			
				|  |  | +          // 将二进制流文件写入excel表,以下为重要步骤
 | 
	
		
			
				|  |  | +          this.$utils.downloadExcel(data, "拟稿申请导入模板");
 | 
	
		
			
				|  |  | +          this.loading = false;
 | 
	
		
			
				|  |  | +        })
 | 
	
		
			
				|  |  | +        .catch(function (err) {
 | 
	
		
			
				|  |  | +          this.loading = false;
 | 
	
		
			
				|  |  | +          if (err.response) {
 | 
	
		
			
				|  |  | +            console.log(err.response);
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +        });
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 自定义服务端导入
 | 
	
		
			
				|  |  | +    importMethod({ file }) {
 | 
	
		
			
				|  |  | +      // 处理表单
 | 
	
		
			
				|  |  | +      const formBody = new FormData();
 | 
	
		
			
				|  |  | +      formBody.append("file", file);
 | 
	
		
			
				|  |  | +      this.loading = true;
 | 
	
		
			
				|  |  | +      yzCirculationCardService.importExcel(formBody).then((result) => {
 | 
	
		
			
				|  |  | +        this.$message.success({
 | 
	
		
			
				|  |  | +          dangerouslyUseHTMLString: true,
 | 
	
		
			
				|  |  | +          message: result,
 | 
	
		
			
				|  |  | +        });
 | 
	
		
			
				|  |  | +        this.refreshList();
 | 
	
		
			
				|  |  | +      });
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    // 自定义服务端导出
 | 
	
		
			
				|  |  | +    exportMethod({ options }) {
 | 
	
		
			
				|  |  | +      // 传给服务端的参数
 | 
	
		
			
				|  |  | +      const params = {
 | 
	
		
			
				|  |  | +        current: this.tablePage.currentPage,
 | 
	
		
			
				|  |  | +        size: this.tablePage.pageSize,
 | 
	
		
			
				|  |  | +        orders: this.tablePage.orders,
 | 
	
		
			
				|  |  | +        ...this.searchForm,
 | 
	
		
			
				|  |  | +        filename: options.filename,
 | 
	
		
			
				|  |  | +        sheetName: options.sheetName,
 | 
	
		
			
				|  |  | +        isHeader: options.isHeader,
 | 
	
		
			
				|  |  | +        original: options.original,
 | 
	
		
			
				|  |  | +        mode: options.mode,
 | 
	
		
			
				|  |  | +        selectIds:
 | 
	
		
			
				|  |  | +          options.mode === "selected"
 | 
	
		
			
				|  |  | +            ? options.data.map((item) => item.id)
 | 
	
		
			
				|  |  | +            : [],
 | 
	
		
			
				|  |  | +        exportFields: options.columns.map(
 | 
	
		
			
				|  |  | +          (column) => column.property && column.property.split(".")[0]
 | 
	
		
			
				|  |  | +        ),
 | 
	
		
			
				|  |  | +      };
 | 
	
		
			
				|  |  | +      this.loading = true;
 | 
	
		
			
				|  |  | +      return yzCirculationCardService
 | 
	
		
			
				|  |  | +        .exportExcel(params)
 | 
	
		
			
				|  |  | +        .then((data) => {
 | 
	
		
			
				|  |  | +          // 将二进制流文件写入excel表,以下为重要步骤
 | 
	
		
			
				|  |  | +          this.$utils.downloadExcel(data, options.filename);
 | 
	
		
			
				|  |  | +          this.loading = false;
 | 
	
		
			
				|  |  | +        })
 | 
	
		
			
				|  |  | +        .catch(function (err) {
 | 
	
		
			
				|  |  | +          if (err.response) {
 | 
	
		
			
				|  |  | +            console.log(err.response);
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +        });
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    resetSearch() {
 | 
	
		
			
				|  |  | +      this.$refs.searchForm.resetFields();
 | 
	
		
			
				|  |  | +      this.refreshList();
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +  },
 | 
	
		
			
				|  |  | +};
 | 
	
		
			
				|  |  |  </script>
 |