import { settleStyleQueryAll } from '@/api/settleStyle' const SettleStyle = { template: ` {{ item.name }} `, props: { value: { type: String, defatut: '' }, id: { type: String, default: '' }, defValKey: { type: String, default: 'settleStyleSn' } }, data() { return { defaultVal: this.value, list: [] }; }, watch: { value(newValue, oldValue) { console.log(newValue) this.defaultVal = newValue } }, mounted() { this.getList() }, methods: { filterOption (input, option) { return ( option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0 ) }, handleChange(value) { console.log(value) this.defaultVal = value; this.$emit('change', this.value); this.$emit('input', value); }, // 列表数据 getList () { const _this = this settleStyleQueryAll().then(res => { if (res.status == 200) { _this.list = res.data || [] } else { _this.list = [] } }) }, }, }; export default SettleStyle