| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- rookieCode<template>
- <div class="app-container calendar-list-container">
- <!-- 查询和其他操作 -->
- <div class="filter-container">
- <el-input clearable class="filter-item" style="width: 200px;" placeholder="物流公司名称" v-model="listQuery.logisticsName">
- </el-input>
- <el-select v-model="listQuery.status" clearable placeholder="状态" class="filter-item" style="width: 200px;">
- <el-option :key="item.type" v-for="item in statusList" :label="item.name" :value="item.type">
- </el-option>
- </el-select>
- <el-button class="filter-item" type="primary" v-waves icon="el-icon-search" @click="handleQuery">查找</el-button>
- <el-button class="filter-item" icon="el-icon-refresh" @click="resetQuery">重置</el-button>
- <el-button class="filter-item" type="primary" icon="el-icon-plus" @click="handleCreate">添加</el-button>
- <!-- <el-button class="filter-item" v-waves icon="el-icon-download" @click="handleDownload">导出</el-button> -->
- </div>
- <!-- 查询结果 -->
- <el-table 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">
- </el-table-column>
- <el-table-column align="center" min-width="100px" label="物流公司名称" prop="logisticsName">
- </el-table-column>
- <el-table-column align="center" min-width="80px" label="快递查询代码" prop="queryCode">
- </el-table-column>
- <el-table-column align="center" min-width="80px" label="菜鸟代码" prop="rookieCode">
- </el-table-column>
- <el-table-column align="center" min-width="50px" label="状态">
- <template slot-scope="props">
- <span v-if="props.row.status == 0" style="color: #67C23A;font-weight: bold;">启用</span>
- <span v-if="props.row.status == 1" style="color: #E6A23C;font-weight: bold;">停用</span>
- </template>
- </el-table-column>
- <!-- <el-table-column align="center" min-width="150px" label="备注" prop="remarks">
- </el-table-column> -->
- <el-table-column align="center" label="操作" width="250" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button type="primary" size="small" @click="handleUpdate(scope.row)">编辑</el-button>
- <el-button v-if="scope.row.status == 1" type="success" size="small"
- @click="changeState(scope.row.id, scope.row.status)">启用</el-button>
- <el-button v-if="scope.row.status == 0" type="warning" size="small"
- @click="changeState(scope.row.id, scope.row.status)">停用</el-button>
- <el-button type="danger" 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>
- <!-- 添加或修改对话框 -->
- <el-dialog :title="textMap[dialogStatus]" :visible.sync="dialogFormVisible" width="600px">
- <el-form :rules="rules" ref="dataForm" :model="dataForm" status-icon label-position="left" label-width="110px">
- <el-form-item label="物流公司名称" prop="logisticsName">
- <el-input v-model="dataForm.logisticsName"></el-input>
- </el-form-item>
- <el-form-item label="快递查询代码" prop="queryCode">
- <el-input v-model="dataForm.queryCode"></el-input>
- </el-form-item>
- <el-form-item label="菜鸟代码" prop="rookieCode">
- <el-input v-model="dataForm.rookieCode"></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 { listExpress, createExpress, updateExpress, deleteExpress, setState } from '@/api/express'
- import waves from '@/directive/waves' // 水波纹指令
- export default {
- directives: { waves },
- data() {
- return {
- list: undefined,
- total: undefined,
- listLoading: true,
- statusList: [
- {
- type: 0,
- name: '启用'
- },
- {
- type: 1,
- name: '停用'
- },
- ],
- listQuery: {
- page: 1,
- limit: 10,
- logisticsName: undefined,
- status: undefined,
- },
- dataForm: {
- logisticsName: undefined,
- queryCode: undefined,
- rookieCode: undefined,
- remarks: undefined,
- },
- dialogFormVisible: false,
- dialogStatus: '',
- textMap: {
- update: '编辑',
- create: '创建'
- },
- rules: {
- logisticsName: [{ required: true, message: '物流公司名称不能为空', trigger: 'blur' }],
- queryCode: [{ required: true, message: '快递查询代码不能为空', trigger: 'blur' }],
- rookieCode: [{ required: true, message: '菜鸟代码不能为空', trigger: 'blur' }],
- },
- }
- },
- created() {
- this.getList()
- },
- methods: {
- /** 重置按钮操作 */
- resetQuery() {
- this.listQuery = {
- page: 1,
- limit: 10,
- logisticsName: undefined,
- status: undefined,
- };
- this.handleQuery();
- },
- getList() {
- this.listLoading = true
- listExpress(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 = {
- logisticsName: undefined,
- queryCode: undefined,
- rookieCode: 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) {
- createExpress(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) {
- updateExpress(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(() => {
- deleteExpress({id:row.id}).then(response => {
- this.$notify({
- title: '成功',
- message: '删除成功',
- type: 'success',
- duration: 2000
- })
- this.getList()
- })
- }).catch(() => {
-
- })
- },
- handleDownload() {
- window.location.href = process.env.BASE_API + '/product/export';
- },
- changeState(id, status) {
- setState({ id: id, status: status }).then(response => {
- this.$notify({
- title: '成功',
- message: '状态修改成功',
- type: 'success',
- duration: 2000
- })
- this.getList()
- })
- },
- }
- }
- </script>
|