服装智能制造软件平台V3.0
http://182.92.169.222/hhxy/#/user/login
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
3.2 KiB
97 lines
3.2 KiB
<template> |
|
<a-card :bordered="false"> |
|
<a-form-model ref="form" :model="model" :rules="rules" @submit="handleSubmit"> |
|
<a-row> |
|
<a-col :md="24" :sm="24"> |
|
<a-form-model-item label="Note" prop="note" :labelCol="{ span: 7 }" :wrapperCol="{ span: 15 }"> |
|
<a-input v-model="model.note"/> |
|
</a-form-model-item> |
|
</a-col> |
|
</a-row> |
|
<a-row> |
|
<a-col :md="24" :sm="24"> |
|
<a-form-model-item label="Gender" prop="gender" :labelCol="{ span: 7 }" :wrapperCol="{ span: 15 }"> |
|
<a-select v-model="model.gender" placeholder="Select a option and change input text above" @change="handleSelectChange"> |
|
<a-select-option value="male">male</a-select-option> |
|
<a-select-option value="female">female</a-select-option> |
|
</a-select> |
|
</a-form-model-item> |
|
</a-col> |
|
</a-row> |
|
<a-row> |
|
<a-col :md="24" :sm="24"> |
|
<a-form-model-item label="Gender" prop="cascader" :labelCol="{ span: 7 }" :wrapperCol="{ span: 15 }"> |
|
<a-cascader :options="areaOptions" @change="onChange" :showSearch="{filter}" placeholder="Please select" /> |
|
</a-form-model-item> |
|
</a-col> |
|
</a-row> |
|
<a-form-model-item :wrapperCol="{ span: 12, offset: 5 }"> |
|
<a-col :md="24" :sm="24"> |
|
<a-form-model-item :wrapperCol="{ span: 12, offset: 5 }"> |
|
<a-button type="primary" htmlType="submit">Submit</a-button> |
|
</a-form-model-item> |
|
</a-col> |
|
</a-form-model-item> |
|
</a-form-model> |
|
</a-card> |
|
</template> |
|
|
|
<script> |
|
import { getAction } from '@/api/manage' |
|
export default { |
|
props: ['sex','name'], |
|
data () { |
|
return { |
|
formLayout: 'horizontal', |
|
model: {}, |
|
rules: { |
|
note: [{required: true, message: 'Please input your note!'}], |
|
gender:[{ required: true, message: 'Please select your gender!' }] |
|
}, |
|
areaOptions:[] |
|
} |
|
}, |
|
methods: { |
|
handleSubmit (e) { |
|
e.preventDefault() |
|
this.$refs.form.validate((ok, err) => { |
|
if (ok) { |
|
console.log('Received values of form: ', this.model) |
|
this.$message.success('succeed!') |
|
} |
|
}) |
|
}, |
|
handleSelectChange (value) { |
|
console.log(value) |
|
this.model.note = `Hi, ${value === 'male' ? 'man' : 'lady'}!` |
|
}, |
|
onChange(value, selectedOptions) { |
|
console.log(value, selectedOptions); |
|
}, |
|
filter(inputValue, path) { |
|
return (path.some(option => (option.label).toLowerCase().indexOf(inputValue.toLowerCase()) > -1)); |
|
}, |
|
}, |
|
created (){ |
|
console.log('============= online href common props ============= '); |
|
console.log('props sex: ',this.sex); |
|
console.log('props name: ',this.name); |
|
|
|
getAction('/mock/api/area').then((res) => { |
|
console.log("------------") |
|
console.log(res) |
|
this.areaOptions = res; |
|
}) |
|
}, |
|
watch: { |
|
$route: { |
|
immediate: true, |
|
handler() { |
|
console.log('============= online href $route props ============= '); |
|
let sex = this.$route.query.sex |
|
console.log('$route sex: ', sex); |
|
} |
|
} |
|
}, |
|
} |
|
</script> |