|
@@ -166,7 +166,7 @@
|
|
|
:wrapperCol="BaseTool.Constant.wrapperCol"
|
|
|
>
|
|
|
<a-input
|
|
|
- v-decorator="['xPosition', {initialValue:50, rules: [{required: true, message: 'x轴位置不能为空'}]}]"/>
|
|
|
+ v-decorator="['xposition', {initialValue:50, rules: [{required: true, message: 'x轴位置不能为空'}]}]"/>
|
|
|
</a-form-item>
|
|
|
</row-item>
|
|
|
<row-item>
|
|
@@ -177,7 +177,7 @@
|
|
|
:wrapperCol="BaseTool.Constant.wrapperCol"
|
|
|
>
|
|
|
<a-input
|
|
|
- v-decorator="['yPosition', {initialValue:50, rules: [{required: true, message: 'y轴位置不能为空'}]}]"/>
|
|
|
+ v-decorator="['yposition', {initialValue:50, rules: [{required: true, message: 'y轴位置不能为空'}]}]"/>
|
|
|
</a-form-item>
|
|
|
</row-item>
|
|
|
<row-item>
|
|
@@ -305,7 +305,8 @@ export default {
|
|
|
yesNoMap: {},
|
|
|
form: this.$form.createForm(this),
|
|
|
visible: false,
|
|
|
- isExisting: false
|
|
|
+ isExisting: false,
|
|
|
+ position: {}
|
|
|
// 下拉框map
|
|
|
}
|
|
|
},
|
|
@@ -319,17 +320,23 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
methods: {
|
|
|
- base (record) {
|
|
|
+ base (record, position) {
|
|
|
this.visible = true
|
|
|
const { form: { setFieldsValue } } = this
|
|
|
-
|
|
|
+ console.log(position)
|
|
|
+ this.position = position
|
|
|
// 如果是空标识添加
|
|
|
if (this.BaseTool.Object.isBlank(record.id)) {
|
|
|
this.modalTitle = '添加'
|
|
|
this.$nextTick(() => {
|
|
|
setFieldsValue(Object.assign(pick(record, [
|
|
|
'line'
|
|
|
- ])))
|
|
|
+ ]),
|
|
|
+ pick(position, [
|
|
|
+ 'xposition',
|
|
|
+ 'yposition'
|
|
|
+ ])
|
|
|
+ ))
|
|
|
})
|
|
|
return
|
|
|
}
|
|
@@ -348,8 +355,8 @@ export default {
|
|
|
'ratio',
|
|
|
'low',
|
|
|
'high',
|
|
|
- 'xPosition',
|
|
|
- 'yPosition',
|
|
|
+ 'xposition',
|
|
|
+ 'yposition',
|
|
|
'width',
|
|
|
'height',
|
|
|
'unit',
|
|
@@ -442,8 +449,6 @@ export default {
|
|
|
'ratio',
|
|
|
'low',
|
|
|
'high',
|
|
|
- 'xPosition',
|
|
|
- 'yPosition',
|
|
|
'width',
|
|
|
'height',
|
|
|
'unit',
|