| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- <template>
- <div class="ma-content-block">
- <sa-table
- ref="crudRef"
- :options="options"
- :columns="columns"
- :searchForm="searchForm"
- >
- <!-- 搜索区 tableSearch -->
- <template #tableSearch>
- <a-col :sm="6" :xs="24">
- <a-form-item label="结算日期" field="tdate">
- <a-range-picker
- v-model="searchForm.tdate"
- :show-time="false"
- mode="date"
- class="w-full"
- />
- </a-form-item>
- </a-col>
- <a-col :sm="6" :xs="24">
- <a-form-item label="投放游戏" field="game_id">
- <game-select v-model="searchForm.game_id" multiple />
- </a-form-item>
- </a-col>
- <a-col :sm="6" :xs="24">
- <a-form-item label="媒体类型" field="media_id">
- <a-select
- v-model="searchForm.media_id"
- placeholder="请选择媒体类型"
- allow-clear
- allow-search
- >
- <a-option
- v-for="item in mediaOptions"
- :key="item.id"
- :value="item.id"
- :label="`${item.id}:${item.name}`"
- />
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :sm="6" :xs="24">
- <a-form-item label="广告账号ID" field="advertiser_id">
- <a-input
- v-model="searchForm.advertiser_id"
- placeholder="请输入广告账号ID"
- allow-clear
- />
- </a-form-item>
- </a-col>
- <a-col :sm="6" :xs="24">
- <a-form-item label="渠道ID" field="agent_id">
- <a-input
- v-model="searchForm.agent_id"
- placeholder="请输入渠道ID"
- allow-clear
- />
- </a-form-item>
- </a-col>
- <a-col :sm="6" :xs="24">
- <a-form-item label="广告位ID" field="site_id">
- <a-input
- v-model="searchForm.site_id"
- placeholder="请输入广告位ID"
- allow-clear
- />
- </a-form-item>
- </a-col>
- <a-col :sm="6" :xs="24">
- <a-form-item label="负责人" field="auth_id">
- <auth-select v-model="searchForm.auth_id" multiple />
- </a-form-item>
- </a-col>
- <a-col :sm="6" :xs="24">
- <a-form-item label="录入方式" field="add_type">
- <sa-select
- v-model="searchForm.add_type"
- dict="add_type"
- placeholder="请选择录入方式"
- allow-clear
- />
- </a-form-item>
- </a-col>
- <a-col :sm="6" :xs="24">
- <a-form-item label="备注" field="memo">
- <a-input
- v-model="searchForm.memo"
- placeholder="请输入备注"
- allow-clear
- />
- </a-form-item>
- </a-col>
- <a-col :sm="6" :xs="24">
- <a-form-item label="录入时间" field="create_time">
- <a-range-picker
- v-model="searchForm.create_time"
- :show-time="true"
- mode="date"
- />
- </a-form-item>
- </a-col>
- </template>
- <!-- Table 自定义渲染 -->
- </sa-table>
- <!-- 编辑表单 -->
- <edit-form ref="editRef" @success="refresh" />
- </div>
- </template>
- <script setup>
- import { onMounted, ref, reactive } from "vue";
- import { Message } from "@arco-design/web-vue";
- import EditForm from "./edit.vue";
- import api from "../../api/advert/mediaCost";
- import commonAdvertApi from "../../api/advert/common";
- import GameSelect from "@/components/game-select/index.vue";
- import AuthSelect from "@/components/auth-select/index.vue";
- // 引用定义
- const crudRef = ref();
- const editRef = ref();
- const mediaOptions = ref([]);
- const authOptions = ref([]);
- // 搜索表单
- const searchForm = ref({
- tdate: [],
- game_id: "",
- media_id: "",
- agent_id: "",
- site_id: "",
- auth_id: "",
- add_type: "",
- memo: "",
- create_time: [],
- });
- // SaTable 基础配置
- const options = reactive({
- api: api.getPageList,
- rowSelection: { showCheckedAll: true },
- add: {
- show: true,
- auth: ["/v1/advert/MediaCost/save"],
- func: async () => {
- editRef.value?.open();
- },
- },
- edit: {
- show: true,
- auth: ["/v1/advert/MediaCost/update"],
- func: async (record) => {
- editRef.value?.open("edit");
- editRef.value?.setFormData(record);
- },
- },
- delete: {
- show: true,
- auth: ["/v1/advert/MediaCost/destroy"],
- func: async (params) => {
- const resp = await api.destroy(params);
- if (resp.code === 200) {
- Message.success(`删除成功!`);
- crudRef.value?.refresh();
- }
- },
- },
- });
- // SaTable 列配置
- const columns = reactive([
- { title: "结算日期", dataIndex: "tdate", width: 120 },
- { title: "媒体类型", dataIndex: "media_name", width: 120 },
- { title: "广告账号ID", dataIndex: "advertiser_id", width: 120 },
- { title: "渠道ID", dataIndex: "agent_id", width: 120 },
- { title: "广告位ID", dataIndex: "site_id", width: 120 },
- { title: "广告位名称", dataIndex: "site_name", width: 120 },
- { title: "游戏", dataIndex: "game_name", width: 120 },
- { title: "原始金额", dataIndex: "ori_money", width: 120 },
- { title: "结算金额", dataIndex: "money", width: 120 },
- { title: "录入时间", dataIndex: "create_time", width: 120 },
- {
- title: "录入方式",
- dataIndex: "add_type",
- type: "dict",
- dict: "add_type",
- width: 120,
- },
- { title: "备注", dataIndex: "memo", width: 120 },
- { title: "负责人", dataIndex: "auth_name", width: 120 },
- ]);
- // 页面数据初始化
- const initPage = async () => {
- await getMediaOptions();
- await getAuthOptions();
- };
- // 获取媒体类型
- const getMediaOptions = async () => {
- const resp = await commonAdvertApi.getMediaOptionsApi();
- if (resp.code === 200) {
- mediaOptions.value = resp.data;
- }
- };
- // 获取负责人
- const getAuthOptions = async () => {
- const resp = await commonAdvertApi.getAuthOptionsApi();
- if (resp.code === 200) {
- authOptions.value = resp.data;
- }
- };
- // SaTable 数据请求
- const refresh = async () => {
- crudRef.value?.refresh();
- };
- // 页面加载完成执行
- onMounted(async () => {
- initPage();
- refresh();
- });
- </script>
- <script>
- export default { name: "v1/advert/mediaCost" };
- </script>
|