12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import { allocateTypeTreeList } from '@/api/allocateType'
- const AllocateType = {
- template: `
- <a-cascader
- :value="defaultVal"
- allowClear
- :change-on-select="changeOnSelect"
- @change="handleChange"
- :options="list"
- expand-trigger="hover"
- :placeholder="placeholder"
- :id="id"
- :fieldNames="{ label: 'name', value: 'allocateTypeSn', children: 'sonList' }"/>
- `,
- props: {
- value: {
- type: Array,
- defatut: function(){
- return []
- }
- },
- id: {
- type: String,
- default: ''
- },
- placeholder:{
- type: String,
- default: '请选择'
- },
- changeOnSelect:{
- type: Boolean,
- default: false
- }
- },
- data() {
- return {
- defaultVal: this.value,
- list: []
- };
- },
- mounted() {
- this.getProductBrand()
- },
- watch: {
- value(newValue, oldValue) {
- this.defaultVal = newValue
- }
- },
- methods: {
- filterOption (input, option) {
- return (
- option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
- )
- },
- handleChange(value,opts) {
- this.defaultVal = value;
- this.$emit('input', value);
- this.$emit('change', value,opts);
- },
- // 调拨类型
- getProductBrand () {
- allocateTypeTreeList({}).then(res => {
- if (res.status == 200) {
- this.list = res.data
- } else {
- this.list = []
- }
- })
- },
- },
- };
- export default AllocateType
|