| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- <template>
- <div class="ele-body">
- <el-card shadow="never">
- <!-- 搜索表单 -->
- <user-search @search="reload" />
- <!-- 数据表格 -->
- <ele-pro-table ref="table" :columns="columns" :datasource="datasource" @selection-change="selectListChange"
- row-key="id">
- <!-- 状态列 -->
- <!-- 操作列 -->
- </ele-pro-table>
- </el-card>
- <!-- 编辑弹窗 -->
- <user-edit :visible.sync="showEdit" :data="current" @done="reload" ref="userEdit" />
- <!-- 配置工艺参数 -->
- <user-setting :visible.sync="showSetting" :data="current" ref="userSetting" />
- </div>
- </template>
- <script>
- import UserSearch from './components/user-search.vue';
- import UserEdit from './components/user-edit.vue';
- import UserSetting from './components/user-setting.vue';
- import producetask from '@/api/technology/production';
- export default {
- name: 'technologyProduction',
- components: {
- UserSearch,
- UserEdit,
- UserSetting
- },
- props: {
- tableData: {
- type: Array,
- default: () => []
- },
- isRadio: {
- type: Boolean,
- default: false
- }
- },
- data() {
- return {
- // 表格列配置
- columns: [
- {
- columnKey: 'selection',
- type: 'selection',
- width: 45,
- align: 'center',
- selectable: (row, index) => {
- return !this.tableData.some((it) => it.sourceTaskId == row.id);
- },
- reserveSelection: true,
- fixed: 'left'
- },
- {
- prop: 'code',
- label: '工序编码',
- // sortable: 'custom',
- showOverflowTooltip: true,
- align: 'center',
- minWidth: 110
- },
- {
- prop: 'name',
- label: '工序名称',
- showOverflowTooltip: true,
- align: 'center',
- minWidth: 110
- },
- {
- align: 'center',
- prop: 'controlName',
- label: '工序控制码',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'workCenterName',
- label: '所属工作中心',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110
- }
- ],
- // 表格选中数据
- selection: [],
- // 当前编辑数据
- current: null,
- // 是否显示编辑弹窗
- showEdit: false,
- // 是否显示参数弹窗
- showSetting: false,
- rowData: []
- };
- },
- methods: {
- /*配置工艺参数 */
- openSetting(row) {
- this.current = row;
- this.showSetting = true;
- },
- /* 表格数据源 */
- async datasource({ page, limit, where, order }) {
- const res = await producetask.list({
- ...where,
- ...order,
- pageNum: page,
- isDetail: true,
- size: limit
- });
- return res;
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({ page: 1, where: where });
- },
- /* 打开编辑弹窗 */
- openEdit(row) {
- this.current = row;
- this.showEdit = true;
- this.$refs.userEdit.$refs.form &&
- this.$refs.userEdit.$refs.form.clearValidate();
- },
- /* 删除 */
- remove(row) {
- const loading = this.$loading({ lock: true });
- producetask
- .delete([row.id])
- .then((msg) => {
- loading.close();
- this.$message.success('删除' + msg);
- this.reload();
- })
- .catch((e) => {
- loading.close();
- // this.$message.error(e.message);
- });
- },
- /* 批量删除 */
- removeBatch() {
- if (!this.selection.length) {
- this.$message.error('请至少选择一条数据');
- return;
- }
- this.$confirm('确定要删除选中的工序吗?', '提示', {
- type: 'warning'
- })
- .then(() => {
- const loading = this.$loading({ lock: true });
- producetask
- .delete(this.selection.map((d) => d.id))
- .then((msg) => {
- loading.close();
- this.$message.success('删除' + msg);
- this.reload();
- })
- .catch((e) => {
- loading.close();
- // this.$message.error(e.message);
- });
- })
- .catch(() => { });
- },
- // 表格某一行的单击事件
- selectListChange(selection) {
- if (this.isRadio) {
- if (Array.isArray(selection) && selection.length > 1) {//点击勾选框
- this.$refs.table.toggleRowSelection(selection[0], false);
- this.$refs.table.toggleRowSelection(selection[1], true);
- } else if (!Array.isArray(selection)) {//点击行
- this.$refs.table.toggleRowSelection(selection, false);
- this.$refs.table.toggleRowSelection(selection, true);
- } else {
- this.rowData = []
- this.rowData = Array.isArray(selection) ? selection[0] : selection;
- }
- } else {
- this.selection = selection
- }
- },
- getRowData() {
- return this.rowData
- },
- getSelection() {
- return this.selection
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- :deep(.el-checkbox__input.is-disabled) {
- .el-checkbox__inner {
- background-color: rgba(142, 128, 128, 0.584) !important;
- }
- }
- </style>
|