Commit 9f7da4b7 authored by renjintao's avatar renjintao

add

parent dee75d74
......@@ -3,7 +3,7 @@
<Row>
<Col :span="12">
<FormItem :label="l('projectId')" prop="projectId">
<InputNumber v-model="entity.projectId" style="width:240px"></InputNumber>
<InputNumber v-model="entity.projectId" :min="1" style="width:240px"></InputNumber>
</FormItem>
</Col>
<Col :span="12">
......@@ -50,7 +50,9 @@ export default {
data() {
return {
disabled: false,
entity: {},
entity: {
projectId:1
},
rules: {
name: [{ required: true, message: '必填', trigger: 'blur' }]
},
......
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