Commit 70e4f0d0 authored by “lixuyan”'s avatar “lixuyan”

修改流程中工时确认

parent bcc0d688
export default {
layoutConfigData: [
{
title: '高级组件配置',
data: [
{
key: 'readOnly',
title: '只读',
component: {
name: 'el-checkbox'
}
},
{
key: 'isProcess',
title: '是否在流程中',
component: {
name: 'el-checkbox'
}
}
]
}
],
data() {
return {
}
},
created() {
},
computed: {
},
methods: {
}
}
......@@ -42,13 +42,19 @@
<script>
import { post } from '@/utils/http'
import config from './config'
export default {
name: 'WorkAllocationEditList',
componentName: '工时分配编辑列表',
mixins: [config],
props: {
basicData: {
type: Object,
default: () => {}
},
itemObj: {
type: Object,
default: null
}
},
data() {
......@@ -91,6 +97,11 @@ export default {
'fieldName': 'joExecutePlanId',
'operator': 'EQ',
'value': this.basicData.joExecutePlanId
},
{
'fieldName': 'subTypeName',
'operator': 'EQ',
'value': 'FitOut'
}
],
'operator': 'AND'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment