项目管理路由
This commit is contained in:
parent
5a1c19e092
commit
eb96a8141b
@ -1,248 +1,248 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch"
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch"
|
||||||
label-width="68px">
|
label-width="68px">
|
||||||
<el-form-item label="项目名称" prop="openid">
|
<el-form-item label="项目名称" prop="openid">
|
||||||
<el-input v-model="queryParams.openid" placeholder="请输入项目名称" clearable
|
<el-input v-model="queryParams.openid" placeholder="请输入项目名称" clearable
|
||||||
@keyup.enter.native="handleQuery" />
|
@keyup.enter.native="handleQuery" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
<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-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-row :gutter="10" class="mb8">
|
<el-row :gutter="10" class="mb8">
|
||||||
<el-col :span="1.5">
|
<el-col :span="1.5">
|
||||||
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
|
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
|
||||||
v-hasPermi="['abuwx:wxuser:add']">新增</el-button>
|
v-hasPermi="['abuwx:wxuser:add']">新增</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="1.5">
|
<el-col :span="1.5">
|
||||||
<el-button type="success" plain icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate"
|
<el-button type="success" plain icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate"
|
||||||
v-hasPermi="['abuwx:wxuser:edit']">修改</el-button>
|
v-hasPermi="['abuwx:wxuser:edit']">修改</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="1.5">
|
<el-col :span="1.5">
|
||||||
<el-button type="danger" plain icon="el-icon-delete" size="mini" :disabled="multiple"
|
<el-button type="danger" plain icon="el-icon-delete" size="mini" :disabled="multiple"
|
||||||
@click="handleDelete" v-hasPermi="['abuwx:wxuser:remove']">删除</el-button>
|
@click="handleDelete" v-hasPermi="['abuwx:wxuser:remove']">删除</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="1.5">
|
<el-col :span="1.5">
|
||||||
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport"
|
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport"
|
||||||
v-hasPermi="['abuwx:wxuser:export']">导出</el-button>
|
v-hasPermi="['abuwx:wxuser:export']">导出</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-table v-loading="loading" :data="wxuserList" @selection-change="handleSelectionChange">
|
<el-table v-loading="loading" :data="wxuserList" @selection-change="handleSelectionChange">
|
||||||
<el-table-column type="selection" width="55" align="center" />
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
<el-table-column label="项目名称" align="center" prop="nickname" />
|
<el-table-column label="项目名称" align="center" prop="nickname" />
|
||||||
<el-table-column label="项目概况" align="center" prop="openid" />
|
<el-table-column label="项目概况" align="center" prop="openid" />
|
||||||
<el-table-column label="附件上传" align="center" prop="remark" />
|
<el-table-column label="附件上传" align="center" prop="remark" />
|
||||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
|
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
|
||||||
v-hasPermi="['abuwx:wxuser:edit']">修改</el-button>
|
v-hasPermi="['abuwx:wxuser:edit']">修改</el-button>
|
||||||
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
||||||
v-hasPermi="['abuwx:wxuser:remove']">删除</el-button>
|
v-hasPermi="['abuwx:wxuser:remove']">删除</el-button>
|
||||||
<el-button size="mini" type="text" @click="openerweima(scope.row)">生成二维码</el-button>
|
<el-button size="mini" type="text" @click="openerweima(scope.row)">生成二维码</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
||||||
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum"
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum"
|
||||||
:limit.sync="queryParams.pageSize" @pagination="getList" />
|
:limit.sync="queryParams.pageSize" @pagination="getList" />
|
||||||
<!-- 添加或修改微信用户对话框 -->
|
<!-- 添加或修改微信用户对话框 -->
|
||||||
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
<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 ref="form" :model="form" :rules="rules" label-width="80px">
|
||||||
<el-form-item label="项目名称" prop="nickname">
|
<el-form-item label="项目名称" prop="nickname">
|
||||||
<el-input v-model="form.nickname" placeholder="请输入项目名称" />
|
<el-input v-model="form.nickname" placeholder="请输入项目名称" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="项目概况" prop="openid">
|
<el-form-item label="项目概况" prop="openid">
|
||||||
<el-input type="textarea" v-model="form.openid" placeholder="请输入项目概况" />
|
<el-input type="textarea" v-model="form.openid" placeholder="请输入项目概况" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="上传图片" prop="avatar">
|
<el-form-item label="上传图片" prop="avatar">
|
||||||
<!-- <image-upload v-model="form.avatar"/> -->
|
<!-- <image-upload v-model="form.avatar"/> -->
|
||||||
<upload v-model="form.fileUrl" :fileShow="true"></upload>
|
<upload v-model="form.fileUrl" :fileShow="true"></upload>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<div slot="footer" class="dialog-footer">
|
<div slot="footer" class="dialog-footer">
|
||||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||||
<el-button @click="cancel">取 消</el-button>
|
<el-button @click="cancel">取 消</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
<!-- 二维码 -->
|
<!-- 二维码 -->
|
||||||
<el-dialog :visible.sync="codeOpen" width="250px" append-to-body>
|
<el-dialog :visible.sync="codeOpen" width="250px" append-to-body>
|
||||||
<div>问卷标题:<span>{{ this.titles }}</span></div>
|
<div>问卷标题:<span>{{ this.titles }}</span></div>
|
||||||
<div>
|
<div>
|
||||||
<vue-qr ref="qrCode" :text="texturl" :logoSrc="logoSrc" :color-dark="randomColor"></vue-qr>
|
<vue-qr ref="qrCode" :text="texturl" :logoSrc="logoSrc" :color-dark="randomColor"></vue-qr>
|
||||||
</div>
|
</div>
|
||||||
<div slot="footer">
|
<div slot="footer">
|
||||||
<el-button type="primary" @click="() => {
|
<el-button type="primary" @click="() => {
|
||||||
codeOpen = false
|
codeOpen = false
|
||||||
}">确定</el-button>
|
}">确定</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { listWxuser, getWxuser, delWxuser, addWxuser, updateWxuser } from "@/api/abuwx/wxuser";
|
import { listWxuser, getWxuser, delWxuser, addWxuser, updateWxuser } from "@/api/abuwx/wxuser";
|
||||||
import upload from '@/components/FileUploadTp/index.vue'
|
import upload from '@/components/FileUploadTp/index.vue'
|
||||||
import VueQr from 'vue-qr'
|
import VueQr from 'vue-qr'
|
||||||
// import { Base64 } from "js-base64";
|
// import { Base64 } from "js-base64";
|
||||||
export default {
|
export default {
|
||||||
name: "Wxuser",
|
name: "Wxuser",
|
||||||
dicts: ['sys_user_sex'],
|
dicts: ['sys_user_sex'],
|
||||||
components: {
|
components: {
|
||||||
upload,
|
upload,
|
||||||
VueQr,
|
VueQr,
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
// 遮罩层
|
// 遮罩层
|
||||||
loading: true,
|
loading: true,
|
||||||
// 二维码内容
|
// 二维码内容
|
||||||
codeOpen: false,
|
codeOpen: false,
|
||||||
titles: '项目名称',
|
titles: '项目名称',
|
||||||
logoSrc: '',
|
logoSrc: '',
|
||||||
randomColor: 'black',
|
randomColor: 'black',
|
||||||
texturl: ``,
|
texturl: ``,
|
||||||
qrCodeUrl: '', // 存放生成的二维码url
|
qrCodeUrl: '', // 存放生成的二维码url
|
||||||
// 选中数组
|
// 选中数组
|
||||||
ids: [],
|
ids: [],
|
||||||
// 非单个禁用
|
// 非单个禁用
|
||||||
single: true,
|
single: true,
|
||||||
// 非多个禁用
|
// 非多个禁用
|
||||||
multiple: true,
|
multiple: true,
|
||||||
// 显示搜索条件
|
// 显示搜索条件
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
// 总条数
|
// 总条数
|
||||||
total: 0,
|
total: 0,
|
||||||
// 微信用户表格数据
|
// 微信用户表格数据
|
||||||
wxuserList: [],
|
wxuserList: [],
|
||||||
// 弹出层标题
|
// 弹出层标题
|
||||||
title: "",
|
title: "",
|
||||||
// 是否显示弹出层
|
// 是否显示弹出层
|
||||||
open: false,
|
open: false,
|
||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
openid: null,
|
openid: null,
|
||||||
gender: null,
|
gender: null,
|
||||||
},
|
},
|
||||||
// 表单参数
|
// 表单参数
|
||||||
form: {},
|
form: {},
|
||||||
// 表单校验
|
// 表单校验
|
||||||
rules: {
|
rules: {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
/** 查询微信用户列表 */
|
/** 查询微信用户列表 */
|
||||||
getList() {
|
getList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
listWxuser(this.queryParams).then(response => {
|
listWxuser(this.queryParams).then(response => {
|
||||||
this.wxuserList = response.rows;
|
this.wxuserList = response.rows;
|
||||||
this.total = response.total;
|
this.total = response.total;
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 取消按钮
|
// 取消按钮
|
||||||
cancel() {
|
cancel() {
|
||||||
this.open = false;
|
this.open = false;
|
||||||
this.reset();
|
this.reset();
|
||||||
},
|
},
|
||||||
//二维码
|
//二维码
|
||||||
openerweima(row) {
|
openerweima(row) {
|
||||||
this.texturl = `http://58.223.177.154:8082?id=${row.id}`
|
this.texturl = `http://58.223.177.154:8082?id=${row.id}`
|
||||||
this.codeOpen = true
|
this.codeOpen = true
|
||||||
},
|
},
|
||||||
// 表单重置
|
// 表单重置
|
||||||
reset() {
|
reset() {
|
||||||
this.form = {
|
this.form = {
|
||||||
id: null,
|
id: null,
|
||||||
nickname: null,
|
nickname: null,
|
||||||
avatar: null,
|
avatar: null,
|
||||||
openid: null,
|
openid: null,
|
||||||
gender: null,
|
gender: null,
|
||||||
createBy: null,
|
createBy: null,
|
||||||
createTime: null,
|
createTime: null,
|
||||||
updateBy: null,
|
updateBy: null,
|
||||||
updateTime: null,
|
updateTime: null,
|
||||||
remark: null
|
remark: null
|
||||||
};
|
};
|
||||||
this.resetForm("form");
|
this.resetForm("form");
|
||||||
},
|
},
|
||||||
/** 搜索按钮操作 */
|
/** 搜索按钮操作 */
|
||||||
handleQuery() {
|
handleQuery() {
|
||||||
this.queryParams.pageNum = 1;
|
this.queryParams.pageNum = 1;
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
/** 重置按钮操作 */
|
/** 重置按钮操作 */
|
||||||
resetQuery() {
|
resetQuery() {
|
||||||
this.resetForm("queryForm");
|
this.resetForm("queryForm");
|
||||||
this.handleQuery();
|
this.handleQuery();
|
||||||
},
|
},
|
||||||
// 多选框选中数据
|
// 多选框选中数据
|
||||||
handleSelectionChange(selection) {
|
handleSelectionChange(selection) {
|
||||||
this.ids = selection.map(item => item.id)
|
this.ids = selection.map(item => item.id)
|
||||||
this.single = selection.length !== 1
|
this.single = selection.length !== 1
|
||||||
this.multiple = !selection.length
|
this.multiple = !selection.length
|
||||||
},
|
},
|
||||||
/** 新增按钮操作 */
|
/** 新增按钮操作 */
|
||||||
handleAdd() {
|
handleAdd() {
|
||||||
this.reset();
|
this.reset();
|
||||||
this.open = true;
|
this.open = true;
|
||||||
this.title = "添加微信用户";
|
this.title = "添加微信用户";
|
||||||
},
|
},
|
||||||
/** 修改按钮操作 */
|
/** 修改按钮操作 */
|
||||||
handleUpdate(row) {
|
handleUpdate(row) {
|
||||||
this.reset();
|
this.reset();
|
||||||
const id = row.id || this.ids
|
const id = row.id || this.ids
|
||||||
getWxuser(id).then(response => {
|
getWxuser(id).then(response => {
|
||||||
this.form = response.data;
|
this.form = response.data;
|
||||||
this.open = true;
|
this.open = true;
|
||||||
this.title = "修改微信用户";
|
this.title = "修改微信用户";
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
/** 提交按钮 */
|
/** 提交按钮 */
|
||||||
submitForm() {
|
submitForm() {
|
||||||
this.$refs["form"].validate(valid => {
|
this.$refs["form"].validate(valid => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
if (this.form.id != null) {
|
if (this.form.id != null) {
|
||||||
updateWxuser(this.form).then(response => {
|
updateWxuser(this.form).then(response => {
|
||||||
this.$modal.msgSuccess("修改成功");
|
this.$modal.msgSuccess("修改成功");
|
||||||
this.open = false;
|
this.open = false;
|
||||||
this.getList();
|
this.getList();
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
addWxuser(this.form).then(response => {
|
addWxuser(this.form).then(response => {
|
||||||
this.$modal.msgSuccess("新增成功");
|
this.$modal.msgSuccess("新增成功");
|
||||||
this.open = false;
|
this.open = false;
|
||||||
this.getList();
|
this.getList();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
/** 删除按钮操作 */
|
/** 删除按钮操作 */
|
||||||
handleDelete(row) {
|
handleDelete(row) {
|
||||||
const ids = row.id || this.ids;
|
const ids = row.id || this.ids;
|
||||||
this.$modal.confirm('是否确认删除微信用户编号为"' + ids + '"的数据项?').then(function () {
|
this.$modal.confirm('是否确认删除微信用户编号为"' + ids + '"的数据项?').then(function () {
|
||||||
return delWxuser(ids);
|
return delWxuser(ids);
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
this.getList();
|
this.getList();
|
||||||
this.$modal.msgSuccess("删除成功");
|
this.$modal.msgSuccess("删除成功");
|
||||||
}).catch(() => { });
|
}).catch(() => { });
|
||||||
},
|
},
|
||||||
/** 导出按钮操作 */
|
/** 导出按钮操作 */
|
||||||
handleExport() {
|
handleExport() {
|
||||||
this.download('abuwx/wxuser/export', {
|
this.download('abuwx/wxuser/export', {
|
||||||
...this.queryParams
|
...this.queryParams
|
||||||
}, `wxuser_${new Date().getTime()}.xlsx`)
|
}, `wxuser_${new Date().getTime()}.xlsx`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
Loading…
x
Reference in New Issue
Block a user