|
@@ -287,7 +287,7 @@ export default {
|
|
|
md: 6,
|
|
|
isShow: true,
|
|
|
name: 'el-input',
|
|
|
- attributes: { placeholder: '请输入', disabled: true },
|
|
|
+ attributes: { placeholder: '请输入' },
|
|
|
formItemAttributes: {
|
|
|
label: '师傅编号',
|
|
|
prop: 'workerNumber',
|
|
@@ -1178,27 +1178,19 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
examineWait(Close_) {
|
|
|
- this.$refs.formRef.validate((valid, invalidFields, errLabels) => {
|
|
|
- if (valid) {
|
|
|
- workerManagerExamineWait(this.getPam()).then(res => {
|
|
|
- this.$message({ type: 'success', message: `保存成功!` })
|
|
|
- this.shenheClose()
|
|
|
- this.$refs.pageRef.refreshList()
|
|
|
- Close_?.()
|
|
|
- })
|
|
|
- }
|
|
|
+ workerManagerExamineWait(this.getPam()).then(res => {
|
|
|
+ this.$message({ type: 'success', message: `保存成功!` })
|
|
|
+ this.shenheClose()
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+ Close_?.()
|
|
|
})
|
|
|
},
|
|
|
workerManagerExamine(Close_) {
|
|
|
- this.$refs.formRef.validate((valid, invalidFields, errLabels) => {
|
|
|
- if (valid) {
|
|
|
- workerManagerExamine(this.getPam()).then(res => {
|
|
|
- this.$message({ type: 'success', message: `保存成功!` })
|
|
|
- this.shenheClose()
|
|
|
- this.$refs.pageRef.refreshList()
|
|
|
- Close_?.()
|
|
|
- })
|
|
|
- }
|
|
|
+ workerManagerExamine(this.getPam()).then(res => {
|
|
|
+ this.$message({ type: 'success', message: `保存成功!` })
|
|
|
+ this.shenheClose()
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+ Close_?.()
|
|
|
})
|
|
|
},
|
|
|
shenheClose() {
|