|
@@ -2,37 +2,134 @@
|
|
<div id="index">
|
|
<div id="index">
|
|
<el-row>
|
|
<el-row>
|
|
<el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
|
|
<el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
|
|
- <el-col :span="24" class="one">系统首页</el-col>
|
|
|
|
|
|
+ <el-col :span="24" class="one">
|
|
|
|
+ <cSearch :is_title="false" :is_search="true" :fields="fields" @search="toSearch"> </cSearch>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="24" class="two">
|
|
|
|
+ <cTable :fields="fields" :opera="opera" :list="list" @query="search" :total="total" @exam="toExam"> </cTable>
|
|
|
|
+ </el-col>
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
|
|
+ <cDialog :dialog="dialog" @toClose="toClose">
|
|
|
|
+ <template v-slot:info>
|
|
|
|
+ <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-option v-for="i in statusList" :key="i.value" :label="i.label" :value="i.value"></el-option>
|
|
|
|
+ </template>
|
|
|
|
+ </cForm>
|
|
|
|
+ </el-col>
|
|
|
|
+ </template>
|
|
|
|
+ </cDialog>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
<script setup lang="ts">
|
|
// 基础
|
|
// 基础
|
|
|
|
+import _ from 'lodash';
|
|
import type { Ref } from 'vue';
|
|
import type { Ref } from 'vue';
|
|
-// reactive,
|
|
|
|
-import { onMounted, ref, getCurrentInstance } from 'vue';
|
|
|
|
|
|
+import { ref, onMounted, getCurrentInstance } from 'vue';
|
|
|
|
+import { ElMessage } from 'element-plus';
|
|
// 接口
|
|
// 接口
|
|
-//import { TestStore } from '@common/src/stores/test';
|
|
|
|
-//import type { IQueryResult } from '@/util/types.util';
|
|
|
|
-//const testAxios = TestStore();
|
|
|
|
|
|
+import { OrderDetailStore } from '@/stores/order/orderDetail';
|
|
|
|
+import { DictDataStore } from '@/stores/dict/dictData';
|
|
|
|
+import type { IQueryResult } from '@/util/types.util';
|
|
|
|
+const dictData = DictDataStore();
|
|
|
|
+const orderDetailAxios = OrderDetailStore();
|
|
const { proxy } = getCurrentInstance() as any;
|
|
const { proxy } = getCurrentInstance() as any;
|
|
// 加载中
|
|
// 加载中
|
|
const loading: Ref<any> = ref(false);
|
|
const loading: Ref<any> = ref(false);
|
|
-// 分页数据
|
|
|
|
-// const skip = 0;
|
|
|
|
-// const limit = proxy.limit;;
|
|
|
|
|
|
+// 列表数据
|
|
|
|
+let list: Ref<any> = ref([]);
|
|
|
|
+let total: Ref<number> = ref(0);
|
|
|
|
+let skip = 0;
|
|
|
|
+let limit: number = proxy.$limit;
|
|
|
|
+let fields: Ref<any[]> = ref([
|
|
|
|
+ { label: '总订单id', model: 'order_id', isSearch: true },
|
|
|
|
+ { label: '用户', model: 'user_name' },
|
|
|
|
+ { label: '商品', model: 'good_name' },
|
|
|
|
+ { label: '规格', model: 'spec_name' },
|
|
|
|
+ { label: '收货地址', model: 'address' },
|
|
|
|
+ { label: '下单时间', model: 'buy_time' },
|
|
|
|
+ { label: '状态', model: 'status', format: (i: any) => getDict(i, 'status') }
|
|
|
|
+]);
|
|
|
|
+// 操作
|
|
|
|
+let opera: Ref<any[]> = ref([{ label: '审核', method: 'exam', type: 'warning', display: (i) => i.status == '0' }]);
|
|
|
|
+// 弹框
|
|
|
|
+const dialog: Ref<any> = ref({ title: '审核管理', show: false, type: '1' });
|
|
|
|
+const form: Ref<any> = ref({ file: [] });
|
|
|
|
+const formFields: Ref<any> = ref([{ label: '状态', model: 'status', type: 'select' }]);
|
|
|
|
+// 查询数据
|
|
|
|
+let searchForm: Ref<any> = ref({});
|
|
|
|
+// 字典表
|
|
|
|
+let statusList: Ref<any> = ref([]);
|
|
|
|
+
|
|
// 请求
|
|
// 请求
|
|
onMounted(async () => {
|
|
onMounted(async () => {
|
|
loading.value = true;
|
|
loading.value = true;
|
|
- // await search({ skip, limit });
|
|
|
|
|
|
+ await searchOther();
|
|
|
|
+ await search({ skip, limit });
|
|
loading.value = false;
|
|
loading.value = false;
|
|
});
|
|
});
|
|
-//const search = async (e: { skip: number; limit: number }) => {
|
|
|
|
-// const info = { skip: e.skip, limit: e.limit, ...searchInfo.value };
|
|
|
|
-// const res: IQueryResult = await testAxios.query(info);
|
|
|
|
-// console.log(res);
|
|
|
|
-//};
|
|
|
|
|
|
+const search = async (e: { skip: number; limit: number }) => {
|
|
|
|
+ const { skip, limit } = e;
|
|
|
|
+ const condition = _.cloneDeep(searchForm.value);
|
|
|
|
+ let info = { limit: limit, skip: skip, ...condition };
|
|
|
|
+ let res: IQueryResult = await orderDetailAxios.queryInfo(info);
|
|
|
|
+ if (res.errcode == 0) {
|
|
|
|
+ list.value = res.data;
|
|
|
|
+ total.value = res.total;
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+const toSearch = (query: any) => {
|
|
|
|
+ searchForm.value = query;
|
|
|
|
+ search({ skip, limit });
|
|
|
|
+};
|
|
|
|
+const getDict = (value: any, model: any) => {
|
|
|
|
+ if (model == 'status') {
|
|
|
|
+ if (value) {
|
|
|
|
+ let data = statusList.value.find((i: any) => i.value == value);
|
|
|
|
+ if (data) return data.label;
|
|
|
|
+ else return '暂无';
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+// 审核
|
|
|
|
+const toExam = async (data) => {
|
|
|
|
+ let res: IQueryResult = await orderDetailAxios.fetch(data._id);
|
|
|
|
+ if (res.errcode == '0') {
|
|
|
|
+ form.value = res.data;
|
|
|
|
+ dialog.value = { title: '审核管理', show: true, type: '1' };
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+// 提交保存
|
|
|
|
+const toSave = async (data: any) => {
|
|
|
|
+ let res: IQueryResult;
|
|
|
|
+ if (data._id) res = await orderDetailAxios.update(data);
|
|
|
|
+ else res = await orderDetailAxios.create(data);
|
|
|
|
+ if (res.errcode == 0) {
|
|
|
|
+ ElMessage({ type: `success`, message: `维护信息成功` });
|
|
|
|
+ toClose();
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+// 弹框关闭
|
|
|
|
+const toClose = () => {
|
|
|
|
+ form.value = {};
|
|
|
|
+ dialog.value = { title: '信息管理', show: false, type: '1' };
|
|
|
|
+ search({ skip, limit });
|
|
|
|
+};
|
|
|
|
+// 查询其他信息
|
|
|
|
+const searchOther = async () => {
|
|
|
|
+ let res: IQueryResult;
|
|
|
|
+ // 状态
|
|
|
|
+ res = await dictData.query({ type: 'order_status' });
|
|
|
|
+ if (res.errcode == '0') statusList.value = res.data;
|
|
|
|
+};
|
|
</script>
|
|
</script>
|
|
-<style scoped lang="scss"></style>
|
|
|
|
|
|
+<style scoped lang="scss">
|
|
|
|
+.main {
|
|
|
|
+ .two {
|
|
|
|
+ margin: 0 0 10px 0;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</style>
|