供应统计报表
This commit is contained in:
parent
6d80c4165d
commit
5ff98b5027
|
|
@ -86,7 +86,7 @@
|
|||
<div style="margin: 40px 75px 15px; text-align: end">(公章)</div>
|
||||
<div style="text-align: end;margin-right: 50px;">{{ formatDate(exitForm.addDate) }}</div>
|
||||
<div>此证盖章有效</div>
|
||||
<div v-if="exitPermitDialogVisible" style="position: absolute; top: 126px; left: 460px">
|
||||
<div v-if="exitPermitDialogVisible" style="position: absolute; bottom: 39px; left: 460px">
|
||||
<canvas id="canvas" width="200" height="200"></canvas>
|
||||
</div>
|
||||
<!-- <div v-if="showImg" style="position: absolute; top: 126px; left: 460px">
|
||||
|
|
|
|||
|
|
@ -447,7 +447,7 @@
|
|||
<div style="margin: 40px 75px 15px; text-align: end">(公章)</div>
|
||||
<div style="text-align: end; margin-right: 50px">{{ passTime }}</div>
|
||||
<div>此证盖章有效</div>
|
||||
<div v-if="showPass" style="position: absolute; top: 126px; left: 460px">
|
||||
<div v-if="showPass" style="position: absolute; bottom: 39px; left: 460px">
|
||||
<canvas id="canvas" width="200" height="200"></canvas>
|
||||
</div>
|
||||
<!-- <div v-if="showImg" style="position: absolute; top: 126px; left: 490px">
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
<el-form-item>
|
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">查询</el-button>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||
<!-- <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport">导出</el-button> -->
|
||||
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport">导出</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
|
|
@ -88,14 +88,13 @@
|
|||
</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="备注" align="center" prop="manageType" :show-overflow-tooltip="true" />
|
||||
</el-table>
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
:page-sizes="[5, 10, 15, 20, 30]"
|
||||
:page-sizes="[10, 20, 50, 100]"
|
||||
@pagination="getList"
|
||||
/>
|
||||
|
||||
|
|
@ -116,7 +115,7 @@
|
|||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleDialogUseQuery">查询</el-button>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<!-- <el-button icon="el-icon-download" size="mini" @click="handleDialogUserExport">导出</el-button> -->
|
||||
<el-button icon="el-icon-download" size="mini" @click="handleDialogUserExport">导出</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
|
|
@ -267,9 +266,11 @@ export default {
|
|||
|
||||
const currentTime = formatTime(new Date())
|
||||
this.download(
|
||||
'material/complex_query/exportRetainedEquipmentList',
|
||||
'material/complex_query/exportStatisticsList',
|
||||
{
|
||||
...this.queryParams
|
||||
...this.queryParams,
|
||||
startTime: this.queryParams.time ? this.queryParams.time[0] : '',
|
||||
endTime: this.queryParams.time ? this.queryParams.time[1] : '',
|
||||
},
|
||||
`供应统计报表_${currentTime}.xlsx`
|
||||
)
|
||||
|
|
@ -316,7 +317,7 @@ export default {
|
|||
|
||||
const currentTime = formatTime(new Date())
|
||||
this.download(
|
||||
'material/complex_query/exportUserRecordList',
|
||||
'material/complex_query/exportAllUsDetails',
|
||||
{ ...this.dialogUseQuery },
|
||||
`供应统计报表_在用设备_${currentTime}.xlsx`
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue