|
@@ -0,0 +1,208 @@
|
|
|
+<template>
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
|
|
|
+ <el-col :span="24" class="one">
|
|
|
+ <cSearch :is_title="false" :is_search="true" :fields="fields" @search="toSearch">
|
|
|
+ <template #status>
|
|
|
+ <el-option v-for="i in statusList" :key="i._id" :label="i.label" :value="i.value"></el-option>
|
|
|
+ </template>
|
|
|
+ </cSearch>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="two">
|
|
|
+ <cButton @toAdd="toAdd"> </cButton>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="thr">
|
|
|
+ <cTable :fields="fields" :opera="opera" :list="list" @query="search" :total="total" @edit="toEdit" @del="toDel" @changeUse="toChangeUse"> </cTable>
|
|
|
+ </el-col>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <cDialog :dialog="dialog" @toClose="toClose">
|
|
|
+ <el-col :span="24" class="dialog_one" v-if="dialog.type == '1'">
|
|
|
+ <cForm :span="24" :fields="formFields" :form="form" :rules="{}" @save="toSave" label-width="auto">
|
|
|
+ <template #status>
|
|
|
+ <el-radio v-for="i in statusList" :key="i._id" :label="i.value">{{ i.label }}</el-radio>
|
|
|
+ </template>
|
|
|
+ <template #logo>
|
|
|
+ <cUpload model="logo" :list="form.logo" :limit="1" url="/files/usedCar/car/upload" listType="picture-card" @change="onUpload"></cUpload>
|
|
|
+ </template>
|
|
|
+ </cForm>
|
|
|
+ </el-col>
|
|
|
+ </cDialog>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup lang="ts">
|
|
|
+import { ref, Ref, onMounted, inject } from 'vue';
|
|
|
+// NeedChange
|
|
|
+import { CarStore } from '@/stores/car';
|
|
|
+import { ShopStore } from '@/stores/shop';
|
|
|
+import { DictDataStore } from '@/stores/system/dictData';
|
|
|
+import type { IQueryResult } from '@/util/types.util';
|
|
|
+import { cloneDeep, get } from 'lodash';
|
|
|
+import baseStore from '@/stores/counter';
|
|
|
+const user = ref(baseStore.state.user);
|
|
|
+onMounted(async () => {
|
|
|
+ loading.value = true;
|
|
|
+ await searchOther();
|
|
|
+ await search({ skip, limit });
|
|
|
+ loading.value = false;
|
|
|
+});
|
|
|
+
|
|
|
+const loading: Ref<any> = ref(false);
|
|
|
+// NeedChange
|
|
|
+const store = CarStore();
|
|
|
+const dictDataStore = DictDataStore();
|
|
|
+const shopStore = ShopStore();
|
|
|
+const $checkRes = inject('$checkRes') as Function;
|
|
|
+
|
|
|
+// #region 字典
|
|
|
+// NeedChange
|
|
|
+const statusList: Ref<any> = ref([]);
|
|
|
+const shopList: Ref<any> = ref([]);
|
|
|
+
|
|
|
+const searchOther = async () => {
|
|
|
+ // 是否使用
|
|
|
+ const statusResult: IQueryResult = await dictDataStore.query({ code: 'isUse' });
|
|
|
+ if ($checkRes(statusResult)) statusList.value = statusResult.data;
|
|
|
+ const shopResult: IQueryResult = await shopStore.query({ status: '0' });
|
|
|
+ if ($checkRes(shopResult)) shopList.value = shopResult.data;
|
|
|
+};
|
|
|
+// #endregion
|
|
|
+
|
|
|
+// #region 查询相关
|
|
|
+let list: Ref<any> = ref([]);
|
|
|
+let total: Ref<number> = ref(0);
|
|
|
+let skip = 0;
|
|
|
+let limit = inject('$limit') as number;
|
|
|
+let searchForm: Ref<any> = ref({});
|
|
|
+
|
|
|
+const search = async (e: { skip: number; limit: number }) => {
|
|
|
+ const info = { skip: e.skip, limit: e.limit, ...searchForm.value };
|
|
|
+ const res: IQueryResult = await store.query(info);
|
|
|
+ if (res.errcode == '0') {
|
|
|
+ list.value = res.data;
|
|
|
+ total.value = res.total;
|
|
|
+ }
|
|
|
+};
|
|
|
+const toSearch = (query) => {
|
|
|
+ searchForm.value = query;
|
|
|
+ search({ skip, limit });
|
|
|
+};
|
|
|
+const toChangeUse = async (data) => {
|
|
|
+ let status = '0';
|
|
|
+ switch (data.status) {
|
|
|
+ case '0':
|
|
|
+ status = '1';
|
|
|
+ break;
|
|
|
+ case '1':
|
|
|
+ status = '0';
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ const udata = { _id: data._id, status: status };
|
|
|
+ const res = await store.update(udata);
|
|
|
+ if ($checkRes(res, true)) {
|
|
|
+ search({ skip: 0, limit });
|
|
|
+ }
|
|
|
+};
|
|
|
+// #endregion
|
|
|
+
|
|
|
+// #region 表格及操作
|
|
|
+// NeedChange
|
|
|
+let fields: Ref<any[]> = ref([
|
|
|
+ { label: '品牌', model: 'brand', isSearch: true },
|
|
|
+ { label: '车型', model: 'series', isSearch: true },
|
|
|
+ { label: '年份', model: 'year', isSearch: true },
|
|
|
+ { label: '车款', model: 'style', isSearch: true },
|
|
|
+ { label: '价格', model: 'price' },
|
|
|
+ { label: '车龄', model: 'age' },
|
|
|
+ { label: '状态', model: 'status', format: (i) => getDict(i, 'status'), isSearch: true, type: 'select' }
|
|
|
+]);
|
|
|
+// 操作
|
|
|
+let opera: Ref<any[]> = ref([
|
|
|
+ { label: '修改', method: 'edit' },
|
|
|
+ { label: '禁用', method: 'changeUse', type: 'warning', confirm: true, display: (i) => i.status === '0' },
|
|
|
+ { label: '使用', method: 'changeUse', type: 'success', confirm: true, display: (i) => i.status === '1' },
|
|
|
+ { label: '删除', method: 'del', confirm: true, type: 'danger' }
|
|
|
+]);
|
|
|
+
|
|
|
+const getDict = (data, model) => {
|
|
|
+ let list;
|
|
|
+ switch (model) {
|
|
|
+ case 'status':
|
|
|
+ list = statusList.value;
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ if (!list) return;
|
|
|
+ const res = list.find((f) => f.value == data);
|
|
|
+ return get(res, 'label');
|
|
|
+};
|
|
|
+const toAdd = () => {
|
|
|
+ formFields.value = formFieldsForCreate;
|
|
|
+ // 所属人是自己,需要把自己的id放进去
|
|
|
+ form.value = { ...cloneDeep(defaultForm) };
|
|
|
+ dialog.value.show = true;
|
|
|
+};
|
|
|
+const toEdit = async (data) => {
|
|
|
+ formFields.value = formFieldsForUpdate;
|
|
|
+ form.value = { ...data };
|
|
|
+ dialog.value.show = true;
|
|
|
+};
|
|
|
+// #endregion
|
|
|
+
|
|
|
+// #region 常规接口
|
|
|
+const toSave = async () => {
|
|
|
+ const data = cloneDeep(form.value);
|
|
|
+ let res: IQueryResult;
|
|
|
+ if (get(data, '_id')) res = await store.update(data);
|
|
|
+ else res = await store.create(data);
|
|
|
+ if ($checkRes(res, true)) {
|
|
|
+ search({ skip: 0, limit });
|
|
|
+ toClose();
|
|
|
+ }
|
|
|
+};
|
|
|
+const toDel = async (data) => {
|
|
|
+ const res = await store.del(data._id);
|
|
|
+ if ($checkRes(res, true)) {
|
|
|
+ search({ skip: 0, limit });
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+// #endregion
|
|
|
+
|
|
|
+// #region 表单及操作
|
|
|
+// NeedChange
|
|
|
+const defaultForm = { status: '0', logo: [] };
|
|
|
+const formFields: Ref<any> = ref();
|
|
|
+const dialog: Ref<any> = ref({ title: '数据信息', show: false, type: '1' });
|
|
|
+const form: Ref<any> = ref({ file: [] });
|
|
|
+const formFieldsForCreate = [
|
|
|
+ { label: '店铺名称', model: 'name' },
|
|
|
+ { label: '店铺地址', model: 'address' },
|
|
|
+ { label: '联系电话', model: 'tel' },
|
|
|
+ { label: '联系人', model: 'contacts' },
|
|
|
+ { label: 'logo', model: 'logo', custom: true }
|
|
|
+];
|
|
|
+const formFieldsForUpdate = [
|
|
|
+ { label: '店铺名称', model: 'name' },
|
|
|
+ { label: '店铺地址', model: 'address' },
|
|
|
+ { label: '联系电话', model: 'tel' },
|
|
|
+ { label: '联系人', model: 'contacts' },
|
|
|
+ { label: 'logo', model: 'logo', custom: true }
|
|
|
+];
|
|
|
+// 关闭弹框
|
|
|
+const toClose = () => {
|
|
|
+ form.value = {};
|
|
|
+ dialog.value.show = false;
|
|
|
+};
|
|
|
+const onUpload = (e: { model: string; value: Array<[]> }) => {
|
|
|
+ console.log(e);
|
|
|
+ const { model, value } = e;
|
|
|
+ form.value[model] = value;
|
|
|
+};
|
|
|
+// #endregion
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped></style>
|