| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- <!-- 降级使用列表 -->
- <template>
- <div class="ele-body">
- <el-card shadow="never" v-loading="loading">
- <order-search @search="reload" ref="searchRef"> </order-search>
- <ele-pro-table
- ref="table"
- :columns="columns"
- :datasource="datasource"
- :selection.sync="selection"
- :page-size="20"
- >
- <template v-slot:action="{ row }">
- <el-popconfirm
- class="ele-action"
- title="确定要删除吗?"
- v-if="row.status == 1"
- @confirm="remove(row)"
- >
- <template v-slot:reference>
- <el-link type="danger" :underline="false" icon="el-icon-delete">
- 删除
- </el-link>
- </template>
- </el-popconfirm>
- <el-link
- slot="reference"
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- v-if="row.status == 0"
- @click="disposeList(row)"
- >
- 处置
- </el-link>
- </template>
- </ele-pro-table>
- </el-card>
- <SalesToProduction ref="salesToProductionRef" @success="reload" />
- </div>
- </template>
- <script>
- import OrderSearch from '../components/probationalGoods-search.vue';
- import SalesToProduction from '../components/salesToProduction.vue';
- import dictMixins from '@/mixins/dictMixins';
- import {
- getDowngradeuseList,
- deleteScrapProducts
- } from '@/api/unacceptedProduct/index';
- export default {
- components: {
- OrderSearch,
- SalesToProduction
- },
- mixins: [dictMixins],
- data() {
- return {
- loading: false,
- dialogVisible: false,
- current: null,
- selection: [],
- disposeType: '',
- releasParams: {
- teamId: '',
- id: ''
- }
- };
- },
- computed: {
- // 表格列配置
- columns() {
- return [
- {
- columnKey: 'index',
- label: '序号',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- prop: 'code',
- label: '编码',
- align: 'center',
- width: 160,
- showOverflowTooltip: true
- },
- {
- prop: 'sampleCode',
- label: '样品编码',
- align: 'center',
- width: 160,
- showOverflowTooltip: true
- },
- {
- prop: 'categoryCode',
- label: '物品编码',
- align: 'center',
- width: 160,
- showOverflowTooltip: true
- },
- {
- prop: 'categoryName',
- label: '物品名称',
- align: 'center',
- width: 160,
- showOverflowTooltip: true
- },
- {
- prop: 'batchNo',
- label: '批次号',
- align: 'center',
- width: 100,
- showOverflowTooltip: true
- },
- {
- prop: 'specification',
- label: '规格',
- align: 'center',
- width: 100,
- showOverflowTooltip: true
- },
- {
- prop: 'brandNum',
- label: '牌号',
- align: 'center',
- width: 100,
- showOverflowTooltip: true
- },
- {
- prop: 'modelType',
- label: '型号',
- align: 'center',
- width: 160,
- showOverflowTooltip: true
- },
- {
- label: '机型',
- prop: 'modelKey',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- label: '颜色',
- prop: 'colorKey',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'measureQuantity',
- label: '计量数量',
- align: 'center',
- width: 100,
- showOverflowTooltip: true
- },
- {
- prop: 'measureUnit',
- label: '计量单位',
- align: 'center',
- width: 100,
- showOverflowTooltip: true
- },
- {
- prop: 'weight',
- label: '重量',
- align: 'center',
- width: 100,
- showOverflowTooltip: true
- },
- {
- prop: 'weightUnit',
- label: '重量单位',
- align: 'center',
- width: 100,
- showOverflowTooltip: true
- },
- // {
- // prop: 'disposeTime',
- // label: '处置时间',
- // align: 'center',
- // width: 180,
- // showOverflowTooltip: true
- // },
- {
- prop: 'produceRoutingName',
- label: '工艺路线',
- align: 'center'
- },
- {
- prop: 'produceTaskName',
- label: '工序',
- align: 'center'
- },
- {
- prop: 'unqualifiedReason',
- label: '原因',
- align: 'center'
- },
- {
- prop: 'createTime',
- label: '创建时间',
- align: 'center',
- width: 160
- },
- // {
- // prop: 'reviewerName',
- // label: '创建人',
- // align: 'center'
- // },
- // {
- // prop: 'depotName',
- // label: '仓库名称',
- // align: 'center'
- // },
- // {
- // prop: 'status',
- // label: '状态',
- // align: 'center',
- // formatter: (row, column, cellValue) => {
- // return cellValue == 0 ? '未入库' : cellValue == 1 ? '已入库' : '';
- // }
- // }
- // {
- // columnKey: 'action',
- // label: '操作',
- // width: 150,
- // align: 'center',
- // resizable: false,
- // fixed: 'right',
- // slot: 'action',
- // showOverflowTooltip: true
- // }
- ];
- }
- },
- created() {},
- filters: {},
- methods: {
- /* 表格数据源 */
- datasource({ page, limit, where }) {
- return getDowngradeuseList({
- pageNum: page,
- size: limit,
- ...where
- });
- },
- remove(row) {
- let ids = row ? [row.id] : this.selection.map((item) => item.id);
- deleteScrapProducts(ids).then((res) => {
- this.$message.success('删除' + res);
- this.reload();
- });
- },
- open(type) {
- let isCode = true,
- isBatchNo = true;
- this.selection.forEach((item) => {
- this.selection.forEach((item1) => {
- if (item.productCodeNew != item1.productCodeNew) {
- isCode = false;
- }
- if (item.batchNo != item1.batchNo) {
- isBatchNo = false;
- }
- });
- });
- if (!isCode) {
- this.$message.error('产品编码不一致!');
- return;
- }
- if (!isBatchNo) {
- this.$message.error('批次号不一致!');
- return;
- }
- this.$refs.salesToProductionRef.open(this.selection, type);
- },
- async disposeList(row) {
- if (row && row.id) {
- this.current = row;
- this.dialogVisible = true;
- return;
- }
- let ids = this.current
- ? [this.current.id]
- : this.selection.map((item) => item.id);
- await dispose({
- id: ids,
- disposeType: Number(this.disposeType)
- });
- this.dialogVisible = false;
- this.current = null;
- this.$message.success('处置成功!');
- this.getList();
- },
- /* 刷新表格 */
- reload(where) {
- this.$nextTick(() => {
- this.$refs.table.reload({ page: 1, where });
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped></style>
|