feat(): 更改前台信息
parent
c0e7707a3b
commit
f5e74b0869
|
@ -1,5 +1,5 @@
|
|||
# 页面标题
|
||||
VUE_APP_TITLE = 若依管理系统
|
||||
VUE_APP_TITLE = 企业运营平台
|
||||
|
||||
# 开发环境配置
|
||||
ENV = 'development'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# 页面标题
|
||||
VUE_APP_TITLE = 若依管理系统
|
||||
VUE_APP_TITLE = 企业运营平台
|
||||
|
||||
# 生产环境配置
|
||||
ENV = 'production'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# 页面标题
|
||||
VUE_APP_TITLE = 若依管理系统
|
||||
VUE_APP_TITLE = 企业运营平台
|
||||
|
||||
NODE_ENV = production
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "muyu",
|
||||
"version": "3.6.3",
|
||||
"description": "若依管理系统",
|
||||
"description": "企业运营平台",
|
||||
"author": "若依",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div class="login">
|
||||
<el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form">
|
||||
<h3 class="title">车辆管理后台</h3>
|
||||
<h3 class="title">企业运营平台</h3>
|
||||
<el-form-item prop="username">
|
||||
<el-input
|
||||
v-model="loginForm.username"
|
||||
|
|
|
@ -1,61 +1,5 @@
|
|||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||
<el-form-item label="企业名称" prop="ebterpriseName">
|
||||
<el-input
|
||||
v-model="queryParams.ebterpriseName"
|
||||
placeholder="请输入企业名称"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="法定代表人" prop="legalPerson">
|
||||
<el-input
|
||||
v-model="queryParams.legalPerson"
|
||||
placeholder="请输入法定代表人"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="经营执照凭证号码" prop="businessLincenseNumber">
|
||||
<el-input
|
||||
v-model="queryParams.businessLincenseNumber"
|
||||
placeholder="请输入经营执照凭证号码"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="企业成立时间" prop="estabinessDate">
|
||||
<el-date-picker clearable
|
||||
v-model="queryParams.estabinessDate"
|
||||
type="date"
|
||||
value-format="yyyy-MM-dd"
|
||||
placeholder="请选择企业成立时间">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="企业联系方式" prop="contactPhone">
|
||||
<el-input
|
||||
v-model="queryParams.contactPhone"
|
||||
placeholder="请输入企业联系方式"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="公司邮箱" prop="email">
|
||||
<el-input
|
||||
v-model="queryParams.email"
|
||||
placeholder="请输入公司邮箱"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
|
@ -104,30 +48,12 @@
|
|||
|
||||
<el-table v-loading="loading" :data="carList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="主键" align="center" prop="id" />
|
||||
<el-table-column label="企业名称" align="center" prop="ebterpriseName" />
|
||||
<el-table-column label="法定代表人" align="center" prop="legalPerson" />
|
||||
<el-table-column label="经营执照凭证号码" align="center" prop="businessLincenseNumber" />
|
||||
<el-table-column label="企业成立时间" align="center" prop="estabinessDate" width="180">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.estabinessDate, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="经营范围" align="center" prop="businessScope" />
|
||||
<el-table-column label="注册地址" align="center" prop="address" />
|
||||
<el-table-column label="企业联系方式" align="center" prop="contactPhone" />
|
||||
<el-table-column label="公司邮箱" align="center" prop="email" />
|
||||
<el-table-column label="企业当前状态" align="center" prop="status" />
|
||||
<el-table-column label="企业入驻平台时期" align="center" prop="registrationDate" width="180">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.registrationDate, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="认证时间" align="center" prop="authenticationDate" width="180">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.authenticationDate, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="服务级别" align="center" prop="serviceLevel" />
|
||||
<el-table-column label="备注" align="center" prop="remark" />
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
|
|
|
@ -0,0 +1,281 @@
|
|||
<template>
|
||||
<div class="app-container">
|
||||
|
||||
|
||||
|
||||
<el-table v-loading="loading" :data="carList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="企业名称" align="center" prop="ebterpriseName" />
|
||||
<el-table-column label="法定代表人" align="center" prop="legalPerson" />
|
||||
<el-table-column label="经营范围" align="center" prop="businessScope" />
|
||||
<el-table-column label="注册地址" align="center" prop="address" />
|
||||
<el-table-column label="企业联系方式" align="center" prop="contactPhone" />
|
||||
<el-table-column label="公司邮箱" align="center" prop="email" />
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit"
|
||||
@click="handleUpdate(scope.row)"
|
||||
v-hasPermi="['netWorking:car:edit']"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['netWorking:car:remove']"
|
||||
>删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
|
||||
<!-- 添加或修改企业信息对话框 -->
|
||||
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||
<el-form-item label="企业名称" prop="ebterpriseName">
|
||||
<el-input v-model="form.ebterpriseName" placeholder="请输入企业名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="法定代表人" prop="legalPerson">
|
||||
<el-input v-model="form.legalPerson" placeholder="请输入法定代表人" />
|
||||
</el-form-item>
|
||||
<el-form-item label="经营执照凭证号码" prop="businessLincenseNumber">
|
||||
<el-input v-model="form.businessLincenseNumber" placeholder="请输入经营执照凭证号码" />
|
||||
</el-form-item>
|
||||
<el-form-item label="企业成立时间" prop="estabinessDate">
|
||||
<el-date-picker clearable
|
||||
v-model="form.estabinessDate"
|
||||
type="date"
|
||||
value-format="yyyy-MM-dd"
|
||||
placeholder="请选择企业成立时间">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="经营范围" prop="businessScope">
|
||||
<el-input v-model="form.businessScope" placeholder="请输入经营范围" />
|
||||
</el-form-item>
|
||||
<el-form-item label="注册地址" prop="address">
|
||||
<el-input v-model="form.address" placeholder="请输入注册地址" />
|
||||
</el-form-item>
|
||||
<el-form-item label="企业联系方式" prop="contactPhone">
|
||||
<el-input v-model="form.contactPhone" placeholder="请输入企业联系方式" />
|
||||
</el-form-item>
|
||||
<el-form-item label="公司邮箱" prop="email">
|
||||
<el-input v-model="form.email" placeholder="请输入公司邮箱" />
|
||||
</el-form-item>
|
||||
<el-form-item label="企业入驻平台时期" prop="registrationDate">
|
||||
<el-date-picker clearable
|
||||
v-model="form.registrationDate"
|
||||
type="date"
|
||||
value-format="yyyy-MM-dd"
|
||||
placeholder="请选择企业入驻平台时期">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="企业认证id" prop="certificationId">
|
||||
<el-input v-model="form.certificationId" placeholder="请输入企业认证id" />
|
||||
</el-form-item>
|
||||
<el-form-item label="认证时间" prop="authenticationDate">
|
||||
<el-date-picker clearable
|
||||
v-model="form.authenticationDate"
|
||||
type="date"
|
||||
value-format="yyyy-MM-dd"
|
||||
placeholder="请选择认证时间">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="服务级别" prop="serviceLevel">
|
||||
<el-input v-model="form.serviceLevel" placeholder="请输入服务级别" />
|
||||
</el-form-item>
|
||||
<el-form-item label="开通服务id" prop="openServerId">
|
||||
<el-input v-model="form.openServerId" placeholder="请输入开通服务id" />
|
||||
</el-form-item>
|
||||
<el-form-item label="增值服务id" prop="addServerId">
|
||||
<el-input v-model="form.addServerId" placeholder="请输入增值服务id" />
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="form.remark" placeholder="请输入备注" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { listCar, getCar, delCar, addCar, updateCar } from "@/api/netWorking/car";
|
||||
|
||||
export default {
|
||||
name: "Car",
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 企业信息表格数据
|
||||
carList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
ebterpriseName: null,
|
||||
legalPerson: null,
|
||||
businessLincenseNumber: null,
|
||||
estabinessDate: null,
|
||||
businessScope: null,
|
||||
address: null,
|
||||
contactPhone: null,
|
||||
email: null,
|
||||
status: null,
|
||||
registrationDate: null,
|
||||
certificationId: null,
|
||||
authenticationDate: null,
|
||||
serviceLevel: null,
|
||||
openServerId: null,
|
||||
addServerId: null,
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询企业信息列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listCar(this.queryParams).then(response => {
|
||||
this.carList = response.data.rows;
|
||||
this.total = response.data.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
id: null,
|
||||
ebterpriseName: null,
|
||||
legalPerson: null,
|
||||
businessLincenseNumber: null,
|
||||
estabinessDate: null,
|
||||
businessScope: null,
|
||||
address: null,
|
||||
contactPhone: null,
|
||||
email: null,
|
||||
status: null,
|
||||
registrationDate: null,
|
||||
certificationId: null,
|
||||
authenticationDate: null,
|
||||
serviceLevel: null,
|
||||
openServerId: null,
|
||||
addServerId: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null,
|
||||
remark: null
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map(item => item.id)
|
||||
this.single = selection.length!==1
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加企业信息";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const id = row.id || this.ids
|
||||
getCar(id).then(response => {
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改企业信息";
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
if (this.form.id != null) {
|
||||
updateCar(this.form).then(response => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addCar(this.form).then(response => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const ids = row.id || this.ids;
|
||||
this.$modal.confirm('是否确认删除企业信息编号为"' + ids + '"的数据项?').then(function() {
|
||||
return delCar(ids);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('netWorking/car/export', {
|
||||
...this.queryParams
|
||||
}, `car_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div class="register">
|
||||
<el-form ref="registerForm" :model="registerForm" :rules="registerRules" class="register-form">
|
||||
<h3 class="title">车辆管理后台</h3>
|
||||
<h3 class="title">企业运营平台</h3>
|
||||
<el-form-item prop="username">
|
||||
<el-input v-model="registerForm.username" auto-complete="off" placeholder="账号" type="text">
|
||||
<svg-icon slot="prefix" class="el-input__icon input-icon" icon-class="user"/>
|
||||
|
|
|
@ -7,7 +7,7 @@ function resolve(dir) {
|
|||
|
||||
const CompressionPlugin = require('compression-webpack-plugin')
|
||||
|
||||
const name = process.env.VUE_APP_TITLE || '车辆管理后台' // 网页标题
|
||||
const name = process.env.VUE_APP_TITLE || '企业运营平台' // 网页标题
|
||||
|
||||
const port = process.env.port || process.env.npm_config_port || 80 // 端口
|
||||
|
||||
|
|
Loading…
Reference in New Issue