初始化
parent
dbb1ca259d
commit
7cf2c9c1e5
|
@ -10,9 +10,9 @@ export function listFirminfo(query) {
|
|||
}
|
||||
|
||||
// 查询firminfoList详细
|
||||
export function getFirminfo(firmId) {
|
||||
export function getFirminfo() {
|
||||
return request({
|
||||
url: '/market/firminfo/' + firmId,
|
||||
url: '/market/firminfo/query',
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
|
|
@ -1,206 +1,66 @@
|
|||
<template>
|
||||
<div class="app-container">
|
||||
<el-table v-loading="loading" :data="firminfoList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="企业数据id" align="center" prop="firmId" />
|
||||
<el-table-column label="用户ID" align="center" prop="userId" />
|
||||
<el-table-column label="企业名称" align="center" prop="firmTem" />
|
||||
<el-table-column label="姓名" align="center" prop="names" />
|
||||
<el-table-column label="职位" align="center" prop="position" />
|
||||
<el-table-column label="公司所在省市区" align="center" prop="firmRegion" />
|
||||
<el-table-column label="公司详细地址" align="center" prop="firmFrom" />
|
||||
<el-table-column label="社会信誉" align="center" prop="socialReputation" />
|
||||
<el-table-column label="营业执照" align="center" prop="businessLicense" />
|
||||
<el-table-column label="创建时间" align="center" prop="firmTime" width="180">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.firmTime, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="余额" align="center" prop="firmScore" />
|
||||
<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="['firminfo:firminfo:edit']"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['firminfo:firminfo: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-form :model="firminfoForm" >
|
||||
<el-form-item label="头像" prop="pass">
|
||||
<userAvatar/>
|
||||
</el-form-item>
|
||||
<el-form-item label="姓名" prop="pass">
|
||||
<span>{{firminfoForm.nickName}}</span>
|
||||
</el-form-item>
|
||||
<el-form-item label="手机号" prop="pass">
|
||||
<span>{{firminfoForm.phonenumber}}</span>
|
||||
</el-form-item>
|
||||
<el-form-item label="企业(团队)名称" prop="pass">
|
||||
<span>{{firminfoForm.firmTem}}</span>
|
||||
</el-form-item>
|
||||
<el-form-item label="姓名" prop="pass">
|
||||
<span>{{firminfoForm.names}}</span>
|
||||
</el-form-item>
|
||||
<el-form-item label="职位" prop="pass">
|
||||
<span>{{firminfoForm.position}}</span>
|
||||
</el-form-item>
|
||||
<el-form-item label="公司所在省市区" prop="pass">
|
||||
<span>{{firminfoForm.firmRegion}}</span>
|
||||
</el-form-item>
|
||||
<el-form-item label="公司详细地址" prop="pass">
|
||||
<span>{{firminfoForm.firmFrom}}</span>
|
||||
</el-form-item>
|
||||
<el-form-item label="统一社会信用代码" prop="pass">
|
||||
<span>{{firminfoForm.socialReputation}}</span>
|
||||
</el-form-item>
|
||||
<el-form-item label="营业执照" prop="pass">
|
||||
<span>{{firminfoForm.businessLicense}}</span>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { listFirminfo, getFirminfo, delFirminfo, addFirminfo, updateFirminfo } from "/src/api/firminfo/firminfo";
|
||||
import firminfo from "./index.vue";
|
||||
import userAvatar from "../../system/user/profile/userAvatar.vue";
|
||||
|
||||
export default {
|
||||
name: "Firminfo",
|
||||
components: {userAvatar},
|
||||
computed: {
|
||||
firminfo() {
|
||||
return firminfo
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 企业信息表格数据
|
||||
firminfoList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
firmAvatr: null,
|
||||
createdName: null,
|
||||
phone: null,
|
||||
firmTem: null,
|
||||
names: null,
|
||||
position: null,
|
||||
firmRegion: null,
|
||||
firmFrom: null,
|
||||
socialReputation: null,
|
||||
businessLicense: null,
|
||||
firmTime: null,
|
||||
firmScore: null
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
}
|
||||
firminfoForm:{}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
this.getFirminfo()
|
||||
},
|
||||
methods: {
|
||||
/** 查询企业信息列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listFirminfo(this.queryParams).then(response => {
|
||||
this.firminfoList = response.data.rows;
|
||||
this.total = response.data.total;
|
||||
this.loading = false;
|
||||
getFirminfo() {
|
||||
getFirminfo().then(response => {
|
||||
this.firminfoForm = response.data;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
firmId: null,
|
||||
firmAvatr: null,
|
||||
createdName: null,
|
||||
phone: null,
|
||||
firmTem: null,
|
||||
names: null,
|
||||
position: null,
|
||||
firmRegion: null,
|
||||
firmFrom: null,
|
||||
socialReputation: null,
|
||||
businessLicense: null,
|
||||
firmTime: null,
|
||||
firmScore: 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.firmId)
|
||||
this.single = selection.length!==1
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加企业信息";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const firmId = row.firmId || this.ids
|
||||
getFirminfo(firmId).then(response => {
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改企业信息";
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
if (this.form.firmId != null) {
|
||||
updateFirminfo(this.form).then(response => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addFirminfo(this.form).then(response => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const firmIds = row.firmId || this.ids;
|
||||
this.$modal.confirm('是否确认删除企业信息编号为"' + firmIds + '"的数据项?').then(function() {
|
||||
return delFirminfo(firmIds);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('firminfo/firminfo/export', {
|
||||
...this.queryParams
|
||||
}, `firminfo_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
@ -158,7 +158,6 @@ export default {
|
|||
methods: {
|
||||
async gotoMaintained(customer){
|
||||
this.pay.subject=customer.sysIntro
|
||||
this.pay.traceNo=Math.floor(Math.random() * 900000) + 100000
|
||||
this.pay.totalAmount=customer.sysNumber
|
||||
const url = `http://10.0.2.1:8080/pay/alipay/pay?subject=${this.pay.subject}&totalAmount=${this.pay.totalAmount}`;
|
||||
pay(this.pay).then(res => {
|
||||
|
|
Loading…
Reference in New Issue