1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- import { settleStyleQueryAll } from '@/api/settleStyle'
- const CustList = {
- template: `
- <a-select
- :id="id"
- :placeholder="placeholder"
- allowClear
- :value="defaultVal"
- :showSearch="true"
- @change="handleChange"
- :filter-option="filterOption">
- <a-select-option v-for="item in list" :key="item[defValKey]" :value="item[defValKey]">{{ item.name }}</a-select-option>
- </a-select>
- `,
- props: {
- value: {
- type: String,
- defatut: ''
- },
- id: {
- type: String,
- default: ''
- },
- defValKey: {
- type: String,
- default: 'settleStyleSn'
- },
- placeholder: {
- type: String,
- default: '请选择结算方式'
- }
- },
- data() {
- return {
- defaultVal: this.value||undefined,
- list: []
- };
- },
- watch: {
- value(newValue, oldValue) {
- console.log(newValue)
- this.defaultVal = newValue||undefined
- }
- },
- mounted() {
- this.getList()
- },
- methods: {
- filterOption (input, option) {
- return (
- option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
- )
- },
- handleChange(value) {
- this.defaultVal = value;
- const settleStyleName = this.list.find(item => item[this.defValKey] == value).name
- this.$emit('input', value);
- this.$emit('change', this.value, settleStyleName);
- },
- // 列表数据
- getList () {
- const _this = this
- settleStyleQueryAll().then(res => {
- if (res.status == 200) {
- _this.list = res.data || []
- } else {
- _this.list = []
- }
- })
- },
- },
- };
- export default CustList
|