| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539 |
- <script lang="ts" setup>
- import { ref, watch, reactive, onMounted, h, computed, nextTick } from 'vue';
- import { message } from 'ant-design-vue';
- import { PlusOutlined } from '@ant-design/icons-vue'; // 确保导入
- import VxeUI from 'vxe-table';
- import { useRequest } from 'alova/client';
- import { getDictionaryMethod, cpMedicinesMethod } from '@/request/api/dictionary.api';
- import { branchMethod } from '@/request/api/system.api';
- import { systemCpEditMethod, getAllSupplierMethod, getConditioningSchemeDetailMethod } from '@/request/api/care.api';
- import { UploadIFile } from '@/request/api/follow.api';
- import type { SystemItemModel } from '@/model/care.model';
- import RemoteSelect from '@/libs/v-select-page/RemoteSelect.vue';
- import SearchableSelect from '@/components/SearchableSelect.vue';
- import type { UploadFile } from 'ant-design-vue/es/upload/interface';
- import type { FormInstance } from 'ant-design-vue';
- import Derivation from '@/service/Derivation.vue';
- type SystemModel = Partial<SystemItemModel>;
- const props = defineProps<{ data: SystemModel; institutionId: string | number }>();
- const formRef = ref<FormInstance>();
- const typeOptionsLoading = ref<boolean>(false);
- const typeOptions = ref<{ label: string; value: string }[]>([]);
- // 统一提升消息提示层级,避免被弹窗遮挡
- message.config({ zIndex: 5000, top: 80, maxCount: 3, duration: 2 });
- const supplierOptions = ref<{ label: string; value: string }[]>([]);
- const isRequired = ref<boolean>(true);
- // 使用单位
- const unitOptions = [
- { label: '袋', value: '袋' },
- { label: '包', value: '包' },
- { label: '贴', value: '贴' },
- { label: '次', value: '次' },
- ];
- const herbList = ref<any[]>([]);
- // 获取所有的机构
- const branch = ref<any[]>([]);
- const { loading: branchLoading } = useRequest(branchMethod).onSuccess(({ data }) => {
- const to = (data?: any[]): any[] => {
- return Array.isArray(data)
- ? data.map((item) => {
- return {
- ...item,
- value: item.id,
- key: item.id.toString(),
- children: to(item.children),
- };
- })
- : [];
- };
- branch.value = to(data);
- });
- const form = reactive<SystemItemModel>({
- institutionName: '',
- conditioningProgramType: '',
- conditioningProgramSupplierId: '',
- institutionId: '',
- cpDynamicPricingRule: [
- { min: '', max: '', priceType: '', price: '' },
- { min: '', max: '', priceType: '', price: '' },
- ],
- pricingType: '0',
- cpFixedPricingRule: {
- unitPrice: '',
- pricingUnit: '',
- convertDose: '',
- convertUnit: '',
- },
- cpPatientMatchRule: {
- sex: '', // 性别
- age: '', // 年龄
- diagnoseDiseaseNames: [], // 疾病
- diagnoseSyndromeNames: [], // 证型
- constitutionGroupNames: [], // 体质
- willillStateNames: [], // 欲病状态
- tabooCrowds: [], // 禁忌
- },
- cpMedicines: [{ name: '', dosage: '', id: '' }],
- isOffline: null,
- isDelivery: null,
- effect: '', // 功效
- photo: '', // 商品图片
- itemImgFirst: '', // 操作图片
- itemVideoFirst: '', // 操作视频
- attrFirst: '', // 特色
- attrSeventh: '', //使用注意
- attrSixth: '', // 疗程说明
- attrFifth: '', // 操作方法
- attrFourth: '', // 用法
- attrThird: '', // 制法
- status: '0', // 状态
- isForWrap: null, // 是否服务包项目
- isForInfer: null, // 是否调理方案项目
- attrEighth: '', // 购买链接
- attrNinth: '', // 跳转类型
- });
- const checkedList = ref<string[]>(['1']); // 默认选中第一个
- const onlineArr = ref<string[]>([]);
- const deliverArr = ref<string[]>([]);
- // 添加推导逻辑编辑状态
- const isDerivationModalOpen = ref(false);
- const rules = {
- name: [{ required: true, message: '请输入项目名称', trigger: 'blur' }],
- conditioningProgramType: [{ required: true, message: '请选择方案类型', trigger: 'change' }],
- institutionId: [{
- required: true,
- message: '请选择机构名称',
- trigger: 'blur',
- validator: (rule: any, value: any, callback: any) => {
- // 如果推导逻辑弹窗打开,跳过验证
- if (isDerivationModalOpen.value) {
- callback();
- return;
- }
- if (!value) {
- callback(new Error('请选择机构名称'));
- } else {
- callback();
- }
- }
- }],
- isOffline: [{ required: true, message: '请选择线下项目', trigger: 'change' }],
- isDelivery: [{ required: true, message: '请选择是否配送', trigger: 'change' }],
- };
- const isShowOnline = ref<boolean>(false);
- const isShowDelivery = ref<boolean>(false);
- const supplierArr = ref<any[]>([]);
- // 获取所有的供应商
- async function getSupplier(params: any) {
- supplierOptions.value = [];
- const res = await getAllSupplierMethod(params);
- if (res && res.length > 0) {
- supplierArr.value = res;
- supplierOptions.value = res.map((item: any) => ({
- label: item.name,
- value: item.id,
- }));
- getisOffline(params.conditioningProgramSupplierId, params.isOffline, params.isDelivery, params.conditioningProgramTypes);
- }
- }
- function getisOffline(e: any, newOffline: any, newDelivery: any, newType: any) {
- let filterSupplierArr = supplierArr.value.filter((item: any) => item.id === e);
- if (filterSupplierArr.length > 0) {
- isShowOnline.value = filterSupplierArr.every((items: any) => {
- if (newType.length > 0) {
- if (items.offlineCPTypes?.includes(newType[0]) && items.onlineCPTypes?.includes(newType[0])) {
- return true;
- } else {
- if (items.offlineCPTypes?.includes(newType[0])) {
- form.isOffline = 'Y';
- return false;
- } else if (items.onlineCPTypes?.includes(newType[0])) {
- form.isOffline = 'N';
- // 线上项目 显示配送选项
- isShowDelivery.value = true;
- return false;
- } else {
- form.isOffline = null;
- return false;
- }
- }
- } else {
- return false;
- }
- });
- if (isShowOnline.value) {
- if (newOffline) {
- onlineArr.value = [newOffline];
- if (onlineArr.value.length > 1) {
- onlineArr.value = [onlineArr.value[onlineArr.value.length - 1]];
- } else if (onlineArr.value.length === 0) {
- onlineArr.value = [];
- }
- // newOffline ==Y 线下项目 不需要配送
- if (newOffline === 'Y') {
- form.isDelivery = null;
- isShowDelivery.value = false;
- } else {
- isShowDelivery.value = true;
- }
- } else {
- isShowDelivery.value = false;
- }
- if (newDelivery) {
- deliverArr.value = [newDelivery];
- if (deliverArr.value.length > 1) {
- deliverArr.value = [deliverArr.value[deliverArr.value.length - 1]];
- } else if (deliverArr.value.length === 0) {
- deliverArr.value = [];
- }
- }
- } else {
- // 线上项目 显示配送选项
- if (newOffline === 'N') {
- isShowDelivery.value = true;
- deliverArr.value = [newDelivery];
- if (deliverArr.value.length > 1) {
- deliverArr.value = [deliverArr.value[deliverArr.value.length - 1]];
- } else if (deliverArr.value.length === 0) {
- deliverArr.value = [];
- }
- }
- }
- } else {
- isShowOnline.value = false;
- isShowDelivery.value = false;
- onlineArr.value = [];
- deliverArr.value = [];
- }
- }
- watch(
- [() => form.conditioningProgramType, () => form.institutionId, () => form.conditioningProgramSupplierId, () => form.isOffline, () => form.isDelivery],
- ([newType, newInstitutionId, newSupplierId, newOffline, newDelivery]) => {
- getSupplier({
- conditioningProgramTypes: newType ? [newType] : form.conditioningProgramType ? [form.conditioningProgramType] : [],
- collaborateDeptId: newInstitutionId ? newInstitutionId : form.institutionId ? form.institutionId : '',
- conditioningProgramSupplierId: newSupplierId ? newSupplierId : form.conditioningProgramSupplierId ? form.conditioningProgramSupplierId : '',
- isOffline: newOffline,
- isDelivery: newDelivery,
- });
- },
- { immediate: true }
- );
- function addHerb() {
- if (!form.cpMedicines) {
- form.cpMedicines = [];
- }
- form.cpMedicines.push({ name: '', dosage: '', id: '' });
- }
- function removeHerb(idx: number) {
- if (form.cpMedicines) {
- form.cpMedicines.splice(idx, 1);
- }
- }
- function cancel() {
- VxeUI.modal.close(`add-items-modal`);
- }
- function doSubmit() {
- // 手动验证方案类型
- if (!form.conditioningProgramType) {
- message.error('请选择方案类型');
- return;
- }
-
- // 自定义验证:检查项目应用是否已选择
- if (!checkedList.value || checkedList.value.length === 0) {
- message.error('请选择项目应用');
- return;
- }
- form.isForWrap = checkedList.value.includes('1') ? 'Y' : null;
- form.isForInfer = checkedList.value.includes('2') ? 'Y' : null;
- // 服务包项目相关必填
- if ((form.addType === 'itemsList' && checkedList.value.includes('1')) || form.addType === 'system') {
- // 计价规则
- if (!form.pricingType) {
- message.error('请选择计价规则');
- return;
- }
- // 计价规则相关字段校验
- if (form.pricingType === '0') {
- const { unitPrice, pricingUnit, convertDose, convertUnit } = form.cpFixedPricingRule || {};
- const allFilled = (unitPrice !== '' && unitPrice !== null && unitPrice !== undefined) && pricingUnit && (convertDose !== '' && convertDose !== null && convertDose !== undefined) && convertUnit;
- if (!allFilled) {
- message.error('请将单价、计价单位、相当于、使用单位全部填写');
- return;
- }
- form.cpDynamicPricingRule = undefined;
- } else if (form.pricingType === '1') {
- const rule1 = form.cpDynamicPricingRule[0] || {};
- const rule2 = form.cpDynamicPricingRule[1] || {};
- const allFilled1 = rule1.min && typeof rule1.priceType !== 'undefined' && rule1.price;
- const allFilled2 = rule2.max && typeof rule2.priceType !== 'undefined' && rule2.price;
- rule1.max = 0;
- rule2.min = 0;
- if (!(allFilled1 && allFilled2)) {
- message.error('请将按穴位/经络/部位的所有计价字段全部填写');
- return;
- }
- // 按穴位模式:清空一口价数据
- form.cpFixedPricingRule = undefined;
- }
- // 供应商
- // if (form.addType === 'itemsList' && checkedList.value.includes('1')) {
- // // if (!form.conditioningProgramSupplierId) {
- // // message.error('请选择供应商');
- // // return;
- // // }
- // } else
- if (form.addType === 'system') {
- form.isOffline = 'N';
- form.isDelivery = 'N';
- }
- // 线下项目
- if (isShowOnline.value && !form.isOffline) {
- message.error('请选择是否为线下项目');
- return;
- }
- // 配送
- if (isShowDelivery.value && (!deliverArr.value || deliverArr.value.length === 0)) {
- message.error('请选择配送方式');
- return;
- }
- } else if (form.addType === 'itemsList') {
- // 计价规则非必填时,做全填/全空校验
- if (form.pricingType === '0') {
- const { unitPrice, pricingUnit, convertDose, convertUnit } = form.cpFixedPricingRule || {};
- const allFilled = (unitPrice !== '' && unitPrice !== null && unitPrice !== undefined) && pricingUnit && (convertDose !== '' && convertDose !== null && convertDose !== undefined) && convertUnit;
- const allEmpty = !unitPrice && !pricingUnit && !convertDose && !convertUnit;
- if (!(allFilled || allEmpty)) {
- message.error('单价、计价单位、相当于、使用单位要么全部填写,要么全部为空');
- return;
- }
- // 一口价模式:清空按穴位数据
- if (allFilled) {
- form.cpDynamicPricingRule = undefined;
- }
- } else if (form.pricingType === '1') {
- const rule1 = form.cpDynamicPricingRule[0] || {};
- const rule2 = form.cpDynamicPricingRule[1] || {};
- const allFilled1 = rule1.min && typeof rule1.priceType !== 'undefined' && rule1.price;
- const allEmpty1 = !rule1.min && (typeof rule1.priceType === 'undefined' || rule1.priceType === '' || rule1.priceType === null) && !rule1.price;
- const allFilled2 = rule2.max && typeof rule2.priceType !== 'undefined' && rule2.price;
- const allEmpty2 = !rule2.max && (typeof rule2.priceType === 'undefined' || rule2.priceType === '' || rule2.priceType === null) && !rule2.price;
- if (!((allFilled1 && allFilled2) || (allEmpty1 && allEmpty2))) {
- message.error('按穴位/经络/部位的所有计价字段要么全部填写,要么全部为空');
- return;
- }
- // 按穴位模式:清空一口价数据
- if (allFilled1 && allFilled2) {
- form.cpFixedPricingRule = undefined;
- }
- }
- }
- // 调理方案项目相关必填
- if (form.addType === 'itemsList' && checkedList.value.includes('2')) {
- if (!hasDerivationLogic.value) {
- message.error('请设置推导逻辑');
- return;
- }
- }
- // 购买链接与跳转类型联动校验:有购买链接则必须选择跳转类型
- if (form.addType === 'itemsList') {
- const hasBuyUrl = !!(form.attrEighth && String(form.attrEighth).trim());
- if (hasBuyUrl && !form.attrNinth) {
- message.error('请选择跳转类型');
- return;
- }
- }
- formRef.value?.validate().then(() => {
- form.photo = fileList.value[0]?.response?.url || fileList.value[0]?.url || '';
- form.itemImgFirst = optionsList.value[0]?.response?.url || optionsList.value[0]?.url || '';
- // 合并推导逻辑数据到表单数据中
- if (hasDerivationLogic.value && derivationData.value.cpPatientMatchRule) {
- form.cpPatientMatchRule = { ...derivationData.value.cpPatientMatchRule };
- }
- if (props.data.isType === 'itemsList') {
- delete form.id;
- }
- submit(form);
- });
- }
- // 获取方案类型
- async function getConditioningProgramType() {
- typeOptionsLoading.value = true;
- try {
- const res = await getDictionaryMethod('condition_type');
- if (res?.length > 0) {
- typeOptions.value = res; // 直接使用返回的数据
- }
- } catch (error: any) {
- message.error(error.message);
- } finally {
- typeOptionsLoading.value = false;
- }
- }
- const jumpTypeOptionsLoading = ref(false);
- const jumpTypeOptions = ref<{ label: string; value: string }[]>([]);
- // 获取跳转类型
- async function getJumpType() {
- jumpTypeOptionsLoading.value = true;
- try {
- const res = await getDictionaryMethod('fdhb_cpbuy_type');
- if (res?.length > 0) {
- jumpTypeOptions.value = res;
- }
- } catch (error: any) {
- message.error(error.message);
- } finally {
- jumpTypeOptionsLoading.value = false;
- }
- }
- // 处理下拉框点击事件
- function handleSelectClick() {
- // 如果选项为空且不在加载中,尝试重新获取数据
- if (typeOptions.value.length === 0 && !typeOptionsLoading.value) {
- getConditioningProgramType();
- }
- }
- onMounted(async () => {
- const deptId = localStorage.getItem('deptId');
- if (props.data.addType === 'system' && deptId) {
- form.institutionId = deptId;
- }
- if (props.data.addType === 'system') {
- isRequired.value = false;
- }
- form.addType = props.data.addType;
- if (props.data.id || props.data.sourceId) {
- const res: any = await getConditioningSchemeDetailMethod(props.data);
- const checked: string[] = [];
- if (res.isForWrap === 'Y') checked.push('1');
- if (res.isForInfer === 'Y') checked.push('2');
- checkedList.value = checked.length > 0 ? checked : ['1', '2'];
- Object.assign(form, res);
- form.cpMedicines = (res.cpMedicines ?? []).map((item: any) => ({
- name: item.name || item.herbName || item.medicineName || '',
- dosage: item.dosage,
- id: item.id,
- }));
- // 处理推导逻辑数据回填
- if (res.cpPatientMatchRule) {
- derivationData.value = { cpPatientMatchRule: res.cpPatientMatchRule };
- hasDerivationLogic.value = true;
- }
- fileList.value = res.photo
- ? [
- {
- uid: '-1',
- name: 'image.png',
- status: 'done',
- url: res.photo,
- thumbUrl: res.photo,
- },
- ]
- : [];
- optionsList.value = res.itemImgFirst
- ? [
- {
- uid: '-1',
- name: 'image.png',
- status: 'done',
- url: res.itemImgFirst,
- thumbUrl: res.itemImgFirst,
- },
- ]
- : [];
- // 处理视频数据
- if (res.itemVideoFirst) {
- videoFileList.value = [
- {
- uid: '-1',
- name: '操作视频',
- status: 'done',
- url: res.itemVideoFirst,
- response: { url: res.itemVideoFirst },
- },
- ];
- }
- if (props.data.isType === 'itemsList' && props.data.sourceId) {
- form.sourceId = form.id;
- // form.institutionId = '';
- form.institutionId = props.data.institutionId;
- form.institutionName = props.data.institutionName;
- }
- }
- // 获取方案类型
- getConditioningProgramType();
- // 获取跳转类型
- getJumpType();
- });
- const emits = defineEmits<{
- submit: [data?: SystemItemModel];
- addSubmit: [data?: SystemItemModel];
- }>();
- const { loading: submitting, send: submit } = useRequest(systemCpEditMethod, {
- immediate: false,
- }).onSuccess(({ data }) => {
- emits('submit');
- });
- const visible = ref<boolean>(false);
- const setVisible = (value: boolean): void => {
- visible.value = value;
- };
- const previewImg = ref<string>('');
- const uploadProps = reactive({ showRemoveIcon: true });
- // 商品图片
- const fileList = ref<UploadFile[]>([]);
- // 操作图片
- const optionsList = ref<UploadFile[]>([]);
- // 安全挂载弹层,避免 document 不可用或被父层遮挡
- function getSafePopupContainer(triggerNode?: HTMLElement) {
- try {
- // @ts-ignore
- if (typeof document !== 'undefined' && document?.body) return document.body;
- } catch (e) {}
- return (triggerNode?.parentNode as HTMLElement) || undefined;
- }
- // 统一用 change 处理(避免 @select 改值导致面板被打断)
- function onInstitutionChange(val: string | number | undefined) {
- form.institutionId = val as any;
- }
- // 预览图片
- const handlePreview = async (file: UploadFile) => {
- previewImg.value = file.response?.url ?? file.thumbUrl;
- visible.value = true;
- };
- function customUpload(e: any) {
- UploadIFile(e.file)
- .then((res) => {
- // 调用实例的成功方法通知组件该文件上传成功
- e.onSuccess(res, e);
- })
- .catch((err) => {
- // 调用实例的失败方法通知组件该文件上传失败
- e.onError(err);
- });
- }
- // 视频上传相关
- const accept = 'video/mp4,video/avi,video/mov,video/webm';
- const maxSize = 100 * 1024 * 1024; // 100MB
- const videoUrl = ref('');
- const uploading = ref(false);
- const progress = ref(0);
- const videoFileList = ref<UploadFile[]>([]);
- // 供应商校验规则:仅在"项目应用 勾选 服务包"且"新增项目(itemsList)"时必填
- const supplierRules = computed(() => {
- const need = checkedList.value.includes('1') && form.addType === 'itemsList';
- return need ? [{
- required: true,
- message: '请选择供应商',
- trigger: 'blur',
- validator: (rule: any, value: any, callback: any) => {
- // 如果推导逻辑弹窗打开,跳过验证
- if (isDerivationModalOpen.value) {
- callback();
- return;
- }
- if (!value) {
- callback(new Error('请选择供应商'));
- } else {
- callback();
- }
- }
- }] : [];
- });
- // 上传前校验
- function beforeVideoUpload(file: File) {
- const isValidType = accept.split(',').includes(file.type);
- if (!isValidType) {
- message.error('仅支持mp4、avi、mov、webm格式视频');
- return false;
- }
- const isValidSize = file.size <= maxSize;
- if (!isValidSize) {
- message.error('视频大小不能超过100MB');
- return false;
- }
- return true;
- }
- // 视频预览
- function handleVideoPreview(file: UploadFile) {
- const videoUrl = file.response?.url || file.url || form.itemVideoFirst;
- if (videoUrl) {
- VxeUI.modal.open({
- title: '视频预览',
- width: 800,
- height: 600,
- escClosable: true,
- destroyOnClose: true,
- slots: {
- default() {
- return h(
- 'div',
- {
- style: {
- display: 'flex',
- justifyContent: 'center',
- alignItems: 'center',
- height: '100%',
- },
- },
- [
- h('video', {
- src: videoUrl,
- controls: true,
- style: {
- maxWidth: '100%',
- maxHeight: '100%',
- borderRadius: '8px',
- },
- }),
- ]
- );
- },
- },
- });
- }
- }
- // 删除视频
- function removeVideo() {
- form.itemVideoFirst = '';
- videoFileList.value = [];
- message.success('视频已删除');
- }
- // 自定义上传
- function customVideoRequest(e: any) {
- const { file, onSuccess, onError, onProgress } = e;
- // 验证文件
- if (!beforeVideoUpload(file)) {
- onError(new Error('文件验证失败'));
- return;
- }
- uploading.value = true;
- progress.value = 0;
- // 模拟上传进度
- const progressInterval = setInterval(() => {
- if (progress.value < 90) {
- progress.value += Math.random() * 10;
- onProgress({ percent: progress.value });
- }
- }, 200);
- // 上传文件
- UploadIFile(file)
- .then((res: any) => {
- clearInterval(progressInterval);
- progress.value = 100;
- onProgress({ percent: 100 });
- // 设置视频URL
- form.itemVideoFirst = res?.url || res?.data?.url;
- // 更新文件列表
- videoFileList.value = [
- {
- uid: file.uid,
- name: file.name,
- status: 'done',
- url: form.itemVideoFirst,
- response: res,
- },
- ];
- onSuccess(res, e);
- uploading.value = false;
- message.success('视频上传成功');
- })
- .catch((err) => {
- clearInterval(progressInterval);
- uploading.value = false;
- progress.value = 0;
- onError(err);
- message.error('视频上传失败,请重试');
- });
- }
- // 视频上传状态变化
- function handleVideoChange(info: any) {
- const { file, fileList } = info;
- if (file.status === 'uploading') {
- uploading.value = true;
- } else if (file.status === 'done') {
- uploading.value = false;
- videoFileList.value = fileList;
- } else if (file.status === 'error') {
- uploading.value = false;
- message.error('视频上传失败');
- }
- }
- watch(
- () => form.pricingType,
- (val) => {
- if (val === '0') {
- // 一口价模式:确保 cpFixedPricingRule 存在
- if (!form.cpFixedPricingRule) {
- form.cpFixedPricingRule = {
- unitPrice: '',
- pricingUnit: '',
- convertDose: '',
- convertUnit: '',
- };
- }
- } else if (val === '1') {
- // 按穴位模式:确保 cpDynamicPricingRule 存在
- if (!form.cpDynamicPricingRule) {
- form.cpDynamicPricingRule = [
- { min: '', max: '', priceType: '', price: '' },
- { min: '', max: '', priceType: '', price: '' },
- ];
- }
- }
- }
- );
- function onlineChange(value: any) {
- form.isOffline = value[value.length - 1];
- deliverArr.value = [];
- form.isDelivery = null;
- }
- function deliveryChange(value: any) {
- form.isDelivery = value[value.length - 1];
- }
- function getConditioningProgramSupplier(value: any) {
- onlineArr.value = [];
- deliverArr.value = [];
- form.isOffline = null;
- form.isDelivery = null;
- isShowDelivery.value = false;
- }
- // 项目应用数据
- const plainOptions = [
- { id: '1', name: '服务包项目' },
- { id: '2', name: '调理方案项目' },
- ];
- // 推导逻辑
- const hasDerivationLogic = ref(false); // 添加推导逻辑状态跟踪
- const derivationData = ref<any>({});
- // 判断推导逻辑内容是否为空
- const isDerivationEmpty = computed(() => {
- const rule = derivationData.value.cpPatientMatchRule;
- if (!rule) return true;
- // 检查所有字段都为空或未填写
- const fields = ['sex', 'age', 'diagnoseDiseaseNames', 'diagnoseSyndromeNames', 'constitutionGroupNames', 'willillStateNames', 'tabooCrowds'];
- return fields.every((key) => {
- const val = rule[key];
- if (Array.isArray(val)) return val.length === 0;
- return !val;
- });
- });
- function handleDerivation() {
- // 设置推导逻辑弹窗打开状态
- isDerivationModalOpen.value = true;
-
- VxeUI.modal.open({
- title: `推导逻辑`,
- height: 750,
- width: 750,
- escClosable: true,
- destroyOnClose: true,
- id: `derivation-modal`,
- remember: true,
- storage: true,
- onClose: () => {
- // 弹窗关闭时清除验证状态并重置状态
- isDerivationModalOpen.value = false;
- nextTick(() => {
- formRef.value?.clearValidate(['institutionId', 'conditioningProgramSupplierId']);
- });
- },
- slots: {
- default() {
- return h(Derivation, {
- data: {
- ...props.data,
- // 传递当前的推导逻辑数据
- cpPatientMatchRule: derivationData.value.cpPatientMatchRule || form.cpPatientMatchRule,
- checkedList: checkedList.value,
- },
- onSubmit: (data: any) => {
- derivationData.value = data;
- hasDerivationLogic.value = true; // 设置推导逻辑已编辑
-
- // 重置状态并清除验证状态
- isDerivationModalOpen.value = false;
- nextTick(() => {
- formRef.value?.clearValidate(['institutionId', 'conditioningProgramSupplierId']);
- });
- },
- onCancel: () => {
- // 取消时重置状态并清除验证状态
- isDerivationModalOpen.value = false;
- nextTick(() => {
- formRef.value?.clearValidate(['institutionId', 'conditioningProgramSupplierId']);
- });
- },
- });
- },
- },
- });
- }
- </script>
- <template>
- <div class="form-container">
- <a-form ref="formRef" :model="form" :rules="rules" layout="horizontal">
- <a-form-item label="项目名称:" name="name">
- <a-input v-model:value="form.name" placeholder="请输入" />
- </a-form-item>
- <a-form-item label="方案类型:" name="conditioningProgramType" style="width: 100%" required>
- <vxe-select
- v-model="form.conditioningProgramType"
- :options="typeOptions"
- placeholder="请选择方案类型"
- clearable
- filterable
- transfer
- empty-text="暂无数据"
- @focus="handleSelectClick"
- style="width: 100%"
- />
- </a-form-item>
- <a-form-item label="项目应用:" required v-if="form.addType === 'itemsList'">
- <a-checkbox-group v-model:value="checkedList">
- <a-checkbox v-for="option in plainOptions" :key="option.id" :value="option.id">
- {{ option.name }}
- </a-checkbox>
- </a-checkbox-group>
- </a-form-item>
- <a-form-item label="计价规则:" name="pricingType" :required="checkedList.includes('1')">
- <a-radio-group v-model:value="form.pricingType">
- <a-radio value="0">一口价</a-radio>
- <a-radio value="1">按穴位/经络/部位</a-radio>
- </a-radio-group>
- </a-form-item>
- <div class="price-row" v-if="form.pricingType === '0' && form.cpFixedPricingRule">
- <span class="label">单价:</span>
- <a-input v-model:value="form.cpFixedPricingRule.unitPrice" placeholder="请输入" style="width: 100px" />
- <span style="margin: 0 8px">元</span>
- <span class="label" style="margin-left: 32px">计价单位:</span>
- <a-input v-model:value="form.cpFixedPricingRule.pricingUnit" placeholder="请输入" style="width: 100px" />
- <span style="margin-left: 32px">相当于</span>
- <a-input v-model:value="form.cpFixedPricingRule.convertDose" placeholder="请输入" style="width: 100px; margin-left: 8px" />
- <vxe-select v-model="form.cpFixedPricingRule.convertUnit" :options="unitOptions" placeholder="请选择" clearable transfer style="width: 100px; margin-left: 8px" />
- <span style="color: #aaa; margin-left: 8px">(使用单位)</span>
- </div>
- <div v-if="form.pricingType === '1'" class="per-rule">
- <div class="price-row">
- <span>计价1:</span>
- <span class="flex items-center"
- >当"穴位/经络/部位" ≤
- <a-input
- placeholder="请输入"
- class="w-20 ml-2 mr-2"
- v-model:value="form.cpDynamicPricingRule[0].min"
- @change="() => (form.cpDynamicPricingRule[1].max = form.cpDynamicPricingRule[0].min)"
- />个时,</span
- >
- <vxe-select
- v-model="form.cpDynamicPricingRule[0].priceType"
- :options="[
- { label: '单价', value: 0, priceType: 0 },
- { label: '一口价', value: 1, priceType: 1 },
- ]"
- placeholder="请选择"
- clearable
- transfer
- style="width: 100px; margin: 0 4px"
- />
- <span>=</span>
- <a-input v-model:value="form.cpDynamicPricingRule[0].price" style="width: 80px; margin: 0 4px" placeholder="请输入" />
- <span>元</span>
- </div>
- <div class="price-row">
- <span>计价2:</span>
- <span class="flex items-center"
- >当"穴位/经络/部位" > <a-input placeholder="请输入" class="w-20 ml-2 mr-2" v-model:value="form.cpDynamicPricingRule[1].max" disabled />个时,</span
- >
- <vxe-select
- v-model="form.cpDynamicPricingRule[1].priceType"
- :options="[
- { label: '单价', value: 0, priceType: 0 },
- { label: '一口价', value: 1, priceType: 1 },
- ]"
- placeholder="请选择"
- clearable
- transfer
- style="width: 100px; margin: 0 4px"
- />
- <span>=</span>
- <a-input v-model:value="form.cpDynamicPricingRule[1].price" style="width: 80px; margin: 0 4px" placeholder="请输入" />
- <span>元</span>
- </div>
- </div>
- <a-form-item label="组成:">
- <div class="herb-list">
- <template v-for="(herb, idx) in form.cpMedicines" :key="herb.id">
- <div class="herb-item">
- <button class="herb-remove" v-if="form?.cpMedicines?.length > 1" @click="removeHerb(idx)" type="button">×</button>
- <!-- <RemoteSelect :load="cpMedicinesMethod" key-prop="name" v-model:value="herb.name" /> -->
- <SearchableSelect
- v-model="herb.name"
- :options="herbList"
- placeholder="请选择"
- value-key="name"
- label-key="name"
- key-key="id"
- :fetch-options="cpMedicinesMethod"
- style="width: 150px"
- :allow-custom-input="true"
- />
- <a-input v-model:value="herb.dosage" class="herb-dosage" placeholder="剂量" />
- <span>g</span>
- </div>
- </template>
- <button style="margin-left: 8px" @click="addHerb" type="button">+</button>
- </div>
- </a-form-item>
- <a-form-item label="特色:" v-if="form.addType === 'itemsList'">
- <textarea
- v-model="form.attrFirst"
- placeholder="请输入"
- rows="3"
- style="width: 100%; padding: 8px; border: 1px solid #d9d9d9; border-radius: 4px; resize: vertical; font-family: inherit"
- />
- </a-form-item>
- <a-form-item label="功效:">
- <a-input v-model:value="form.effect" placeholder="请输入" />
- </a-form-item>
- <a-form-item label="制法:" v-if="form.addType === 'itemsList'">
- <a-input v-model:value="form.attrThird" placeholder="请输入" />
- </a-form-item>
- <a-form-item label="用法:" v-if="form.addType === 'itemsList'">
- <a-input v-model:value="form.attrFourth" placeholder="请输入" />
- </a-form-item>
- <a-form-item label="操作方法:" v-if="form.addType === 'itemsList'">
- <textarea
- v-model="form.attrFifth"
- placeholder="请输入"
- rows="3"
- style="width: 100%; padding: 8px; border: 1px solid #d9d9d9; border-radius: 4px; resize: vertical; font-family: inherit"
- />
- </a-form-item>
- <div class="image-row">
- <a-form-item label="操作图片:" class="image-form-item" v-if="form.addType === 'itemsList'">
- <a-upload :showUploadList="uploadProps" v-model:file-list="optionsList" list-type="picture-card" @preview="handlePreview" :maxCount="1" :customRequest="customUpload">
- <div v-if="optionsList.length < 1">
- <PlusOutlined />
- <div style="margin-top: 8px">上传</div>
- </div>
- </a-upload>
- </a-form-item>
- <a-form-item label="商品图片:" class="image-form-item">
- <a-upload :showUploadList="uploadProps" v-model:file-list="fileList" list-type="picture-card" @preview="handlePreview" :maxCount="1" :customRequest="customUpload">
- <div v-if="fileList.length < 1">
- <PlusOutlined />
- <div style="margin-top: 8px">上传</div>
- </div>
- </a-upload>
- </a-form-item>
- </div>
- <a-form-item label="操作视频:" class="image-form-item" v-if="form.addType === 'itemsList'">
- <div class="video-upload-wrapper">
- <div class="video-upload-container">
- <a-upload
- :showUploadList="false"
- :custom-request="customVideoRequest"
- :max-count="1"
- :multiple="false"
- :before-upload="beforeVideoUpload"
- @change="handleVideoChange"
- :file-list="videoFileList"
- accept="video/mp4,video/avi,video/mov,video/webm"
- >
- <div v-if="!form.itemVideoFirst && !uploading" class="video-upload-btn">
- <PlusOutlined />
- <div style="margin-top: 8px">上传视频</div>
- <div class="video-upload-tip">mp4/avi/mov/webm<br />最大100MB</div>
- </div>
- <!-- 上传中状态 -->
- <div v-else-if="uploading" class="video-uploading">
- <div class="upload-progress">
- <a-progress :percent="progress" :show-info="false" size="small" stroke-color="#1890ff" />
- <div class="upload-text">上传中... {{ Math.round(progress) }}%</div>
- </div>
- </div>
- <!-- 视频预览 -->
- <div v-else class="video-preview-container">
- <div class="video-thumbnail">
- <video :src="form.itemVideoFirst" preload="metadata" class="video-preview" />
- <div class="video-overlay">
- <a-button
- type="primary"
- size="small"
- @click.stop="
- handleVideoPreview({
- uid: 'video-preview',
- name: '操作视频',
- url: form.itemVideoFirst,
- })
- "
- >
- 预览
- </a-button>
- <a-button danger size="small" @click.stop="removeVideo"> 删除 </a-button>
- </div>
- </div>
- <!-- <div class="video-info">
- <div class="video-name">操作视频</div>
- <div class="video-size">已上传</div>
- </div> -->
- </div>
- </a-upload>
- </div>
- </div>
- </a-form-item>
- <a-form-item label="疗程说明:" v-if="form.addType === 'itemsList'">
- <textarea
- v-model="form.attrSixth"
- placeholder="请输入"
- rows="3"
- style="width: 100%; padding: 8px; border: 1px solid #d9d9d9; border-radius: 4px; resize: vertical; font-family: inherit"
- />
- </a-form-item>
- <a-form-item label="使用注意:" v-if="form.addType === 'itemsList'">
- <textarea
- v-model="form.attrSeventh"
- placeholder="请输入"
- rows="3"
- style="width: 100%; padding: 8px; border: 1px solid #d9d9d9; border-radius: 4px; resize: vertical; font-family: inherit"
- />
- </a-form-item>
- <a-form-item label="推导逻辑:" v-if="form.addType === 'itemsList'" :required="checkedList.includes('2')">
- <button @click="handleDerivation" v-if="!hasDerivationLogic || isDerivationEmpty">编辑</button>
- <div v-else @click="handleDerivation" style="cursor: pointer">
- <div v-if="derivationData.cpPatientMatchRule" class="derivation-container">
- <div v-if="derivationData.cpPatientMatchRule.sex" class="derivation-item">
- <span class="derivation-label">性别限制:</span>
- <span class="derivation-content">{{ derivationData.cpPatientMatchRule.sex }}</span>
- </div>
- <div v-if="derivationData.cpPatientMatchRule.age" class="derivation-item">
- <span class="derivation-label">年龄限制:</span>
- <span class="derivation-content">{{ derivationData.cpPatientMatchRule.age }}</span>
- </div>
- <div v-if="derivationData.cpPatientMatchRule.diagnoseDiseaseNames && derivationData.cpPatientMatchRule.diagnoseDiseaseNames.length > 0" class="derivation-item">
- <span class="derivation-label">专病:</span>
- <span class="derivation-content">{{ derivationData.cpPatientMatchRule.diagnoseDiseaseNames.join('、') }}</span>
- </div>
- <div v-if="derivationData.cpPatientMatchRule.diagnoseSyndromeNames && derivationData.cpPatientMatchRule.diagnoseSyndromeNames.length > 0" class="derivation-item">
- <span class="derivation-label">证型:</span>
- <span class="derivation-content">{{ derivationData.cpPatientMatchRule.diagnoseSyndromeNames.join('、') }}</span>
- </div>
- <div v-if="derivationData.cpPatientMatchRule.constitutionGroupNames && derivationData.cpPatientMatchRule.constitutionGroupNames.length > 0" class="derivation-item">
- <span class="derivation-label">体质:</span>
- <span class="derivation-content">{{ derivationData.cpPatientMatchRule.constitutionGroupNames.join('、') }}</span>
- </div>
- <div v-if="derivationData.cpPatientMatchRule.willillStateNames && derivationData.cpPatientMatchRule.willillStateNames.length > 0" class="derivation-item">
- <span class="derivation-label">欲病状态:</span>
- <span class="derivation-content">{{ derivationData.cpPatientMatchRule.willillStateNames.join('、') }}</span>
- </div>
- <div v-if="derivationData.cpPatientMatchRule.tabooCrowds && derivationData.cpPatientMatchRule.tabooCrowds.length > 0" class="derivation-item">
- <span class="derivation-label">禁忌人群:</span>
- <span class="derivation-content">{{ derivationData.cpPatientMatchRule.tabooCrowds.join('、') }}</span>
- </div>
- </div>
- </div>
- </a-form-item>
- <!-- 购买链接 -->
- <a-form-item label="购买链接:" v-if="form.addType === 'itemsList'">
- <a-input v-model:value="form.attrEighth" placeholder="请输入" />
- </a-form-item>
- <!-- 跳转类型 -->
- <a-form-item label="跳转类型:" v-if="form.addType === 'itemsList'" style="width: 100%">
- <Vxe-select v-model="form.attrNinth" :options="jumpTypeOptions" placeholder="请选择" clearable transfer style="width: 100%" />
- </a-form-item>
- <!-- 机构名称 -->
- <a-form-item label="机构名称:" v-if="form?.addType === 'itemsList'" required name="institutionId">
- <a-tree-select
- :disabled="form.addType === 'itemsList' && !!form.sourceId"
- v-model:value="form.institutionId"
- style="width: 100%"
- :dropdownStyle="{ maxHeight: '400px', overflow: 'auto', zIndex: 4000 }"
- :dropdownMatchSelectWidth="false"
- :getPopupContainer="getSafePopupContainer"
- placeholder="请选择"
- allow-clear
- tree-default-expand-all
- :tree-data="branch"
- :loading="branchLoading"
- @change="onInstitutionChange"
- ></a-tree-select>
- </a-form-item>
- <a-form-item label="供应商:" name="conditioningProgramSupplierId" :rules="supplierRules" style="width: 100%">
- <a-select
- v-model:value="form.conditioningProgramSupplierId"
- :options="supplierOptions"
- placeholder="请选择"
- allow-clear
- show-search
- :getPopupContainer="getSafePopupContainer"
- :dropdownMatchSelectWidth="false"
- :dropdownStyle="{ zIndex: 5000 }"
- style="width: 100%"
- @change="getConditioningProgramSupplier"
- not-found-content="暂无数据"
- />
- </a-form-item>
- <a-form-item label="线下项目:" name="isOffline" v-if="isShowOnline" :required="checkedList.includes('1')">
- <a-checkbox-group v-model:value="onlineArr" @change="onlineChange">
- <a-checkbox value="Y">是</a-checkbox>
- <a-checkbox value="N">否</a-checkbox>
- </a-checkbox-group>
- </a-form-item>
- <a-form-item label="配送:" name="isDelivery" v-if="isShowDelivery" :required="checkedList.includes('1')">
- <a-checkbox-group v-model:value="deliverArr" @change="deliveryChange">
- <a-checkbox value="Y">支持</a-checkbox>
- <a-checkbox value="N">不支持</a-checkbox>
- </a-checkbox-group>
- </a-form-item>
- <a-form-item label="启用状态:" name="status" v-if="form.addType === 'itemsList'" required>
- <a-radio-group v-model:value="form.status">
- <a-radio value="0">启用</a-radio>
- <a-radio value="1">停用</a-radio>
- </a-radio-group>
- </a-form-item>
- <a-image
- :width="200"
- :style="{ display: 'none' }"
- :preview="{
- visible,
- onVisibleChange: setVisible,
- }"
- :src="previewImg"
- />
- <video :src="videoUrl" controls v-if="videoUrl" style="width: 100%; max-width: 500px; border-radius: 6px" preload="metadata" />
- <div class="form-actions-center">
- <a-button @click="cancel">取消</a-button>
- <a-button type="primary" style="background: #faad14; border: none" @click="doSubmit">确定</a-button>
- </div>
- </a-form>
- </div>
- </template>
- <style scoped>
- .form-container {
- width: 95%;
- margin: 0 auto;
- padding: 10px 0px 0 0;
- display: flex;
- flex-direction: column;
- /* max-height: 80vh; */
- }
- .per-rule {
- margin-bottom: 16px;
- }
- .price-row {
- display: flex;
- align-items: center;
- margin-bottom: 10px;
- }
- .label {
- font-weight: 500;
- color: #222;
- margin-right: 8px;
- }
- .herb-list {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- }
- .herb-item {
- position: relative;
- display: flex;
- align-items: center;
- margin-right: 8px;
- margin-bottom: 8px;
- padding-left: 16px;
- }
- .herb-dosage {
- width: 70px;
- font-size: 14px;
- margin-right: 10px;
- }
- .herb-remove {
- position: absolute;
- left: 0;
- top: 0;
- background: #fff;
- border: none;
- color: #ff4d4f;
- font-size: 14px;
- cursor: pointer;
- line-height: 1;
- width: 16px;
- height: 16px;
- padding: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .form-actions-center {
- display: flex;
- justify-content: center;
- gap: 16px;
- position: sticky;
- bottom: 0;
- background: #fff;
- padding: 12px 0;
- }
- .form-container .ant-form {
- display: flex;
- flex-direction: column;
- overflow: auto;
- }
- .slider-section {
- margin-bottom: 16px;
- }
- .slider-labels {
- display: flex;
- justify-content: space-between;
- width: 200px;
- margin-left: 230px;
- margin-bottom: 4px;
- font-weight: 500;
- color: #222;
- }
- .slider-row {
- display: flex;
- align-items: center;
- }
- .slider-desc {
- color: #222;
- white-space: nowrap;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .slider-value {
- margin-left: 16px;
- color: #faad14;
- font-weight: bold;
- }
- .upload-btn {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- min-height: 100px;
- border: 1px dashed #d9d9d9;
- border-radius: 6px;
- background: #fafafa;
- cursor: pointer;
- transition: border-color 0.3s;
- width: 100px;
- }
- .upload-btn:hover {
- border-color: #1890ff;
- background: #f0f7ff;
- }
- .upload-btn .anticon {
- font-size: 16px;
- color: #1890ff;
- }
- .upload-btn .upload-text {
- margin-top: 8px;
- color: #666;
- font-size: 15px;
- }
- .video-preview {
- border-radius: 6px;
- background: #000;
- width: 120px !important;
- height: 100px !important;
- }
- .video-preview video {
- border-radius: 6px;
- background: #000;
- width: 120px;
- height: 100px;
- }
- .video-preview .ant-btn-link {
- padding: 0;
- font-size: 14px;
- color: #ff4d4f;
- }
- .image-row {
- display: flex;
- gap: 32px;
- align-items: flex-start;
- margin-bottom: 16px;
- }
- .image-form-item {
- flex: 1;
- margin-bottom: 0 !important;
- }
- .image-form-item .ant-upload-picture-card-wrapper {
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- }
- .derivation-item {
- display: flex;
- align-items: center;
- min-width: 200px;
- max-width: 300px;
- padding: 6px 12px;
- background: #f5f5f5;
- border-radius: 4px;
- border: 1px solid #e8e8e8;
- }
- .derivation-label {
- font-weight: 500;
- color: #222;
- margin-right: 8px;
- white-space: nowrap;
- font-size: 13px;
- }
- .derivation-content {
- color: #555;
- font-size: 13px;
- flex: 1;
- word-break: break-all;
- }
- .derivation-container {
- display: flex;
- flex-wrap: wrap;
- gap: 16px;
- align-items: flex-start;
- }
- .video-upload-wrapper {
- display: flex;
- align-items: flex-start;
- }
- .video-upload-container {
- position: relative;
- width: 130px;
- height: 130px;
- display: flex;
- align-items: center;
- justify-content: center;
- border: 2px dashed #d9d9d9;
- border-radius: 8px;
- background: #fafafa;
- cursor: pointer;
- transition: all 0.3s ease;
- overflow: hidden;
- margin-bottom: 20px;
- }
- .video-upload-container:hover {
- border-color: #1890ff;
- background: #f0f7ff;
- transform: translateY(-1px);
- box-shadow: 0 2px 8px rgba(24, 144, 255, 0.1);
- }
- .video-upload-btn {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- padding: 16px 12px;
- text-align: center;
- }
- .video-upload-btn .anticon {
- font-size: 20px;
- color: #1890ff;
- margin-bottom: 6px;
- }
- .video-upload-tip {
- font-size: 11px;
- color: #999;
- margin-top: 6px;
- line-height: 1.3;
- }
- .video-uploading {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(255, 255, 255, 0.95);
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- z-index: 10;
- backdrop-filter: blur(2px);
- }
- .upload-progress {
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 8px;
- width: 90%;
- max-width: 160px;
- }
- .upload-text {
- font-size: 12px;
- color: #1890ff;
- font-weight: 500;
- text-align: center;
- }
- .video-preview-container {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 100%;
- padding: 10px;
- background: #fafafa;
- border-radius: 8px;
- }
- .video-thumbnail {
- position: relative;
- width: 100%;
- height: 100px;
- border-radius: 6px;
- overflow: hidden;
- background: #000;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 8px;
- }
- .video-thumbnail .video-preview {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .video-overlay {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.7);
- border-radius: 6px;
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 8px;
- opacity: 0;
- transition: opacity 0.3s ease;
- }
- .video-preview-container:hover .video-overlay {
- opacity: 1;
- }
- .video-overlay .ant-btn {
- background: rgba(255, 255, 255, 0.95);
- border: none;
- color: #333;
- font-size: 11px;
- padding: 3px 8px;
- border-radius: 4px;
- transition: all 0.3s ease;
- min-width: 40px;
- height: 28px;
- line-height: 1.2;
- display: flex;
- align-items: center;
- justify-content: center;
- white-space: nowrap;
- }
- .video-overlay .ant-btn:hover {
- background: rgba(255, 255, 255, 1);
- transform: scale(1.05);
- }
- .video-overlay .ant-btn-danger {
- background: rgba(255, 77, 79, 0.95);
- color: #fff;
- }
- .video-overlay .ant-btn-danger:hover {
- background: rgba(255, 77, 79, 1);
- }
- .video-info {
- text-align: center;
- font-size: 11px;
- color: #666;
- }
- .video-name {
- font-weight: 500;
- color: #333;
- margin-bottom: 2px;
- }
- .video-size {
- color: #999;
- font-size: 10px;
- }
- </style>
- <style>
- /* 提升 AntD Select 下拉层级,避免被弹窗/遮罩遮挡 */
- .ant-select-dropdown {
- z-index: 5000 !important;
- }
- </style>
|