|
@@ -56,8 +56,10 @@
|
|
label="点位"
|
|
label="点位"
|
|
:labelCol="BaseTool.Constant.labelCol"
|
|
:labelCol="BaseTool.Constant.labelCol"
|
|
:wrapperCol="BaseTool.Constant.wrapperCol"
|
|
:wrapperCol="BaseTool.Constant.wrapperCol"
|
|
|
|
+ :help="isExisting?'该点位已存在':''"
|
|
>
|
|
>
|
|
<a-input
|
|
<a-input
|
|
|
|
+ @blur="checkPoint"
|
|
v-decorator="['description', {rules: [{required: true, message: '描述不能为空'}]}]"/>
|
|
v-decorator="['description', {rules: [{required: true, message: '描述不能为空'}]}]"/>
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</row-item>
|
|
</row-item>
|
|
@@ -286,7 +288,7 @@
|
|
|
|
|
|
<script>
|
|
<script>
|
|
import pick from 'lodash.pick'
|
|
import pick from 'lodash.pick'
|
|
-import { addRemoteOpc, updateRemoteOpc } from '@/api/remote/opc'
|
|
|
|
|
|
+import { addRemoteOpc, updateRemoteOpc, fetchRemoteOpcByPositionNum } from '@/api/remote/opc'
|
|
import SbInfoSelectModal from '@/views/sb/info/modules/SbInfoSelectModal'
|
|
import SbInfoSelectModal from '@/views/sb/info/modules/SbInfoSelectModal'
|
|
import { getSbPositionTree } from '@/api/sb/position'
|
|
import { getSbPositionTree } from '@/api/sb/position'
|
|
export default {
|
|
export default {
|
|
@@ -302,7 +304,8 @@ export default {
|
|
treeData: [],
|
|
treeData: [],
|
|
yesNoMap: {},
|
|
yesNoMap: {},
|
|
form: this.$form.createForm(this),
|
|
form: this.$form.createForm(this),
|
|
- visible: false
|
|
|
|
|
|
+ visible: false,
|
|
|
|
+ isExisting: false
|
|
// 下拉框map
|
|
// 下拉框map
|
|
}
|
|
}
|
|
},
|
|
},
|
|
@@ -410,6 +413,47 @@ export default {
|
|
} else {
|
|
} else {
|
|
this.$emit('ok')
|
|
this.$emit('ok')
|
|
}
|
|
}
|
|
|
|
+ },
|
|
|
|
+ checkPoint (e) {
|
|
|
|
+ const { form: { setFieldsValue } } = this
|
|
|
|
+ fetchRemoteOpcByPositionNum({
|
|
|
|
+ positionNum: e.target.value
|
|
|
|
+ }).then(res => {
|
|
|
|
+ if (res.data === null) {
|
|
|
|
+ this.isExisting = false
|
|
|
|
+ this.modalTitle = '添加'
|
|
|
|
+ // this.form.resetFields()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ this.modalTitle = '编辑'
|
|
|
|
+ // 日期处理
|
|
|
|
+ this.isExisting = true
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
+ setFieldsValue(Object.assign(pick(res.data, [
|
|
|
|
+ 'id',
|
|
|
|
+ 'sbId',
|
|
|
|
+ 'sbName',
|
|
|
|
+ 'positionNum',
|
|
|
|
+ 'type',
|
|
|
|
+ 'line',
|
|
|
|
+ 'description',
|
|
|
|
+ 'result',
|
|
|
|
+ 'ratio',
|
|
|
|
+ 'low',
|
|
|
|
+ 'high',
|
|
|
|
+ 'xPosition',
|
|
|
|
+ 'yPosition',
|
|
|
|
+ 'width',
|
|
|
|
+ 'height',
|
|
|
|
+ 'unit',
|
|
|
|
+ 'avFlag',
|
|
|
|
+ 'portFlag',
|
|
|
|
+ 'createdFlag',
|
|
|
|
+ 'positionFlag',
|
|
|
|
+ 'remark'
|
|
|
|
+ ])))
|
|
|
|
+ })
|
|
|
|
+ })
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|