ny
昨天 282fbc6488f4e8ceb5fda759f963ee88fbf7b999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<script lang="ts" setup>
import type { TreeActionType } from '@jnpf/ui';
import type { BasicColumn } from '@jnpf/ui/vxeTable';
 
import { computed, nextTick, reactive, ref, unref, watch } from 'vue';
 
import { BasicLeftTree } from '@jnpf/ui';
import { ModalClose } from '@jnpf/ui/modal';
import { BasicVxeTable, useVxeTable } from '@jnpf/ui/vxeTable';
 
import { Modal as AModal, Form } from 'ant-design-vue';
import { pick } from 'lodash-es';
 
import { getBillRuleSelector } from '#/api/system/billRule';
import { $t } from '#/locales';
import { useBaseStore } from '#/store';
 
defineOptions({ inheritAttrs: false });
const props = defineProps({
  value: { default: '' },
  title: { type: String, default: '' },
  popupTitle: { type: String, default: '模板' },
  disabled: { type: Boolean, default: false },
  allowClear: { type: Boolean, default: true },
  size: { type: String, default: 'default' },
});
const emit = defineEmits(['update:value', 'change']);
const formItemContext = Form.useInjectFormItemContext();
const baseStore = useBaseStore();
const innerValue = ref(undefined);
const visible = ref(false);
const options = ref<any[]>([]);
 
const columns: BasicColumn[] = [
  { title: '业务名称', dataIndex: 'fullName' },
  { title: '业务编码', dataIndex: 'enCode' },
];
const searchInfo = reactive({
  categoryId: '',
});
const leftTreeRef = ref<Nullable<TreeActionType>>(null);
const treeLoading = ref(false);
const treeData = ref<any[]>([]);
const [registerTable, { getForm, getSelectRows, setSelectedRowKeys, getSelectRowKeys }] = useVxeTable({
  api: getBillRuleSelector,
  columns,
  immediate: false,
  useSearchForm: true,
  formConfig: {
    baseColProps: { span: 8 },
    schemas: [
      {
        field: 'keyword',
        label: $t('common.keyword'),
        component: 'Input',
        componentProps: {
          placeholder: $t('common.enterKeyword'),
          submitOnPressEnter: true,
        },
      },
    ],
  },
  rowKey: 'enCode',
  tableSetting: { size: false, setting: false },
  rowSelection: { type: 'radio' },
  afterFetch: (data) => {
    setTimeout(() => {
      setSelectedRowKeys(innerValue.value ? [innerValue.value] : []);
    }, 100);
    return data;
  },
});
 
const getSelectBindValue = computed(() => {
  return {
    ...pick(props, ['disabled', 'size', 'allowClear']),
    fieldNames: { label: 'fullName', value: 'id' },
    placeholder: '请选择',
    open: false,
    showSearch: false,
    showArrow: true,
  };
});
 
watch(
  () => props.value,
  (val) => {
    setValue(val);
  },
  { immediate: true },
);
 
function setValue(value) {
  innerValue.value = value || undefined;
  options.value = [{ id: innerValue.value, fullName: props.title }];
}
function onChange() {
  options.value = [];
  emit('change', '', {});
}
async function openSelectModal() {
  if (props.disabled) return;
  visible.value = true;
  treeLoading.value = true;
  const res = (await baseStore.getDictionaryData('businessType')) as any[];
  treeData.value = [{ id: '0', fullName: '业务分类', children: res }];
  searchInfo.categoryId = '';
  nextTick(() => {
    const leftTree = unref(leftTreeRef);
    leftTree?.setSelectedKeys(['0']);
    treeLoading.value = false;
    getForm().resetFields();
  });
}
function handleTreeSelect(id) {
  if (!id || searchInfo.categoryId === id) return;
  searchInfo.categoryId = id === '0' ? '' : id;
  getForm().resetFields();
}
function handleCancel() {
  visible.value = false;
}
function handleSubmit() {
  if (!getSelectRowKeys().length && !getSelectRows().length) return;
  if (!getSelectRows().length) {
    emit('update:value', innerValue.value);
    emit('change', innerValue.value, options.value[0]);
    formItemContext.onFieldChange();
    handleCancel();
    return;
  }
  const selectRow: any = getSelectRows()[0];
  options.value = getSelectRows();
  innerValue.value = selectRow.enCode;
  emit('update:value', selectRow.enCode);
  emit('change', selectRow.enCode, selectRow);
  formItemContext.onFieldChange();
  handleCancel();
}
</script>
 
<template>
  <div class="common-container">
    <a-select v-model:value="innerValue" v-bind="getSelectBindValue" :options="options" @change="onChange" @click="openSelectModal" />
    <AModal
      v-model:open="visible"
      :title="popupTitle"
      :width="1000"
      class="common-container-modal"
      @ok="handleSubmit"
      @cancel="handleCancel"
      :mask-closable="false">
      <template #closeIcon>
        <ModalClose :can-fullscreen="false" @cancel="handleCancel" />
      </template>
      <div class="jnpf-content-wrapper">
        <div class="jnpf-content-wrapper-left">
          <BasicLeftTree ref="leftTreeRef" :show-search="false" :tree-data="treeData" :loading="treeLoading" @select="handleTreeSelect" />
        </div>
        <div class="jnpf-content-wrapper-center">
          <div class="jnpf-content-wrapper-content">
            <BasicVxeTable @register="registerTable" :search-info="searchInfo" class="jnpf-sub-table" />
          </div>
        </div>
      </div>
    </AModal>
  </div>
</template>