|
@@ -0,0 +1,74 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <div class="route_body">
|
|
|
+ <div class="content_body">
|
|
|
+ <Kanban></Kanban>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="route_body">
|
|
|
+ <div class="content_body">
|
|
|
+ <jfglSearch ref="dhglSearch" @search="search" @research="research"></jfglSearch>
|
|
|
+ <TableDom ref="TableDom" :page="page" :option="option" :tableList="tableList" menuwidth="200"
|
|
|
+ @handleSizeChange="handleSizeChange" @handleCurrentChange="handleCurrentChange">
|
|
|
+ <template v-slot:menu="{ scope }">
|
|
|
+ <el-button @click="rowView(scope)" type="text" size="mini">获取记录</el-button>
|
|
|
+ <el-button @click="rowView(scope)" type="text" size="mini">兑换记录</el-button>
|
|
|
+ </template>
|
|
|
+ </TableDom>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <centerDrawer ref="centerDrawer" :is-show="dialogVisible" @closeDialog="dialogVisible=false"></centerDrawer>
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import jfglSearch from './components/jfglSearch.vue';
|
|
|
+import TableDom from "@/components/table-dom";
|
|
|
+import Kanban from "@/views/jfsc/kanban";
|
|
|
+import centerDrawer from "@/views/jfsc/components/centerDrawer";
|
|
|
+export default {
|
|
|
+ components: { TableDom, jfglSearch,Kanban,centerDrawer},
|
|
|
+ data(){
|
|
|
+ return{
|
|
|
+ dialogVisible:false,
|
|
|
+ tableList: [
|
|
|
+ {
|
|
|
+ ddbh: '订单编号',
|
|
|
+ dhrxm: '用户姓名',
|
|
|
+ zjhm: '证件号码',
|
|
|
+ lxfs: '联系方式',
|
|
|
+ spsl: '居住地',
|
|
|
+ xhjf: '获得的总积分',
|
|
|
+ lqzt: '已兑换积分',
|
|
|
+ syjf:'剩余积分',
|
|
|
+ zt:'操作'
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ option: [
|
|
|
+ { prop: 'ddbh', label: '订单编号' },
|
|
|
+ { prop: 'dhrxm', label: '用户姓名' },
|
|
|
+ { prop: 'zjhm', label: '证件号码' },
|
|
|
+ { prop: 'lxfs', label: '联系方式' },
|
|
|
+ { prop: 'spsl', label: '居住地' },
|
|
|
+ { prop: 'xhjf', label: '获得的总积分' },
|
|
|
+ { prop: 'lqzt', label: '已兑换积分' },
|
|
|
+ { prop: 'syjf', label: '剩余积分' },
|
|
|
+ ],
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods:{
|
|
|
+ rowView(){
|
|
|
+ this.dialogVisible = true
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+@use '@/styles/public/table-style.scss';
|
|
|
+
|
|
|
+</style>
|