123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387 |
- <script>
- import { REFER } from "./api/index";
- import deepCopy from "@gby/deep-copy";
- export default {
- name: "PopoverSelect",
- props: {
- // 参照类型 ,对应后端
- type: {
- type: String,
- require: true,
- },
- // v-model
- value: {
- type: [Array, String],
- require: true,
- },
- // 参照弹窗标题
- title: {
- type: String,
- dafault: () => {
- return "TITEL";
- },
- },
- // 作为 value 唯一标识的键名,绑定值
- valueKey: {
- type: String,
- dafault: () => {
- return "code";
- },
- },
- // 默认查询参数
- queryParams: {
- type: Function,
- default: () => {},
- },
- // 组件大小
- size: {
- type: String,
- dafault: () => {
- return "mini";
- },
- },
- // 提示
- placeholder: {
- type: String,
- dafault: () => {
- return "";
- },
- },
- // 是否可读
- readonly: {
- type: Boolean,
- dafault: () => {
- return false;
- },
- },
- // 是否禁止
- disabled: {
- type: Boolean,
- dafault: () => {
- return false;
- },
- },
- // 是否清除
- clearable: {
- type: Boolean,
- dafault: () => {
- return false;
- },
- },
- // 是否多选
- multiple: {
- type: Boolean,
- dafault: () => {
- return false;
- },
- },
- // 需映射源数据
- source: Object,
- // 参照内外映射
- dataMapping: Object,
- },
- components: {},
- data() {
- return {
- width: "50%",
- page: { pageNum: 1, pageSize: 10, total: 0 },
- visible: false,
- loading: false,
- model: {
- search: "",
- isPage: true,
- },
- data: [],
- selectData: [],
- lastSelectData: [],
- };
- },
- computed: {
- // innerValue() {
- // const { value, multiple } = this.$props;
- // return multiple ? "" : value;
- // },
- innerValue:{
- get(){
- const { value, multiple } = this.$props;
- return multiple ? "" : value;
- },
- set(val){
- this.$emit("input", val);
- }
- },
- TableColumnTemp() {
- const { type } = this.$props;
- const documents = require(`./components/${type}`).default;
- return documents.filter((document) => document.key);
- },
- },
- watch: {
- "$props.value": {
- handler: function (newProp) {
- if (!newProp) this.lastSelectData = [];
- },
- immediate: true,
- },
- },
- methods: {
- //
- emitChange(prop) {
- const { type, source, multiple } = this.$props;
- this.$emit("change", multiple ? prop : prop[0], source, type);
- },
- // open dialog
- async open() {
- this.visible = true;
- await this.useReset();
- },
- // hide dialog
- async hide() {
- this.visible = false;
- },
- // fetch list
- async fetchList(prop, page) {
- try {
- this.loading = true;
- const { pageNum, pageSize } = page;
- const { code, rows, total } = await REFER(prop, {
- pageNum,
- pageSize,
- });
- if (code === 200) {
- this.data = rows;
- this.page.total = total;
- }
- } catch (err) {
- //
- console.error(err);
- } finally {
- this.loading = false;
- }
- },
- // reset
- async useReset() {
- const { type, source, queryParams } = this.$props;
- this.model = {
- type,
- search: "",
- ...this.model,
- ...queryParams(source),
- };
- await this.fetchList(this.model, this.page);
- },
- // query
- async useQuery() {
- await this.fetchList(this.model, this.page);
- },
- // cancel
- useCancel(prop) {
- if (prop.length) {
- const { multiple } = this.$props;
- this.useUpdate(multiple ? prop : prop[0]);
- }
- this.hide();
- },
- // confirm
- useConfirm(prop) {
- const { multiple } = this.$props;
- this.useUpdate(multiple ? prop : prop[0]);
- this.emitChange(this.selectData);
- this.lastSelectData = deepCopy(this.selectData);
- this.hide();
- },
- // delete
- useDelete(prop) {
- this.selectData.splice(prop, 1);
- this.useUpdate(this.selectData);
- this.emitChange(this.selectData);
- this.lastSelectData = deepCopy(this.selectData);
- },
- // update
- useUpdate(prop) {
- const { source, multiple, valueKey, dataMapping } = this.$props;
- // update data mapping
- if (multiple) {
- const vModel = prop.map((item) => item[valueKey]);
- this.$emit("input", vModel);
- } else {
- const vModel = prop[valueKey];
- this.$emit("input", vModel);
- for (let key in dataMapping) {
- source[key] = prop[dataMapping[key]];
- }
- this.$emit("update:source", source);
- }
- },
- // row click
- onceClick(prop) {
- const { multiple } = this.$props;
- // 单选
- if (!multiple) this.$refs.multipleTable.clearSelection();
- [prop].forEach((row) => this.$refs.multipleTable.toggleRowSelection(row));
- },
- // row double click
- doubleClick(prop) {
- const { multiple } = this.$props;
- if (!multiple) this.useConfirm([prop]);
- },
- // selection change
- selectionChange(prop) {
- if (prop && prop.length) {
- this.selectData = prop;
- }
- },
- handleClear(){
- if(!this.$props.multiple){
- this.innerValue = '';
- }
- }
- },
- created() {},
- mounted() {},
- destroyed() {},
- };
- </script>
- <template>
- <div class="popover-select">
- <el-input
- v-model="innerValue"
- :size="size"
- :disabled="disabled"
- :readonly="readonly"
- :clearable="clearable"
- :placeholder="placeholder"
- @clear="handleClear"
- >
- <el-button
- :disabled="disabled"
- slot="append"
- icon="el-icon-search"
- @click="open"
- ></el-button>
- </el-input>
- <el-dialog
- :title="`${title}(${multiple ? '多选' : '单选'})`"
- :width="width"
- :visible.sync="visible"
- :close-on-click-modal="false"
- :close-on-press-escape="false"
- append-to-body
- >
- <el-form
- v-loading="loading"
- :size="size"
- :inline="true"
- :model="model"
- @submit.native.prevent
- >
- <el-form-item prop="search">
- <el-input
- v-model="model.search"
- @change="useQuery"
- @keydown.enter="useQuery"
- >
- </el-input>
- </el-form-item>
- <el-form-item>
- <el-button icon="el-icon-refresh" @click="useReset"></el-button>
- </el-form-item>
- <el-table
- ref="multipleTable"
- :data="data"
- :size="size"
- height="45vh"
- highlight-current-row
- style="width: 100%; margin-bottom: 20px"
- @row-click="onceClick"
- @row-dblclick="doubleClick"
- @selection-change="selectionChange"
- >
- <el-table-column
- v-if="multiple"
- width="55"
- type="selection"
- align="center"
- >
- </el-table-column>
- <el-table-column
- v-for="(column, index) in TableColumnTemp"
- :key="index"
- :prop="column.key"
- :label="column.title"
- :width="column.width"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- <dr-computed-input
- v-if="column.type === 'ComputedInput'"
- v-model="scope.row[column.key]"
- :source="scope.row"
- :computed="column.computed"
- :placeholder="column.placeholder"
- style="width: 100%"
- ></dr-computed-input>
- <span v-else> {{ scope.row[column.key] }}</span>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- :total="page.total"
- :page.sync="page.pageNum"
- :limit.sync="page.pageSize"
- @pagination="useQuery"
- />
- </el-form>
- <div style="margin-top: 20px; text-align: right">
- <el-button :size="size" @click="useCancel(lastSelectData)">
- 取 消
- </el-button>
- <el-button :size="size" @click="useConfirm(selectData)">
- 确 定
- </el-button>
- </div>
- </el-dialog>
- <div
- style="
- position: absolute;
- left: 10px;
- top: 50%;
- transform: translateY(-50%);
- padding-right: 30px;
- overflow: hidden;
- "
- >
- <div v-if="multiple && lastSelectData.length">
- <el-popover
- :offset="-10"
- :width="width"
- :visible-arrow="false"
- title=""
- content=""
- trigger="click"
- placement="bottom-start"
- >
- <el-tag slot="reference" :size="size" style="margin-right: 10px">
- + {{ lastSelectData.length }}
- </el-tag>
- <el-tag
- v-for="(tag, index) in lastSelectData"
- :size="size"
- hit
- closable
- :style="{
- display: 'flex',
- justifyContent: 'space-between',
- alignItems: 'center',
- margin: lastSelectData.length - 1 === index ? '0' : '0 0 5px 0',
- }"
- @close="useDelete(index)"
- >
- {{ tag.name }}
- </el-tag>
- </el-popover>
- </div>
- </div>
- </div>
- </template>
- <style scoped></style>
|