| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- <template>
- <div>
- <mould-search ref="searchRef" @search="reload" :isConsumer="isConsumer">
- </mould-search>
- <!-- 数据表格 -->
- <ele-pro-table
- ref="table"
- :columns="columns"
- :datasource="datasource"
- height="calc(100vh - 265px)"
- full-height="calc(100vh - 116px)"
- tool-class="ele-toolbar-form"
- cache-key="systemOrgUserTable"
- >
- <!-- 表头工具栏 -->
- <template v-slot:toolbar>
- <el-checkbox v-model="isConsumer">显示已消耗</el-checkbox>
- <el-button
- size="small"
- type="primary"
- icon="el-icon-download"
- class="ele-btn-icon"
- @click="btnExport"
- >
- 导出
- </el-button>
- </template>
- <!-- 编码列 -->
- <template v-slot:code="{ row }">
- <el-link type="primary" :underline="false" @click="details(row)">
- {{ row.code }}
- </el-link>
- </template>
- <!-- 牌号列 -->
- <template v-slot:brandNum="{ row }">
- <div>
- {{ row.category.brandNum }}
- </div>
- </template>
- <!-- 型号列 -->
- <template v-slot:modelType="{ row }">
- <div>
- {{ row.category.modelType }}
- </div>
- </template>
- <!-- 分类列 -->
- <template v-slot:categoryLevelPath="{ row }">
- <div>
- {{ row.category.categoryLevelPath }}
- </div>
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="goEdit(row)"
- >
- 编辑
- </el-link>
- </template>
- </ele-pro-table>
- </div>
- </template>
- <script>
- import MouldSearch from './mould-search.vue';
- import { getAssetList, downloadAsset } from '@/api/ledgerAssets';
- import dictMixins from '@/mixins/dictMixins';
- import axios from 'axios';
- import {
- API_BASE_URL,
- TOKEN_HEADER_NAME,
- LAYOUT_PATH
- } from '@/config/setting';
- import { download } from '@/utils/file';
- import { getToken, setToken } from '@/utils/token-util';
- export default {
- components: { MouldSearch },
- mixins: [dictMixins],
- props: {
- // 类别id
- categoryId: [Number, String],
- rootId: [Number, String]
- },
- data() {
- return {
- // 表格列配置
- columns: [
- {
- columnKey: 'selection',
- type: 'selection',
- width: 45,
- align: 'center',
- fixed: 'left'
- },
- {
- columnKey: 'index',
- type: 'index',
- label: '序号',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- prop: 'code',
- label: '编码',
- showOverflowTooltip: true,
- minWidth: 110,
- slot: 'code',
- fixed: 'left'
- },
- {
- prop: 'name',
- label: '名称',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'codeNumber',
- label: '编号',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'fixCode',
- label: '固资编码',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'brandNum',
- label: '牌号',
- showOverflowTooltip: true,
- minWidth: 110,
- slot: 'brandNum'
- },
- {
- prop: 'modelType',
- label: '型号',
- showOverflowTooltip: true,
- minWidth: 110,
- slot: 'modelType'
- },
- {
- prop: 'categoryLevelPath',
- label: '分类',
- showOverflowTooltip: true,
- minWidth: 110,
- slot: 'categoryLevelPath'
- },
- {
- prop: 'ownershipGroupName',
- label: '所在部门',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'totalSum',
- label: '生命周期',
- showOverflowTooltip: true,
- minWidth: 110,
- formatter: (_row, _column, cellValue) => {
- return this.getDictValue('生命周期', _row.position[0].type);
- }
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 100,
- align: 'left',
- resizable: false,
- slot: 'action',
- showOverflowTooltip: true,
- fixed: 'right'
- }
- ],
- isConsumer: false
- };
- },
- created() {
- this.requestDict('生命周期');
- },
- methods: {
- /* 表格数据源 */
- datasource({ page, limit, where, order }) {
- return getAssetList({
- ...where,
- ...order,
- pageNum: page,
- size: limit,
- categoryLevelId: this.categoryId,
- rootCategoryLevelId: this.rootId
- });
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({ pageNum: 1, where: where });
- },
- // 跳转到详情页
- details({ id }) {
- this.$router.push({
- path: '/ledgerAssets/mould/detail',
- query: {
- id
- }
- });
- },
- // 跳转到编辑页
- goEdit({ id }) {
- this.$router.push({
- path: '/ledgerAssets/mould/edit',
- query: {
- id
- }
- });
- },
- // 导出
- btnExport() {
- let params = {
- ...this.$refs.searchRef.where,
- exportType: 3,
- categoryLevelId: this.categoryId,
- rootCategoryLevelId: this.rootId
- };
- axios({
- url: `${API_BASE_URL}/main/asset/page/export`,
- method: 'post',
- responseType: 'blob',
- headers: {
- Authorization: getToken()
- },
- data: params
- }).then((res) => {
- download(res.data, '模具台账导出数据');
- });
- // downloadAsset(params, '模具台账导出数据');
- }
- },
- watch: {
- // 监听类别id变化
- categoryId() {
- this.reload();
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .ele-btn-icon {
- margin-left: 20px;
- }
- </style>
|