Browse Source

修改添加表格操作

dev
caoyizhong 2 years ago
parent
commit
46dd4fcb9c
  1. 8
      src/components/jeecg/PEditableTable.vue
  2. 26
      src/views/activiti/form/ProcessUdgetPlanForm.vue

8
src/components/jeecg/PEditableTable.vue

@ -11,7 +11,8 @@
<a-col>
<!-- 操作按钮 -->
<div v-if="actionButton" class="action-button">
<a-button type="primary" icon="plus" @click="handleClickAdd" :disabled="disabled">新增</a-button>
<a-button type="primary" icon="plus" @click="handleClickAdd" v-if="isabled" :disabled="disabled">新增</a-button>
<a-button type="primary" icon="plus" @click="handleClickAdd" v-else :disabled="!isabled">新增</a-button>
<span class="gap"></span>
<template v-if="selectedRowIds.length>0">
<a-popconfirm
@ -692,6 +693,11 @@
type: Boolean,
default: false
},
//
isabled: {
type: Boolean,
default: false
},
//
dragSort: {
type: Boolean,

26
src/views/activiti/form/ProcessUdgetPlanForm.vue

@ -76,6 +76,7 @@
:action-button="true"
:rowNumber="true"
:disabled="hieg"
:isabled = "isabled"
:rowSelection="true"
:actionButton="true"
@descriptionFetch="descriptionFetchDatas"
@ -164,6 +165,7 @@
},
data() {
return {
isabled: true,
bigId:[],
opinion:"",
bigIdRake:[],
@ -231,6 +233,17 @@
width: '200px',
placeholder: '请输入${title}',
options: [],
// //
// validateRules: [
// {
// required: true, //
// message: '${title}' //
// },
// {
// pattern: /^[a-z|A-Z][a-z|A-Z\d_-]{0,}$/, //
// message: '${title}线'
// }
// ]
},
// {
// title: '_id',
@ -297,7 +310,8 @@
// dictCode: '',
width: '200px',
placeholder: '请输入${title}',
defaultValue: ''
defaultValue: '',
},
{
title: '系列',
@ -601,6 +615,7 @@
if(record.row.materialGroup !== '' && record.row.materialGroup !== undefined){
if( record.row.id !== undefined && record.row.id !== '' && this.isBu !== record.row.materialGroup ){
console.log("1出发了",record.row);
this.isabled = false;
this.fetchMerchandiseNews(record.row.materialGroup);
this.isBu = record.row.materialGroup;
let values = [
@ -684,6 +699,7 @@
},
]
this.$refs.processUdgetPlanMaterial.setValues(values);
this.isabled = true;
}
}
@ -803,14 +819,6 @@
// },
descriptionFetchDatas(value){ //
//
let par = {
delFlag: 0,

Loading…
Cancel
Save