供应统计报表

This commit is contained in:
bb_pan 2025-08-24 18:57:20 +08:00
parent 6d80c4165d
commit 5ff98b5027
3 changed files with 10 additions and 9 deletions

View File

@ -86,7 +86,7 @@
<div style="margin: 40px 75px 15px; text-align: end">公章</div> <div style="margin: 40px 75px 15px; text-align: end">公章</div>
<div style="text-align: end;margin-right: 50px;">{{ formatDate(exitForm.addDate) }}</div> <div style="text-align: end;margin-right: 50px;">{{ formatDate(exitForm.addDate) }}</div>
<div>此证盖章有效</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> <canvas id="canvas" width="200" height="200"></canvas>
</div> </div>
<!-- <div v-if="showImg" style="position: absolute; top: 126px; left: 460px"> <!-- <div v-if="showImg" style="position: absolute; top: 126px; left: 460px">

View File

@ -447,7 +447,7 @@
<div style="margin: 40px 75px 15px; text-align: end">公章</div> <div style="margin: 40px 75px 15px; text-align: end">公章</div>
<div style="text-align: end; margin-right: 50px">{{ passTime }}</div> <div style="text-align: end; margin-right: 50px">{{ passTime }}</div>
<div>此证盖章有效</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> <canvas id="canvas" width="200" height="200"></canvas>
</div> </div>
<!-- <div v-if="showImg" style="position: absolute; top: 126px; left: 490px"> <!-- <div v-if="showImg" style="position: absolute; top: 126px; left: 490px">

View File

@ -44,7 +44,7 @@
<el-form-item> <el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">查询</el-button> <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 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-item>
</el-form> </el-form>
@ -88,14 +88,13 @@
</span> </span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="备注" align="center" prop="manageType" :show-overflow-tooltip="true" />
</el-table> </el-table>
<pagination <pagination
v-show="total > 0" v-show="total > 0"
:total="total" :total="total"
:page.sync="queryParams.pageNum" :page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize" :limit.sync="queryParams.pageSize"
:page-sizes="[5, 10, 15, 20, 30]" :page-sizes="[10, 20, 50, 100]"
@pagination="getList" @pagination="getList"
/> />
@ -116,7 +115,7 @@
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleDialogUseQuery">查询</el-button> <el-button type="primary" icon="el-icon-search" size="mini" @click="handleDialogUseQuery">查询</el-button>
</el-form-item> </el-form-item>
<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-item>
</el-form> </el-form>
@ -267,9 +266,11 @@ export default {
const currentTime = formatTime(new Date()) const currentTime = formatTime(new Date())
this.download( 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` `供应统计报表_${currentTime}.xlsx`
) )
@ -316,7 +317,7 @@ export default {
const currentTime = formatTime(new Date()) const currentTime = formatTime(new Date())
this.download( this.download(
'material/complex_query/exportUserRecordList', 'material/complex_query/exportAllUsDetails',
{ ...this.dialogUseQuery }, { ...this.dialogUseQuery },
`供应统计报表_在用设备_${currentTime}.xlsx` `供应统计报表_在用设备_${currentTime}.xlsx`
) )