| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 |
- <template>
- <div class="app-container">
- <!-- 查询表单区域 -->
- <el-form :model="listQuery" size="small" :inline="true" label-position="top">
- <el-row :gutter="20">
- <el-col :span="6">
- <el-form-item label="散客编号">
- <el-input v-model="listQuery.customerCode" placeholder="请输入散客编号" style="width: 100%" clearable></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="散客姓名">
- <el-input v-model="listQuery.customerName" placeholder="请输入散客姓名" style="width: 100%" clearable></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="性别">
- <el-select v-model="listQuery.sex" clearable placeholder="请选择性别" style="width: 100%">
- <el-option :key="item.type" v-for="item in sexList" :label="item.name" :value="item.type">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="20">
- <el-col :span="6">
- <el-form-item label="搜索">
- <el-button style="width: 100%;" type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="重置">
- <el-button style="width: 100%;" icon="el-icon-refresh" type="primary" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <!-- 操作按钮区域 -->
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button type="primary" class="editButton" size="small" icon="el-icon-plus" @click="handleCreate">添加</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button type="warning" icon="el-icon-download" size="small" @click="handleDownload">导出</el-button>
- </el-col>
- </el-row>
- <!-- 表格区域 -->
- <div class="border-card">
- <el-table height="450" size="small" :data="list" v-loading="listLoading" element-loading-text="正在查询中。。。" border fit highlight-current-row>
- <el-table-column type="index" label="序号" header-align="center" align="center" width="55"></el-table-column>
- <el-table-column align="center" min-width="80px" label="散客编号" prop="customerCode"></el-table-column>
- <el-table-column align="center" min-width="100px" label="散客姓名" prop="customerName"></el-table-column>
- <el-table-column align="center" min-width="80px" label="性别" prop="sexStr"></el-table-column>
- <el-table-column align="center" min-width="100px" label="联系方式" prop="customerPhone"></el-table-column>
- <el-table-column align="center" min-width="150px" label="备注" prop="remarks"></el-table-column>
- <el-table-column align="center" label="操作" width="240px" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button type="text" icon="el-icon-edit" class="editText" size="small" @click="handleUpdate(scope.row)">编辑</el-button>
- <el-button type="text" icon="el-icon-delete" class="deleteText" size="small" @click="handleDelete(scope.row)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <!-- 分页 -->
- <div class="pagination-container">
- <el-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChange"
- :current-page="listQuery.page" :page-sizes="[10, 20, 30, 50]" :page-size="listQuery.limit"
- layout="total, sizes, prev, pager, next, jumper" :total="total">
- </el-pagination>
- </div>
- </div>
- <!-- 添加或修改对话框 -->
- <el-dialog :title="textMap[dialogStatus]" :visible.sync="dialogFormVisible" width="40%">
- <el-form :rules="rules" ref="dataForm" :model="dataForm" status-icon label-position="left" label-width="110px">
- <el-form-item label="散客编号" prop="customerCode">
- <el-input v-model="dataForm.customerCode" placeholder="请输入散客编号"></el-input>
- </el-form-item>
- <el-form-item label="散客名称" prop="customerName">
- <el-input v-model="dataForm.customerName" placeholder="请输入散客名称"></el-input>
- </el-form-item>
- <el-form-item label="性别" prop="sex">
- <el-radio-group v-model="dataForm.sex">
- <el-radio :key="item.type" v-for="item in sexList" :label="item.type">{{ item.name }}</el-radio>
- </el-radio-group>
- </el-form-item>
- <el-form-item label="联系方式" prop="customerPhone">
- <el-input v-model="dataForm.customerPhone" placeholder="请输入联系方式"></el-input>
- </el-form-item>
- <el-form-item label="备注" prop="remarks">
- <el-input type="textarea" :autosize="{ minRows: 2, maxRows: 4 }" placeholder="请输入备注" v-model="dataForm.remarks"></el-input>
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button @click="dialogFormVisible = false">取消</el-button>
- <el-button v-if="dialogStatus == 'create'" type="primary" @click="createData">确定</el-button>
- <el-button v-else type="primary" @click="updateData">确定</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import { listGuest, createGuest, updateGuest, deleteGuest, setState } from '@/api/guest'
- import waves from '@/directive/waves' // 水波纹指令
- export default {
- directives: { waves },
- data() {
- return {
- list: undefined,
- total: undefined,
- listLoading: true,
- sexList: [
- {
- type: 0,
- name: '男'
- },
- {
- type: 1,
- name: '女'
- }
- ],
- listQuery: {
- page: 1,
- limit: 10,
- customerCode: undefined,
- customerName: undefined,
- sex: undefined
- },
- dataForm: {
- customerCode: undefined,
- customerName: undefined,
- sex: undefined,
- customerPhone: undefined,
- remarks: undefined
- },
- dialogFormVisible: false,
- dialogStatus: '',
- textMap: {
- update: '编辑散客',
- create: '添加散客'
- },
- rules: {
- customerCode: [
- { required: true, message: '散客编号不能为空', trigger: 'blur' }
- // { min: 6, max: 6, message: "散客编号必须为7位", trigger: "blur" },
- // { pattern: /^(?=.*[A-Za-z])(?=.*\d)[A-Za-z\d]{6,}$/, message: "散客编号必须为6位字母加数字", trigger: "blur" }
- ],
- customerName: [{ required: true, message: '散客姓名不能为空', trigger: 'blur' }]
- }
- }
- },
- created() {
- this.getList()
- },
- methods: {
- /** 重置按钮操作 */
- resetQuery() {
- this.listQuery = {
- page: 1,
- limit: 10,
- customerCode: undefined,
- customerName: undefined,
- sex: undefined
- }
- this.handleQuery()
- },
- getList() {
- this.listLoading = true
- listGuest(this.listQuery).then(response => {
- this.list = response.data.data.items
- this.total = response.data.data.total
- this.listLoading = false
- }).catch(() => {
- this.list = []
- this.total = 0
- this.listLoading = false
- })
- },
- handleQuery() {
- this.listQuery.page = 1
- this.getList()
- },
- handleSizeChange(val) {
- this.listQuery.limit = val
- this.getList()
- },
- handleCurrentChange(val) {
- this.listQuery.page = val
- this.getList()
- },
- resetForm() {
- this.dataForm = {
- customerCode: undefined,
- customerName: undefined,
- sex: undefined,
- customerPhone: undefined,
- remarks: undefined
- }
- },
- handleCreate() {
- this.resetForm()
- this.dialogStatus = 'create'
- this.dialogFormVisible = true
- this.$nextTick(() => {
- this.$refs['dataForm'].clearValidate()
- })
- },
- createData() {
- this.$refs['dataForm'].validate((valid) => {
- if (valid) {
- createGuest(this.dataForm).then(response => {
- this.list.unshift(response.data.data)
- this.dialogFormVisible = false
- this.$notify({
- title: '成功',
- message: '创建成功',
- type: 'success',
- duration: 2000
- })
- this.getList()
- })
- }
- })
- },
- handleUpdate(row) {
- this.dataForm = Object.assign({}, row)
- this.dialogStatus = 'update'
- this.dialogFormVisible = true
- this.$nextTick(() => {
- this.$refs['dataForm'].clearValidate()
- })
- },
- updateData() {
- this.$refs['dataForm'].validate((valid) => {
- if (valid) {
- updateGuest(this.dataForm).then(() => {
- for (const v of this.list) {
- if (v.id === this.dataForm.id) {
- const index = this.list.indexOf(v)
- this.list.splice(index, 1, this.dataForm)
- break
- }
- }
- this.dialogFormVisible = false
- this.$notify({
- title: '成功',
- message: '更新成功',
- type: 'success',
- duration: 2000
- })
- this.getList()
- })
- }
- })
- },
- handleDelete(row) {
- this.$confirm('确认删除吗?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- deleteGuest({ id: row.id }).then(response => {
- this.$notify({
- title: '成功',
- message: '删除成功',
- type: 'success',
- duration: 2000
- })
- this.getList()
- })
- }).catch(() => {
- })
- },
- handleDownload() {
- window.location.href = process.env.BASE_API + '/customer-guest/export'
- },
- changeState(id, status) {
- setState({ id: id, status: status }).then(response => {
- this.$notify({
- title: '成功',
- message: '状态修改成功',
- type: 'success',
- duration: 2000
- })
- this.getList()
- })
- }
- }
- }
- </script>
|