From 25aace375476ad7f73089cac6bfed606828c5371 Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期四, 21 十一月 2024 09:04:26 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- admin/src/views/client/staffList.vue | 101 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 101 insertions(+), 0 deletions(-) diff --git a/admin/src/views/client/staffList.vue b/admin/src/views/client/staffList.vue index e69de29..05d7c12 100644 --- a/admin/src/views/client/staffList.vue +++ b/admin/src/views/client/staffList.vue @@ -0,0 +1,101 @@ +<template> + <TableLayout :permissions="['business:ywcustomer:query']"> + <!-- 鎼滅储琛ㄥ崟 --> + <el-form ref="searchForm" slot="search-form" :model="searchForm" label-width="100px" inline> + <el-form-item label="瀹㈡埛鍚嶇О" prop="name"> + <el-input v-model="searchForm.name" placeholder="璇疯緭鍏ュ鎴峰悕绉�" @keypress.enter.native="search"></el-input> + </el-form-item> + <section> + <el-button type="primary" @click="search">鎼滅储</el-button> + <el-button type="primary" :loading="isWorking.export" v-permissions="['business:ywcustomer:exportExcel']" + @click="exportExcel">瀵煎嚭</el-button> + <el-button @click="reset">閲嶇疆</el-button> + </section> + </el-form> + <!-- 琛ㄦ牸鍜屽垎椤� --> + <template v-slot:table-wrap> + <ul class="toolbar" v-permissions="['business:ywcustomer:create', 'business:ywcustomer:delete']"> + <li><el-button type="primary" @click="$refs.operaYwCustomerWindow.open('鏂板缓瀹㈡埛')" icon="el-icon-plus" + v-permissions="['business:ywcustomer:create']">鏂板缓</el-button></li> + <li><el-button @click="deleteByIdInBatch" icon="el-icon-delete" + v-permissions="['business:ywcustomer:delete']">鍒犻櫎</el-button></li> + </ul> + <el-table v-loading="isWorking.search" :data="tableData.list" stripe @selection-change="handleSelectionChange"> + <el-table-column type="selection" width="55"></el-table-column> + <el-table-column prop="name" label="瀹㈡埛鍚嶇О" min-width="100px"></el-table-column> + <el-table-column prop="memberName" label="鑱旂郴浜�" min-width="100px"></el-table-column> + <el-table-column prop="phone" label="鑱旂郴鐢佃瘽" min-width="100px"></el-table-column> + <el-table-column v-if="containPermissions(['business:ywcustomer:update', 'business:ywcustomer:delete'])" + label="鎿嶄綔" min-width="120" fixed="right"> + <template slot-scope="{row}"> + <el-button type="text" @click="$refs.operaYwCustomerWindow.open('缂栬緫瀹㈡埛', row)" icon="el-icon-edit" + v-permissions="['business:ywcustomer:update']">缂栬緫</el-button> + <el-button type="text" @click="deleteById(row)" icon="el-icon-delete" + v-permissions="['business:ywcustomer:delete']">鍒犻櫎</el-button> + </template> + </el-table-column> + </el-table> + <pagination @size-change="handleSizeChange" @current-change="handlePageChange" :pagination="tableData.pagination"> + </pagination> + </template> + <!-- 鏂板缓/淇敼 --> + <OperaYwCustomerWindow ref="operaYwCustomerWindow" @success="handlePageChange" /> + </TableLayout> +</template> + +<script> +import BaseTable from '@/components/base/BaseTable' +import TableLayout from '@/layouts/TableLayout' +import Pagination from '@/components/common/Pagination' +import OperaYwCustomerWindow from './components/OperaYwCustomerWindow' +export default { + name: 'YwCustomer', + extends: BaseTable, + components: { TableLayout, Pagination, OperaYwCustomerWindow }, + data() { + return { + // 鎼滅储 + searchForm: { + id: '', + creator: '', + createDate: '', + editor: '', + editDate: '', + isdeleted: '', + remark: '', + industryId: '', + type: '', + name: '', + phone: '', + idcardNo: '', + idcardDecode: '', + code: '', + status: '', + highCheckor: '', + lastLoginDate: '', + loginNum: '', + userId: '', + idcardType: '', + accountBank: '', + accountNo: '', + accountPhone: '', + creditCard: '', + fpType: '', + accountAddr: '', + identityType: '', + email: '', + memberId: '' + } + } + }, + created() { + this.config({ + module: '杩愮淮瀹㈡埛淇℃伅琛�', + api: '/client/ywCustomer', + 'field.id': 'id', + 'field.main': 'id' + }) + this.search() + } +} +</script> -- Gitblit v1.9.3