123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <template>
- <el-select
- v-model="value"
- :size="size || 'medium'"
- style="width: 100%"
- filterable
- :placeholder="placeholder || ''"
- :disabled="disabled"
- :loading="selectLoading"
- @change="selectChange"
- >
- <el-option
- v-for="(item, index) in options"
- :key="item.rate + index + ''"
- :label="item.rate + '%'"
- :value="item.rate + '%'"
- :disabled="item.status === '0'"
- />
- </el-select>
- </template>
- <script>
- import asyncRequest from "@/apis/components/search-tax";
- import resToken from "@/mixins/resToken";
- export default {
- name: "SearchTax",
- mixins: [resToken],
- props: [
- "size",
- "value",
- "placeholder",
- "isDetail",
- "disabled",
- "type",
- "names",
- ],
- /**
- * 属性集合
- * @param {String} size : 组件大小 非必填
- * @param {Array} value : 选中值 必填
- * @param {String} placeholder : 提示信息 非必填
- * @param {Boolean} isDetail : 是否是详情逻辑 必填
- * @param {Boolean} disabled : 是否禁用 必填
- * @param {String} names : 选中值label 展示详情必填
- */
- /**
- * 事件集合
- * @searchChange : 选中值变化调用 抛出选中数据
- */
- data() {
- return {
- options: [],
- selectLoading: false,
- searchName: "",
- };
- },
- // watch: {
- // names: function (val, old) {
- // // console.log(val, old);
- // this.searchName = val;
- // if (this.isDetail && this.searchName) {
- // this.remoteMethod(this.searchName);
- // }
- // },
- // },
- mounted() {
- this.options = [];
- this.selectLoading = false;
- this.remoteMethod();
- },
- methods: {
- async selectChange(e) {
- // console.log(e);
- let index = this.options.findIndex((v) => v.rate + "%" === e);
- if (index !== -1) {
- let model = {
- id: this.options[index].rate,
- code: this.options[index].rate,
- label: this.options[index].rate+"%",
- };
- this.$emit("searchChange", model);
- } else {
- this.$emit("searchChange", {});
- }
- },
- async remoteMethod() {
- this.selectLoading = true;
- const { code, data, message } = await asyncRequest.list({});
- if (code === 0) {
- this.options = data;
- } else if (code >= 100 && code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(message);
- }
- this.selectLoading = false;
- },
- },
- };
- </script>
- <style>
- </style>
|