| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- <template>
- <div>
- <equipment-search @search="reload" ref="search"/>
- <!-- 数据表格 -->
- <ele-pro-table
- ref="table"
- :columns="columns"
- :datasource="datasource"
- height="calc(100vh - 265px - 102px)"
- full-height="calc(100vh - 116px - 102px)"
- tool-class="ele-toolbar-form"
- cache-key="systemOrgUserTable"
- >
- <!-- 表头工具栏 -->
- <template v-slot:toolbar>
- <el-button
- size="small"
- type="primary"
- icon="el-icon-plus"
- class="ele-btn-icon"
- @click="add"
- >
- 新建
- </el-button>
- <el-button
- size="small"
- type="primary"
- icon="el-icon-download"
- class="ele-btn-icon"
- @click="exportFile"
- >
- 导出
- </el-button>
- </template>
- <!-- 编码列 -->
- <template v-slot:code="{ row }">
- <el-link type="primary" :underline="false" @click="handleView(row)">
- {{ row.code }}
- </el-link>
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="handEdit(row)"
- >
- 编辑
- </el-link>
- </template>
- </ele-pro-table>
- </div>
- </template>
- <script>
- import EquipmentSearch from './equipment-search.vue';
- import { getAssetList , downloadAsset } from '@/api/ledgerAssets';
- import dictMixins from '@/mixins/dictMixins';
- export default {
- components: { EquipmentSearch },
- mixins: [dictMixins],
- props: {
- // 类别id
- categoryId: [Number, String],
- rootId: [Number, String]
- },
- data () {
- return {
- // 表格列配置
- columns: [
- {
- columnKey: 'index',
- type: 'index',
- label: '序号',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- columnKey: 'code',
- slot: 'code',
- label: '设备编码',
- showOverflowTooltip: true,
- minWidth: 60
- },
- // {
- // prop: 'code',
- // label: '设备编码',
- // showOverflowTooltip: true,
- // minWidth: 110,
- // slot: 'code'
- // },
- {
- prop: 'name',
- label: '设备名称',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'fixCode',
- label: '固资编码',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'category.modelType',
- label: '型号',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'category.specification',
- label: '规格',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'location',
- label: '位置',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'source',
- label: '生命周期',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'networkStatus',
- label: '网络状态',
- showOverflowTooltip: true,
- minWidth: 110,
- formatter: (_row) =>
- this.getDictValue('网络状态', _row.networkStatus)
- },
- {
- columnKey: 'action',
- slot: 'action',
- label: '操作',
- minWidth: 100
- }
- ]
- };
- },
- 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 });
- },
- // 跳转到详情页
- handleView ({ id }) {
- this.$router.push({
- path: '/ledgerAssets/equipment/detail',
- query: {
- id
- }
- });
- },
- // 跳转到编辑
- handEdit ({ id }) {
- this.$router.push({
- path: '/ledgerAssets/equipment/edit',
- query: {
- id
- }
- });
- },
- // 跳转到详情页
- add () {
- this.$router.push({
- path: '/ledgerAssets/equipment/edit'
- });
- },
- exportFile(){
- let params = {
- ...this.$refs.search.where,
- exportType:1,
- categoryLevelId: this.categoryId,
- rootCategoryLevelId:this.rootId
- }
- downloadAsset(params, '设备台账导出数据');
- }
- },
- watch: {
- // 监听类别id变化
- categoryId () {
- this.reload();
- }
- }
- };
- </script>
|