|
@@ -1,21 +1,34 @@
|
|
<script setup lang="ts">
|
|
<script setup lang="ts">
|
|
-import { ref } from "vue";
|
|
|
|
|
|
+import { ref, unref, computed } from "vue";
|
|
import { PageSearch, usePageSearch } from "/@/components/PageSearch";
|
|
import { PageSearch, usePageSearch } from "/@/components/PageSearch";
|
|
import searchConfig from "./config/search.config";
|
|
import searchConfig from "./config/search.config";
|
|
import contentConfig from "./config/content.config";
|
|
import contentConfig from "./config/content.config";
|
|
import PageAuth from "/@/components/PageAuth";
|
|
import PageAuth from "/@/components/PageAuth";
|
|
-import { PageModal, usePageModal } from "/@/components/PageModal";
|
|
|
|
|
|
+import { PageModal, usePageModal } from "/@/components/PageModalShell";
|
|
import modalConfig from "./config/modal.config";
|
|
import modalConfig from "./config/modal.config";
|
|
import { PageContent } from "/@/components/PageContent";
|
|
import { PageContent } from "/@/components/PageContent";
|
|
import type { PageContentInstance } from "/@/components/PageContent";
|
|
import type { PageContentInstance } from "/@/components/PageContent";
|
|
import { useResponseHandle } from "/@/hooks/useAsync";
|
|
import { useResponseHandle } from "/@/hooks/useAsync";
|
|
import { httpDetail } from "/@/api/mobile/user";
|
|
import { httpDetail } from "/@/api/mobile/user";
|
|
|
|
+import { projectFormConfig } from "./config/_details";
|
|
|
|
+import { projectFormRules } from "./config/_rules";
|
|
|
|
+import { useRenderIcon } from "/@/components/ReIcon/src/hooks";
|
|
|
|
+
|
|
|
|
+import {
|
|
|
|
+ BasicForm,
|
|
|
|
+ transform,
|
|
|
|
+ createDefaultData
|
|
|
|
+} from "/@/components/BasicForm";
|
|
|
|
+import { Video } from "/@/components/RemoteSelect";
|
|
|
|
+import { ElForm } from "element-plus";
|
|
|
|
+// import dayjs from "dayjs";
|
|
|
|
+const { formItems } = projectFormConfig;
|
|
|
|
+const formData = ref<Record<string, any>>(createDefaultData(formItems));
|
|
const pageContentRef = ref<PageContentInstance | null>(null);
|
|
const pageContentRef = ref<PageContentInstance | null>(null);
|
|
|
|
|
|
const {
|
|
const {
|
|
pageModalRef,
|
|
pageModalRef,
|
|
handleUpdateData,
|
|
handleUpdateData,
|
|
- handleCreateData,
|
|
|
|
handlePreviewData,
|
|
handlePreviewData,
|
|
handleConfrim,
|
|
handleConfrim,
|
|
defaultInfo
|
|
defaultInfo
|
|
@@ -24,9 +37,10 @@ const {
|
|
});
|
|
});
|
|
const { handleResetClick, handleSearchClick } = usePageSearch();
|
|
const { handleResetClick, handleSearchClick } = usePageSearch();
|
|
const responseHandle = useResponseHandle();
|
|
const responseHandle = useResponseHandle();
|
|
|
|
+const Video_id = ref("");
|
|
|
|
+let columnsData = null;
|
|
async function handleDetailData(row, type) {
|
|
async function handleDetailData(row, type) {
|
|
const { id } = row;
|
|
const { id } = row;
|
|
- //
|
|
|
|
const { code, data, message } = await httpDetail({ id: id });
|
|
const { code, data, message } = await httpDetail({ id: id });
|
|
|
|
|
|
responseHandle({
|
|
responseHandle({
|
|
@@ -37,11 +51,52 @@ async function handleDetailData(row, type) {
|
|
handlePreviewData(data);
|
|
handlePreviewData(data);
|
|
}
|
|
}
|
|
if (type === "update") {
|
|
if (type === "update") {
|
|
- handleUpdateData(data);
|
|
|
|
|
|
+ formData.value = transform(formItems, data, {
|
|
|
|
+ video_ids: "video_list"
|
|
|
|
+ });
|
|
|
|
+ columnsData = data;
|
|
|
|
+ handleUpdateData(unref(formData));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
+const basicFormRef = ref<InstanceType<typeof ElForm>>(null);
|
|
|
|
+function handleCreate() {
|
|
|
|
+ basicFormRef.value.validate(isValid => {
|
|
|
|
+ if (!isValid) return;
|
|
|
|
+ const { video_ids } = formData.value;
|
|
|
|
+ const params = unref(formData);
|
|
|
|
+
|
|
|
|
+ let arr = [];
|
|
|
|
+ video_ids.forEach(e => {
|
|
|
|
+ arr.push(e.id);
|
|
|
|
+ });
|
|
|
|
+ params.video_ids = arr;
|
|
|
|
+ handleConfrim("update", params);
|
|
|
|
+ });
|
|
|
|
+}
|
|
|
|
+function videoChange(e) {
|
|
|
|
+ if (e) {
|
|
|
|
+ const { id, video_name } = e;
|
|
|
|
+ const index = formData.value.video_ids.findIndex(
|
|
|
|
+ e => e.id + "" === id + ""
|
|
|
|
+ );
|
|
|
|
+ if (index == -1) {
|
|
|
|
+ formData.value.video_ids.push({ id, video_name });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+async function handleDelete() {
|
|
|
|
+ // const { config, row, prop } = props;
|
|
|
|
+ // const { code, message } = await config.api({
|
|
|
|
+ // ...(prop ? { [prop]: row[prop] } : { id: row.id })
|
|
|
|
+ // });
|
|
|
|
+ // responseHandle({
|
|
|
|
+ // code,
|
|
|
|
+ // message,
|
|
|
|
+ // handler: () => emit("reload")
|
|
|
|
+ // });
|
|
|
|
+}
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<template>
|
|
<template>
|
|
@@ -54,15 +109,83 @@ async function handleDetailData(row, type) {
|
|
<PageContent
|
|
<PageContent
|
|
ref="pageContentRef"
|
|
ref="pageContentRef"
|
|
:content-config="contentConfig"
|
|
:content-config="contentConfig"
|
|
- @create-btn-click="handleCreateData"
|
|
|
|
@preview-btn-click="row => handleDetailData(row, 'preview')"
|
|
@preview-btn-click="row => handleDetailData(row, 'preview')"
|
|
@update-btn-click="row => handleDetailData(row, 'update')"
|
|
@update-btn-click="row => handleDetailData(row, 'update')"
|
|
/>
|
|
/>
|
|
|
|
+ <!-- <template #operation>
|
|
|
|
+ <el-popconfirm
|
|
|
|
+ title="是否确认删除"
|
|
|
|
+ placement="top"
|
|
|
|
+ @onConfirm="handleDelete"
|
|
|
|
+ >
|
|
|
|
+ <el-button
|
|
|
|
+ class="reset-margin"
|
|
|
|
+ link
|
|
|
|
+ type="primary"
|
|
|
|
+ :icon="useRenderIcon('RefreshLeft')"
|
|
|
|
+ />
|
|
|
|
+ </el-popconfirm>
|
|
|
|
+ </template>
|
|
|
|
+ </PageContent> -->
|
|
<PageModal
|
|
<PageModal
|
|
ref="pageModalRef"
|
|
ref="pageModalRef"
|
|
:modal-config="modalConfig"
|
|
:modal-config="modalConfig"
|
|
:default-info="defaultInfo"
|
|
:default-info="defaultInfo"
|
|
@confirm-btn-click="handleConfrim"
|
|
@confirm-btn-click="handleConfrim"
|
|
- />
|
|
|
|
|
|
+ >
|
|
|
|
+ <BasicForm
|
|
|
|
+ ref="basicFormRef"
|
|
|
|
+ v-bind="projectFormConfig"
|
|
|
|
+ :form-data="formData"
|
|
|
|
+ :rules="projectFormRules"
|
|
|
|
+ :disabled="false"
|
|
|
|
+ label-width="120px"
|
|
|
|
+ >
|
|
|
|
+ <template #username>
|
|
|
|
+ <div>{{ formData.username }}</div>
|
|
|
|
+ </template>
|
|
|
|
+ <template #addtime>
|
|
|
|
+ <div>{{ formData.addtime }}</div>
|
|
|
|
+ </template>
|
|
|
|
+ <template #company_title>
|
|
|
|
+ <div>{{ formData.company_title }}</div>
|
|
|
|
+ </template>
|
|
|
|
+ <template #card_title>
|
|
|
|
+ <div>{{ formData.card_title }}</div>
|
|
|
|
+ </template>
|
|
|
|
+
|
|
|
|
+ <template #video_ids>
|
|
|
|
+ <div
|
|
|
|
+ v-show="formData.video_ids && formData.video_ids.length > 0"
|
|
|
|
+ style="width: 100%; padding: 0 0 15px 0"
|
|
|
|
+ >
|
|
|
|
+ <el-tag
|
|
|
|
+ v-for="(tag, index) in formData.video_ids"
|
|
|
|
+ :key="tag.id + index"
|
|
|
|
+ class="mx-1"
|
|
|
|
+ disable-transitions
|
|
|
|
+ closable
|
|
|
|
+ size="large"
|
|
|
|
+ @close="formData.video_ids.splice(index, 1)"
|
|
|
|
+ >
|
|
|
|
+ {{ tag.video_name }}
|
|
|
|
+ </el-tag>
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 50%">
|
|
|
|
+ <Video
|
|
|
|
+ v-model="Video_id"
|
|
|
|
+ placeholder="请选择直播视频"
|
|
|
|
+ @change="videoChange"
|
|
|
|
+ />
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
|
|
+
|
|
|
|
+ <template #footer>
|
|
|
|
+ <div class="w-full flex justify-end">
|
|
|
|
+ <ElButton type="primary" @click="handleCreate">保存</ElButton>
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
|
|
+ </BasicForm>
|
|
|
|
+ </PageModal>
|
|
<!-- </PageAuth> -->
|
|
<!-- </PageAuth> -->
|
|
</template>
|
|
</template>
|