123456789101112 |
- import {conditionSharedConfig} from "@/components/mx-condition/modules/conditionSharedConfig";
- export const useConditionCollegeLocation = function (refOrGetter, options = {}) {
- return {
- ...conditionSharedConfig,
- handler: () => refOrGetter,
- key: 'location',
- title: '院校省份',
- allLabel: '', // 不需要填充`全部`
- multiple: true
- }
- }
|