| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- <template>
- <div class="ele-body">
- <el-card shadow="never" v-loading="loading">
- <equipment-search
- @search="reload"
- :networkCounts="networkCounts"
- ref="search"
- />
- <!-- 数据表格 -->
- <ele-pro-table
- ref="table"
- :columns="columns"
- :datasource="datasource"
- height="calc(100vh - 400px)"
- tool-class="ele-toolbar-form"
- cache-key="systemOrgUserTable"
- >
- <!-- 表头工具栏 -->
- <template v-slot:toolbar="{ row }">
- <el-button
- size="small"
- type="primary"
- icon="el-icon-plus"
- class="ele-btn-icon"
- @click="open(null, 'add')"
- >
- 新建
- </el-button>
- <!-- <el-button size="small" class="ele-btn-icon" @click="handlDelete"
- >删除</el-button
- >
- <el-button
- size="small"
- @click="moveTo(checkRadioData, 'move')"
- :disabled="checkRadioData.length == 0"
- class="ele-btn-icon"
- >移动到</el-button
- > -->
- </template>
- <!-- 编码列 -->
- <template v-slot:code="{ row }">
- <el-link
- type="primary"
- :underline="false"
- @click="open(row, 'detail')"
- >
- {{ row.code }}
- </el-link>
- </template>
- <template v-slot:disposalType="{ row }">
- {{ getDictValue('设备处置方式', row.disposalType + '') }}
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- v-if="row.approvalStatus == 0"
- @click="submit(row)"
- >
- 提交
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- v-if="row.approvalStatus == 0"
- @click="open(row, 'edit')"
- >
- 编辑
- </el-link>
- <el-popconfirm
- class="ele-action"
- title="确定要删除吗?"
- @confirm="remove(row)"
- v-if="row.approvalStatus == 0"
- >
- <template v-slot:reference>
- <el-link type="danger" :underline="false" icon="el-icon-delete">
- 删除
- </el-link>
- </template>
- </el-popconfirm>
- </template>
- </ele-pro-table>
- </el-card>
- <edit ref="edit" @refresh="reload"></edit>
- </div>
- </template>
- <script>
- import { getList, remove,submit } from '@/api/equipmentDisposal/index.js';
- import dictMixins from '@/mixins/dictMixins';
- import equipmentSearch from './components/search.vue';
- import edit from './components/edit';
- export default {
- mixins: [dictMixins],
- components: {
- equipmentSearch,
- edit
- },
- data() {
- return {
- loading: false,
- // 表格列配置
- columns: [
- // {
- // width: 45,
- // type: 'selection',
- // columnKey: 'selection',
- // align: 'center'
- // },
- {
- columnKey: 'index',
- type: 'index',
- label: '序号',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- prop: 'disposalType',
- slot: 'disposalType',
- align: 'center',
- label: '处置方式',
- showOverflowTooltip: true
- },
- {
- columnKey: 'code',
- align: 'center',
- prop: 'code',
- slot: 'code',
- label: '编码',
- showOverflowTooltip: true
- },
- {
- prop: 'name',
- align: 'center',
- label: '名称',
- showOverflowTooltip: true
- },
- {
- prop: 'fixCode',
- align: 'center',
- label: '固资编码',
- showOverflowTooltip: true,
- formatter: (row, column, cellValue) => {
- return row.deviceList.map((item) => item.fixCode).toString();
- }
- },
- {
- align: 'center',
- label: '物品名称',
- showOverflowTooltip: true,
- formatter: (row, column, cellValue) => {
- return row.deviceList.map((item) => item.name).toString();
- }
- },
- {
- prop: 'createUserName',
- align: 'center',
- label: '创建人'
- },
- {
- prop: 'createTime',
- align: 'center',
- label: '创建时间'
- },
- {
- prop: 'approvalStatus',
- align: 'center',
- label: '状态',
- showOverflowTooltip: true,
- formatter: (row, column, cellValue) => {
- return cellValue == 0
- ? '草稿'
- : cellValue == 1
- ? '审核中'
- : '审核通过';
- }
- },
- {
- columnKey: 'action',
- slot: 'action',
- align: 'center',
- label: '操作',
- width: 240,
- fixed: 'right'
- }
- ],
- networkCounts: {},
- checkRadioData: [],
- QRvisible: false
- };
- },
- computed: {},
- created() {
- this.requestDict('设备处置方式');
- },
- methods: {
- /* 表格数据源 */
- datasource({ page, limit, where }) {
- console.log('------reload-------');
- // this.getNetWork(page, limit, where, order);
- return getList({
- ...where,
- pageNum: page,
- size: limit
- });
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({ pageNum: 1, where: where });
- },
- open(row, type) {
- this.$refs.edit.open(row, type);
- },
- submit(row) {
- submit({businessId:row.id}).then((res) => {
- this.$message.success('提交成功!');
- this.reload();
- });
- },
- remove(row) {
- remove([row.id]).then((res) => {
- this.$message.success('删除成功!');
- this.reload();
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- @media print {
- #printSection {
- font-size: 34px;
- span {
- font-size: 34px;
- }
- }
- }
- </style>
|