Commit 524601d5 authored by renjintao's avatar renjintao

import/index

parent 4466a9f2
<template> <template>
<div class="myBug"> <div class="myBug">
<Tabs :animated="false" @on-click="tab"> <Tabs :animated="false" @on-click="tab">
<TabPane label="我的"></TabPane> <TabPane label="我的"></TabPane>
<TabPane label="所有"></TabPane> <TabPane label="所有"></TabPane>
</Tabs> </Tabs>
<DataGrid <DataGrid :columns="columns" ref="grid" :action="action" :conditions="easySearch" @on-selection-change="selectInfo" :height="gridHeight">
:columns="columns" <template slot="easySearch">
ref="grid" <Form inline>
:action="action" <FormItem>
:conditions="easySearch" <dictionary code="Test.bug.status" v-model="easySearch.status.value" style="width:400px;" multiple></dictionary>
@on-selection-change="selectInfo" </FormItem>
:height="gridHeight" <FormItem>
> <Input search enter-button placeholder="请输入bug标题或地址" @on-search="search" v-model="easySearch.keys.value" />
<template slot="easySearch"> </FormItem>
<Form inline > </Form>
<FormItem> </template>
<dictionary <template slot="searchForm">
code="Test.bug.status" <Search />
v-model="easySearch.status.value" </template>
style="width:400px;" <template slot="batch">
multiple <Form :model="formMyCheck" :label-width="5" :rules="ruleValidate" inline ref="formValidate">
></dictionary> <FormItem>
</FormItem> <dictionary code="Test.but.statusOper" v-model="selectBatch" type="radio" @on-change="statuChange" ref="dicradio"></dictionary>
<FormItem> </FormItem>
<Input <FormItem v-if="selectBatch == 5" label prop="selectAlloter">
search <UserSelect ref="userSelected" v-model="alloter" @on-change="changeUserSelect" />
enter-button </FormItem>
placeholder="请输入bug标题或地址" <FormItem>
@on-search="search" <Button type="primary" @click="upChange">确定</Button>
v-model="easySearch.keys.value" </FormItem>
/> </Form>
</FormItem> </template>
</Form>
</template>
<template slot="searchForm">
<Search />
</template>
<template slot="batch">
<Form :model="formMyCheck" :label-width="5" :rules="ruleValidate" inline ref="formValidate">
<FormItem>
<dictionary
code="Test.but.statusOper"
v-model="selectBatch"
type="radio"
@on-change="statuChange"
ref="dicradio"
></dictionary>
</FormItem>
<FormItem v-if="selectBatch == 5" label prop="selectAlloter">
<UserSelect ref="userSelected" v-model="alloter" @on-change="changeUserSelect" />
</FormItem>
<FormItem>
<Button type="primary" @click="upChange">确定</Button>
</FormItem>
</Form>
</template>
</DataGrid> </DataGrid>
<Modal v-model="modalEdit" fullscreen title="bug编辑" @on-cancel="canselModal(1)"> <Modal v-model="modalEdit" fullscreen title="bug编辑" @on-cancel="canselModal(1)">
<edit ref="edit" /> <edit ref="edit" />
<div slot="footer"> <div slot="footer">
<Button @click="canselModal(1)">取消</Button> <Button @click="canselModal(1)">取消</Button>
<Button type="primary" @click="addSave">确定</Button> <Button type="primary" @click="addSave">确定</Button>
</div> </div>
</Modal> </Modal>
<Modal v-model="modalDetail" fullscreen title="bug操作" @on-cancel="canselModal(2)"> <Modal v-model="modalDetail" fullscreen title="bug操作" @on-cancel="canselModal(2)">
<detail ref="detail" /> <detail ref="detail" />
<div slot="footer"> <div slot="footer">
<Button @click="canselModal(2)">取消</Button> <Button @click="canselModal(2)">取消</Button>
<Button type="primary" @click="detailSave">确定</Button> <Button type="primary" @click="detailSave">确定</Button>
</div> </div>
</Modal> </Modal>
<Modal v-model="modalInfo" title="批量信息"> <Modal v-model="modalInfo" title="批量信息">
确定进行批量操作? 确定进行批量操作?
<div slot="footer"> <div slot="footer">
<Button @click="modalInfo = false">取消</Button> <Button @click="modalInfo = false">取消</Button>
<Button type="primary" @click="upSave">确定</Button> <Button type="primary" @click="upSave">确定</Button>
</div> </div>
</Modal> </Modal>
</div> </div>
</template> </template>
<script> <script>
import Api from "@/libs/bug"; import Api from "@/libs/bug";
import edit from "./component/add"; import edit from "./component/add";
import detail from "./component/detail"; import detail from "./component/detail";
import Search from "./component/search"; import Search from "./component/search";
export default { export default {
name: "bug", name: "bug",
components: { components: {
edit, edit,
detail, detail,
Search Search
}, },
data() { data() {
let userInfo = this.$store.state.admin.user.info; let userInfo = this.$store.state.admin.user.info;
return { return {
action: Api.index, action: Api.index,
easySearch: { easySearch: {
keys: { op: "title,pagePath", value: "" }, keys: {
status: { op: "In", value: [1,5,0] }, op: "title,pagePath",
creatorUserId: { value: ""
op: "Equal", },
value: userInfo.userId status: {
} op: "In",
}, value: [1, 5, 0]
selectList: [], },
results: [], creatorUserId: {
footerBar: false, op: "Equal",
modalInfo: false, value: userInfo.userId
gridHeight: "", }
totals: 10, },
pageSizeOpts: [20, 50, 100], selectList: [],
pageSize: 20, results: [],
tabIndex: 1, footerBar: false,
columns: [ modalInfo: false,
{ gridHeight: "",
type: "selection", totals: 10,
width: 60, pageSizeOpts: [20, 50, 100],
align: "center" pageSize: 20,
}, tabIndex: 1,
{ columns: [{
key: "id", type: "selection",
width: 80, width: 60,
title: this.l("id") align: "center"
},
{
key: "id",
width: 80,
title: this.l("id")
},
{
title: this.l("level"),
key: "level",
width: 100
},
{
title: this.l("title"),
key: "title",
width: 240,
tooltip: true,
render: (h, params) =>
h(
"a", {
style: {},
on: {
click: () => {
this.detailInfo(params.row);
}
}
},
params.row.title
)
},
{
title: this.l("pagePath"),
key: "pagePath",
tooltip: true,
render: (h, params) =>
h(
"a", {
style: {},
on: {
click: () => {
window.open(params.row.pagePath, "_blank");
}
}
},
params.row.pagePath
)
},
{
title: this.l("status"),
key: "status",
width: 100,
code: 'Test.bug.status',
},
{
title: this.l("creationTime"),
key: "creationTime",
align: "center",
width: 180
},
{
title: this.l("createor"),
key: "createor",
width: 120
},
{
title: this.l("alloter"),
key: "alloter",
width: 120
},
{
title: this.l("lastModificationTime"),
key: "lastModificationTime",
align: "center",
width: 180
},
{
title: this.l("auditUser"),
align: "center",
key: "auditUser",
width: 120
},
{
key: "action",
title: "操作",
align: "center",
width: 180,
render: (h, params) =>
h("div", [
h(
"Button", {
props: {
type: "text",
size: "small"
},
style: {
color: "green"
},
on: {
click: () => {
this.detailInfo(params.row);
}
}
},
"解决"
),
h(
"Button", {
props: {
type: "text",
size: "small"
},
style: {
color: "green"
},
on: {
click: () => {
this.editInfo(params.row);
}
}
},
"编辑"
)
])
}
],
statusList: [{
name: "确认",
value: "1"
},
{
name: "解决",
value: "2"
},
{
name: "冻结",
value: "4"
},
{
name: "关闭",
value: "3"
}
],
modalEdit: false,
modalDetail: false,
searchForm: {
Status: 0,
PageSize: 20,
Current: 1
},
listBatch: {
ids: [],
statusNew: 0,
auditUser: "",
workHours: 0,
remark: "",
alloter: "",
alloterId: null
},
selectBatch: 100,
auditUser: null,
alloter: {},
formMyCheck: {
selectAlloter: null
},
ruleValidate: {
selectAlloter: [{
required: true,
message: "请选择驳指派人",
type: "number",
trigger: "change"
}]
}
};
},
computed: {},
async fetch({
store,
params
}) {
await store.dispatch("loadDictionary"); // 加载数据字典
},
methods: {
//选项卡切换
tab(data) {
if (data == "0") {
this.easySearch.creatorUserId.value = this.$store.state.userInfo.userId;
} else {
this.easySearch.creatorUserId.value = null;
}
this.search();
}, },
{ search() {
title: this.l("level"), this.$refs.grid.easySearch(this.easySearch);
key: "level",
width: 100
}, },
{ //打开修改窗口
title: this.l("title"), editInfo(value) {
key: "title", this.modalEdit = true;
width: 240, this.$refs.edit.editeInfo(value);
tooltip: true,
render: (h, params) =>
h(
"a",
{
style: {},
on: {
click: () => {
this.detailInfo(params.row);
}
}
},
params.row.title
)
}, },
{ //修改事件
title: this.l("pagePath"), addSave() {
key: "pagePath", let param = this.$refs.edit.addBugInfo();
tooltip: true, param.auditUser = this.$store.state.userInfo.userName;
render: (h, params) => if (param.id != null) {
h( //增加确定
"a", this.$http.bug.createorupdate(param).then(res => {
{ if (res.result.status) {
style: {}, this.$Message.success("修改成功!");
on: { this.search();
click: () => { } else {
window.open(params.row.pagePath, "_blank"); this.$Message.error("修改失败!");
} }
} this.modalEdit = false;
}, });
params.row.pagePath } else {
) this.$Message.error("修改失败!");
}
}, },
{ //打开确定/操作窗口
title: this.l("status"), detailInfo(value) {
key: "status", this.modalDetail = true;
width: 100, this.$refs.detail.detailInfo(value);
render: (h, params) => {
return h("state", {
props: {
code: "Test.bug.status",
type: "text",
value: params.row.status + ""
}
});
}
}, },
{ //确定/关闭操作
title: this.l("creationTime"), detailSave() {
key: "creationTime", let param = this.$refs.detail.addBugInfo();
align: "center", param.auditUser = this.$store.state.userInfo.userName;
width: 180 param.ids = [param.id];
if (param.id != null) {
//增加确定
this.$http.bug.doaction(param).then(res => {
if (res.result) {
this.$Message.success("操作成功!");
this.search();
} else {
this.$Message.error("操作失败!");
}
this.modalDetail = false;
});
} else {
this.$Message.error("操作失败!");
}
}, },
{ //取消窗口,查看状态
title: this.l("createor"), canselModal(type) {
key: "createor", let param;
width: 120 if (type == 1) {
param = this.$refs.edit.addBugInfo();
} else {
param = this.$refs.detail.addBugInfo();
}
param.auditUser = this.$store.state.userInfo.userName;
param.ids = [param.id];
param.statusNew = 6;
if (param.id != null) {
//增加改变状态为6/查看
this.$http.bug.doaction(param).then(res => {
if (res.result) {
//this.search(this.searchForm)
} else {
this.$Message.error("操作失败!");
}
});
} else {
this.$Message.error("操作失败!");
}
this.modalDetail = false;
this.modalEdit = false;
}, },
{ selectInfo(value) {
title: this.l("alloter"), this.selectList = [];
key: "alloter", this.selectList = value;
width: 120 let statueArry = [];
value.forEach(data => {
var that = this;
statueArry.push(data.id);
});
this.results = [];
this.results = statueArry;
this.getListId(statueArry);
}, },
{ //得到需要批量操作的ids
title: this.l("lastModificationTime"), getListId(value) {
key: "lastModificationTime", this.listBatch.ids = value;
align: "center", if (this.listBatch.ids.length > 0) {
width: 180 this.footerBar = true;
//this.showBt = false
this.selectBatch = 100;
} else {
this.footerBar = false;
//this.showBt = false
this.selectBatch = 100;
}
this.listBatch.auditUser = this.$store.state.userInfo.userName;
}, },
{ //批量操作
title: this.l("auditUser"), statuChange(value) {
align: "center", this.listBatch.statusNew = value;
key: "auditUser",
width: 120
}, },
{ upChange() {
key:"action", if (this.selectBatch != 100) {
title: "操作", if (this.listBatch.ids.length != 0) {
align: "center", if (this.selectBatch == 5) {
width: 180, this.$refs["formValidate"].validate(valid => {
render: (h, params) => if (valid) {
h("div", [ let alloterInfo = this.$refs["userSelected"].getSelectItems();
h( this.listBatch.alloter = alloterInfo[0].userName;
"Button", this.listBatch.alloterId = alloterInfo[0].id;
{ this.modalInfo = true;
props: { }
type: "text", });
size: "small" } else {
}, this.modalInfo = true;
style: {
color: "green"
},
on: {
click: () => {
this.detailInfo(params.row);
} }
} } else {
}, this.$Message.error("请选择操作列表!");
"解决" this.selectBatch = 100;
), }
h( } else {
"Button", this.$Message.error("请选择操作!");
{ }
props: { },
type: "text", changeUserSelect(val) {
size: "small" if (val != undefined && val.length != "" && val.length != 0) {
}, this.formMyCheck.selectAlloter = 1;
style: { } else {
color: "green" this.formMyCheck.selectAlloter = null;
}, this.listBatch.alloter = "";
on: { this.listBatch.alloterId = null;
click: () => { }
this.editInfo(params.row); },
} upSave() {
} //增加确定
}, this.$http.bug.doaction(this.listBatch).then(res => {
"编辑" if (res.result) {
) this.$Message.success("操作成功!");
]) this.search();
} this.footerBar = false;
], this.showBt = false;
this.modalInfo = false;
statusList: [ this.selectBatch = 100;
{ name: "确认", value: "1" }, } else {
{ name: "解决", value: "2" }, this.$Message.error("操作失败!");
{ name: "冻结", value: "4" }, }
{ name: "关闭", value: "3" }
],
modalEdit: false,
modalDetail: false,
searchForm: {
Status: 0,
PageSize: 20,
Current: 1
},
listBatch: {
ids: [],
statusNew: 0,
auditUser: "",
workHours: 0,
remark: "",
alloter: "",
alloterId: null
},
selectBatch: 100,
auditUser: null,
alloter: {},
formMyCheck: {
selectAlloter: null
},
ruleValidate: {
selectAlloter: [
{
required: true,
message: "请选择驳指派人",
type: "number",
trigger: "change"
}
]
}
};
},
computed: {},
async fetch({ store, params }) {
await store.dispatch("loadDictionary"); // 加载数据字典
},
methods: {
//选项卡切换
tab(data) {
if (data == "0") {
this.easySearch.creatorUserId.value = this.$store.state.userInfo.userId;
} else {
this.easySearch.creatorUserId.value = null;
}
this.search();
},
search() {
this.$refs.grid.easySearch(this.easySearch);
},
//打开修改窗口
editInfo(value) {
this.modalEdit = true;
this.$refs.edit.editeInfo(value);
},
//修改事件
addSave() {
let param = this.$refs.edit.addBugInfo();
param.auditUser = this.$store.state.userInfo.userName;
if (param.id != null) {
//增加确定
this.$http.bug.createorupdate(param).then(res => {
if (res.result.status) {
this.$Message.success("修改成功!");
this.search();
} else {
this.$Message.error("修改失败!");
}
this.modalEdit = false;
});
} else {
this.$Message.error("修改失败!");
}
},
//打开确定/操作窗口
detailInfo(value) {
this.modalDetail = true;
this.$refs.detail.detailInfo(value);
},
//确定/关闭操作
detailSave() {
let param = this.$refs.detail.addBugInfo();
param.auditUser = this.$store.state.userInfo.userName;
param.ids = [param.id];
if (param.id != null) {
//增加确定
this.$http.bug.doaction(param).then(res => {
if (res.result) {
this.$Message.success("操作成功!");
this.search();
} else {
this.$Message.error("操作失败!");
}
this.modalDetail = false;
});
} else {
this.$Message.error("操作失败!");
}
},
//取消窗口,查看状态
canselModal(type) {
let param;
if (type == 1) {
param = this.$refs.edit.addBugInfo();
} else {
param = this.$refs.detail.addBugInfo();
}
param.auditUser = this.$store.state.userInfo.userName;
param.ids = [param.id];
param.statusNew = 6;
if (param.id != null) {
//增加改变状态为6/查看
this.$http.bug.doaction(param).then(res => {
if (res.result) {
//this.search(this.searchForm)
} else {
this.$Message.error("操作失败!");
}
});
} else {
this.$Message.error("操作失败!");
}
this.modalDetail = false;
this.modalEdit = false;
},
selectInfo(value) {
this.selectList = [];
this.selectList = value;
let statueArry = [];
value.forEach(data => {
var that = this;
statueArry.push(data.id);
});
this.results = [];
this.results = statueArry;
this.getListId(statueArry);
},
//得到需要批量操作的ids
getListId(value) {
this.listBatch.ids = value;
if (this.listBatch.ids.length > 0) {
this.footerBar = true;
//this.showBt = false
this.selectBatch = 100;
} else {
this.footerBar = false;
//this.showBt = false
this.selectBatch = 100;
}
this.listBatch.auditUser = this.$store.state.userInfo.userName;
},
//批量操作
statuChange(value) {
this.listBatch.statusNew = value;
},
upChange() {
if (this.selectBatch != 100) {
if (this.listBatch.ids.length != 0) {
if (this.selectBatch == 5) {
this.$refs["formValidate"].validate(valid => {
if (valid) {
let alloterInfo = this.$refs["userSelected"].getSelectItems();
this.listBatch.alloter = alloterInfo[0].userName;
this.listBatch.alloterId = alloterInfo[0].id;
this.modalInfo = true;
}
}); });
} else { },
this.modalInfo = true; arry2Name(arryList, values) {
} //预警类别转换
} else { var codes = arryList;
this.$Message.error("请选择操作列表!"); var name = "";
this.selectBatch = 100; for (let i in codes) {
} if (values == codes[i].value) {
} else { name = codes[i].name;
this.$Message.error("请选择操作!"); }
} }
}, return name;
changeUserSelect(val) { },
if (val != undefined && val.length != "" && val.length != 0) { canselFooter() {
this.formMyCheck.selectAlloter = 1; this.footerBar = false;
} else { this.selectBatch = 100;
this.formMyCheck.selectAlloter = null; },
this.listBatch.alloter = ""; l(key) {
this.listBatch.alloterId = null; let vkey = "bug" + "." + key;
} return this.$t(vkey) || key;
},
upSave() {
//增加确定
this.$http.bug.doaction(this.listBatch).then(res => {
if (res.result) {
this.$Message.success("操作成功!");
this.search();
this.footerBar = false;
this.showBt = false;
this.modalInfo = false;
this.selectBatch = 100;
} else {
this.$Message.error("操作失败!");
}
});
},
arry2Name(arryList, values) {
//预警类别转换
var codes = arryList;
var name = "";
for (let i in codes) {
if (values == codes[i].value) {
name = codes[i].name;
} }
}
return name;
},
canselFooter() {
this.footerBar = false;
this.selectBatch = 100;
}, },
l(key) { created() {
let vkey = "bug" + "." + key;
return this.$t(vkey) || key;
}
},
created() {
window.screenHeight = window.innerHeight;
this.gridHeight = window.screenHeight - 250;
},
mounted() {
// this.search(this.searchForm)
window.onresize = () => {
return (() => {
window.screenHeight = window.innerHeight; window.screenHeight = window.innerHeight;
this.gridHeight = window.screenHeight - 250; this.gridHeight = window.screenHeight - 250;
})(); },
}; mounted() {
} // this.search(this.searchForm)
window.onresize = () => {
return (() => {
window.screenHeight = window.innerHeight;
this.gridHeight = window.screenHeight - 250;
})();
};
}
}; };
</script> </script>
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<Button type="primary" @click="add">新增</Button> <Button type="primary" @click="add">新增</Button>
</template> </template>
</DataGrid> </DataGrid>
<Modal v-model="modal" :title="title" width="1200" :fullscreen="full" footer-hide> <Modal v-model="modal" :title="title" width="1200" :fullscreen="full" :footer-hide="initBtn">
<component :is="detail" :eid="curId" @on-close="cancel" @on-ok="ok" /> <component :is="detail" :eid="curId" @on-close="cancel" @on-ok="ok" />
</Modal> </Modal>
</div> </div>
...@@ -48,6 +48,7 @@ export default { ...@@ -48,6 +48,7 @@ export default {
}, },
modal: false, modal: false,
full: false, full: false,
initBtn: true,
title: "新增", title: "新增",
detail: null, detail: null,
curId: 0, curId: 0,
...@@ -213,6 +214,7 @@ export default { ...@@ -213,6 +214,7 @@ export default {
add() { add() {
this.curId = 0; this.curId = 0;
this.full = false; this.full = false;
this.initBtn = true;
this.title = "新增"; this.title = "新增";
this.detail = () => import("./add"); this.detail = () => import("./add");
this.modal = true; this.modal = true;
...@@ -227,6 +229,7 @@ export default { ...@@ -227,6 +229,7 @@ export default {
this.curId = id; this.curId = id;
this.title = "详情"; this.title = "详情";
this.full = false; this.full = false;
this.initBtn = false;
this.detail = () => import("./detail"); this.detail = () => import("./detail");
this.modal = true; this.modal = true;
}, },
...@@ -234,6 +237,7 @@ export default { ...@@ -234,6 +237,7 @@ export default {
this.curId = id; this.curId = id;
this.title = "编辑"; this.title = "编辑";
this.full = false; this.full = false;
this.initBtn = true;
this.detail = () => import("./edit"); this.detail = () => import("./edit");
this.modal = true; this.modal = true;
}, },
...@@ -241,6 +245,7 @@ export default { ...@@ -241,6 +245,7 @@ export default {
this.curId = row.id; this.curId = row.id;
this.title = "处理文件:" + row.name; this.title = "处理文件:" + row.name;
this.full = true; this.full = true;
this.initBtn = true;
this.detail = () => import("./process"); this.detail = () => import("./process");
this.modal = true; this.modal = true;
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment