| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- <template>
- <ele-modal
- :visible.sync="visible"
- title="添加工单-选择设备"
- width="65vw"
- append-to-body
- :maxable="true"
- >
- <div class="search-box">
- 设备名称
- <el-input placeholder="请输入" v-model="name"></el-input>
- </div>
- <!-- 数据表格 -->
- <!-- :highlight-current-row="isSingle" -->
- <ele-pro-table
- ref="table"
- :columns="columns"
- @done="handleDone"
- row-key="id"
- :needPage="false"
- :initLoad="false"
- :selection.sync="selectionList"
- :datasource="datasourceShow"
- :current.sync="current"
- highlight-current-row
- height="45vh"
- @row-click="choose"
- >
- <template v-slot:select="{ row }">
- <el-radio class="radio" v-model="radio" :label="row.id"
- ><i></i
- ></el-radio>
- </template>
- </ele-pro-table>
- <div class="footer" slot="footer">
- <el-button @click="cancel">取消</el-button>
- <el-button @click="confirm" type="primary">确定</el-button>
- </div>
- </ele-modal>
- </template>
- <script>
- import { getDeviceByTaskId } from '@/api/produceOrder/index';
- export default {
- props: {
- taskId: {
- type: String,
- default: ''
- }
- },
- data() {
- return {
- visible: false,
- current: null,
- name: '',
- selectionList: [],
- memoList: [],
- datasource: [],
- isSingle: false,
- callback: null,
- radio: ''
- };
- },
- computed: {
- columns() {
- const list = [
- {
- label: '设备编码',
- prop: 'code'
- },
- {
- label: '设备名称',
- prop: 'name'
- },
- // {
- // label: '生产状态',
- // prop: 'status'
- // },
- {
- label: '未完成工单数',
- prop: 'incompleteOrderNum'
- },
- {
- label: '预计完成时间',
- prop: 'planCompleteDate'
- },
- // {
- // label: '产能',
- // prop: 'capacityNum',
- // width: 200,
- // formatter: (row) =>
- // row.capacityNum + ' ' + row.capacityUnit + '/' + row.capacityTime
- // },
- {
- label: '末单牌号',
- prop: 'lastOrderGrade'
- }
- ];
- if (!this.isSingle) {
- list.push({
- slot: 'select',
- prop: 'select',
- label: '选择',
- align: 'center'
- });
- }
- return list;
- },
- datasourceShow() {
- return this.datasource?.filter((item) => {
- if (this.name) {
- return item.name.includes(this.name);
- }
- return true;
- });
- }
- },
- methods: {
- openSingle(list = [], callback) {
- this.memoList = list;
- this.callback = callback;
- this.isSingle = true;
- this.visible = true;
- this._getList();
- },
- handleDone({ data }) {
- if (this.memoList.length) {
- this.$nextTick(() => {
- this.$refs.table.setCurrentRow(
- data.find(
- (item) =>
- item.id ==
- (this.memoList[0].deviceId ||
- this.memoList[0].sourceInstanceId)
- )
- );
- });
- }
- },
- async _getList() {
- const data = await getDeviceByTaskId({
- rootCategoryLevelId: '4',
- taskId: this.taskId
- });
- this.datasource = data || [];
- },
- confirm() {
- if (this.isSingle) {
- if (!this.current) return this.$message.error('请选择数据');
- this.callback && this.callback(this.current);
- } else {
- if (!this.current) return this.$message.error('请选择数据');
- this.$emit('success', [this.current]);
- }
- this.cancel();
- },
- cancel() {
- this.$refs.table.setCurrentRow();
- this.$refs.table.clearSelection();
- this.radio = '';
- this.current = null;
- this.visible = false;
- },
- // 单击获取id
- choose(row) {
- this.current = row;
- this.radio = row.id;
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .search-box {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- margin-bottom: 20px;
- .el-input {
- width: 220px;
- margin: 0 32px;
- }
- }
- </style>
|