commit
This commit is contained in:
@@ -592,7 +592,23 @@
|
|||||||
},
|
},
|
||||||
handleSubmit() {
|
handleSubmit() {
|
||||||
if (this.data.length < 1) {
|
if (this.data.length < 1) {
|
||||||
this.$message.warning('请输入征求意见')
|
this.isSubmit = true
|
||||||
|
var json = this.json
|
||||||
|
json.commentText = this.commentText
|
||||||
|
json.info = []
|
||||||
|
json.form = this.form
|
||||||
|
json.department = this.$store.getters.userInfo.orgName
|
||||||
|
this.$http.post('lawss/activiti/completeTask', {
|
||||||
|
json: JSON.stringify(json),
|
||||||
|
taskId: this.taskIds,
|
||||||
|
userId: this.$store.getters.userInfo.userId
|
||||||
|
}, {}, res => {
|
||||||
|
if (res.success) {
|
||||||
|
this.$message.success('提交成功')
|
||||||
|
this.$router.push('/processCenter')
|
||||||
|
}
|
||||||
|
this.isSubmit = false
|
||||||
|
})
|
||||||
} else {
|
} else {
|
||||||
var a = 0
|
var a = 0
|
||||||
var b = 0
|
var b = 0
|
||||||
|
|||||||
@@ -537,9 +537,6 @@
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleSubmit() {
|
handleSubmit() {
|
||||||
if (this.data.length < 1) {
|
|
||||||
this.$message.warning("请输入征求意见搞");
|
|
||||||
} else {
|
|
||||||
this.isSubmit = true;
|
this.isSubmit = true;
|
||||||
var json = this.json;
|
var json = this.json;
|
||||||
json.oldinfo = this.oldData;
|
json.oldinfo = this.oldData;
|
||||||
@@ -556,7 +553,6 @@
|
|||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
});
|
});
|
||||||
}
|
|
||||||
},
|
},
|
||||||
getData() {
|
getData() {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
|
|||||||
@@ -408,34 +408,38 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
upload(row, title) {
|
upload(row, title) {
|
||||||
var params = {
|
if (row.length > 0) {
|
||||||
columnName: {
|
var params = {
|
||||||
chapterNumber: "章条编号",
|
columnName: {
|
||||||
chapterName: "章节名称",
|
chapterNumber: "章条编号",
|
||||||
commentText: "修改意见内容(包括理由或依据)",
|
chapterName: "章节名称",
|
||||||
oldText: "修改前",
|
commentText: "修改意见内容(包括理由或依据)",
|
||||||
newText: "修改后",
|
oldText: "修改前",
|
||||||
reason: "修改理由",
|
newText: "修改后",
|
||||||
department: "提出部门",
|
reason: "修改理由",
|
||||||
responUserName: "提出人",
|
department: "提出部门",
|
||||||
},
|
responUserName: "提出人",
|
||||||
dataList: []
|
},
|
||||||
};
|
dataList: []
|
||||||
if (title === '上报意见.xls') {
|
};
|
||||||
params.columnName.stateText = "处理意见"
|
if (title === '上报意见.xls') {
|
||||||
}
|
params.columnName.stateText = "处理意见"
|
||||||
params.dataList = JSON.parse(JSON.stringify(row));
|
|
||||||
params.dataList.forEach(item => {
|
|
||||||
if (item.state === "1") {
|
|
||||||
item.stateText = "上报";
|
|
||||||
} else if (item.state === "2") {
|
|
||||||
item.stateText = "处理后上报";
|
|
||||||
} else {
|
|
||||||
item.stateText = "不上报";
|
|
||||||
}
|
}
|
||||||
});
|
params.dataList = JSON.parse(JSON.stringify(row));
|
||||||
this.$http.downloadFile("/api/lawss/activiti/export_excel", params, title, res => {
|
params.dataList.forEach(item => {
|
||||||
});
|
if (item.state === "1") {
|
||||||
|
item.stateText = "上报";
|
||||||
|
} else if (item.state === "2") {
|
||||||
|
item.stateText = "处理后上报";
|
||||||
|
} else {
|
||||||
|
item.stateText = "不上报";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.$http.downloadFile("/api/lawss/activiti/export_excel", params, title, res => {
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.$message.warning('无上报数据')
|
||||||
|
}
|
||||||
},
|
},
|
||||||
handleTabs(name) {
|
handleTabs(name) {
|
||||||
this.active = name;
|
this.active = name;
|
||||||
@@ -443,9 +447,6 @@ export default {
|
|||||||
handleSave() {
|
handleSave() {
|
||||||
},
|
},
|
||||||
handleSubmit() {
|
handleSubmit() {
|
||||||
if (this.data.length < 1) {
|
|
||||||
this.$message.warning("请输入征求意见搞");
|
|
||||||
} else {
|
|
||||||
this.isSubmit = true;
|
this.isSubmit = true;
|
||||||
var json = this.json;
|
var json = this.json;
|
||||||
json.hqFlag = '0';
|
json.hqFlag = '0';
|
||||||
@@ -461,7 +462,6 @@ export default {
|
|||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
});
|
});
|
||||||
}
|
|
||||||
},
|
},
|
||||||
handleSubmitNo() {
|
handleSubmitNo() {
|
||||||
if (this.commentText) {
|
if (this.commentText) {
|
||||||
|
|||||||
@@ -398,34 +398,38 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
upload(row, title) {
|
upload(row, title) {
|
||||||
var params = {
|
if (row.length > 0) {
|
||||||
columnName: {
|
var params = {
|
||||||
chapterNumber: "章条编号",
|
columnName: {
|
||||||
chapterName: "章节名称",
|
chapterNumber: "章条编号",
|
||||||
commentText: "修改意见内容(包括理由或依据)",
|
chapterName: "章节名称",
|
||||||
oldText: "修改前",
|
commentText: "修改意见内容(包括理由或依据)",
|
||||||
newText: "修改后",
|
oldText: "修改前",
|
||||||
reason: "修改理由",
|
newText: "修改后",
|
||||||
department: "提出部门",
|
reason: "修改理由",
|
||||||
responUserName: "提出人",
|
department: "提出部门",
|
||||||
},
|
responUserName: "提出人",
|
||||||
dataList: []
|
},
|
||||||
}
|
dataList: []
|
||||||
if (title === '上报意见.xls') {
|
};
|
||||||
params.columnName.stateText = "处理意见"
|
if (title === '上报意见.xls') {
|
||||||
}
|
params.columnName.stateText = "处理意见"
|
||||||
params.dataList = JSON.parse(JSON.stringify(row))
|
|
||||||
params.dataList.forEach(item => {
|
|
||||||
if (item.state === '1') {
|
|
||||||
item.stateText = '上报'
|
|
||||||
} else if (item.state === '2') {
|
|
||||||
item.stateText = '处理后上报'
|
|
||||||
} else {
|
|
||||||
item.stateText = '不上报'
|
|
||||||
}
|
}
|
||||||
})
|
params.dataList = JSON.parse(JSON.stringify(row));
|
||||||
this.$http.downloadFile('/api/lawss/activiti/export_excel', params, title, res => {
|
params.dataList.forEach(item => {
|
||||||
})
|
if (item.state === "1") {
|
||||||
|
item.stateText = "上报";
|
||||||
|
} else if (item.state === "2") {
|
||||||
|
item.stateText = "处理后上报";
|
||||||
|
} else {
|
||||||
|
item.stateText = "不上报";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.$http.downloadFile("/api/lawss/activiti/export_excel", params, title, res => {
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.$message.warning('无上报数据')
|
||||||
|
}
|
||||||
},
|
},
|
||||||
stateText(row) {
|
stateText(row) {
|
||||||
if (row === '1') {
|
if (row === '1') {
|
||||||
@@ -440,9 +444,6 @@ export default {
|
|||||||
handleSave() {
|
handleSave() {
|
||||||
},
|
},
|
||||||
handleSubmit() {
|
handleSubmit() {
|
||||||
if (this.data.length < 1) {
|
|
||||||
this.$message.warning('请输入征求意见搞')
|
|
||||||
} else {
|
|
||||||
this.isSubmit = true
|
this.isSubmit = true
|
||||||
var json = this.json
|
var json = this.json
|
||||||
json.bdFlag = '0'
|
json.bdFlag = '0'
|
||||||
@@ -458,7 +459,6 @@ export default {
|
|||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
})
|
})
|
||||||
}
|
|
||||||
},
|
},
|
||||||
handleSubmitNo() {
|
handleSubmitNo() {
|
||||||
if (this.commentText) {
|
if (this.commentText) {
|
||||||
|
|||||||
@@ -398,34 +398,38 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
upload(row, title) {
|
upload(row, title) {
|
||||||
var params = {
|
if (row.length > 0) {
|
||||||
columnName: {
|
var params = {
|
||||||
chapterNumber: "章条编号",
|
columnName: {
|
||||||
chapterName: "章节名称",
|
chapterNumber: "章条编号",
|
||||||
commentText: "修改意见内容(包括理由或依据)",
|
chapterName: "章节名称",
|
||||||
oldText: "修改前",
|
commentText: "修改意见内容(包括理由或依据)",
|
||||||
newText: "修改后",
|
oldText: "修改前",
|
||||||
reason: "修改理由",
|
newText: "修改后",
|
||||||
department: "提出部门",
|
reason: "修改理由",
|
||||||
responUserName: "提出人",
|
department: "提出部门",
|
||||||
},
|
responUserName: "提出人",
|
||||||
dataList: []
|
},
|
||||||
}
|
dataList: []
|
||||||
if (title === '上报意见.xls') {
|
};
|
||||||
params.columnName.stateText = "处理意见"
|
if (title === '上报意见.xls') {
|
||||||
}
|
params.columnName.stateText = "处理意见"
|
||||||
params.dataList = JSON.parse(JSON.stringify(row))
|
|
||||||
params.dataList.forEach(item => {
|
|
||||||
if (item.state === '1') {
|
|
||||||
item.stateText = '上报'
|
|
||||||
} else if (item.state === '2') {
|
|
||||||
item.stateText = '处理后上报'
|
|
||||||
} else {
|
|
||||||
item.stateText = '不上报'
|
|
||||||
}
|
}
|
||||||
})
|
params.dataList = JSON.parse(JSON.stringify(row));
|
||||||
this.$http.downloadFile('/api/lawss/activiti/export_excel', params, title, res => {
|
params.dataList.forEach(item => {
|
||||||
})
|
if (item.state === "1") {
|
||||||
|
item.stateText = "上报";
|
||||||
|
} else if (item.state === "2") {
|
||||||
|
item.stateText = "处理后上报";
|
||||||
|
} else {
|
||||||
|
item.stateText = "不上报";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.$http.downloadFile("/api/lawss/activiti/export_excel", params, title, res => {
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.$message.warning('无上报数据')
|
||||||
|
}
|
||||||
},
|
},
|
||||||
stateText(row) {
|
stateText(row) {
|
||||||
if (row === '1') {
|
if (row === '1') {
|
||||||
@@ -440,9 +444,6 @@ export default {
|
|||||||
handleSave() {
|
handleSave() {
|
||||||
},
|
},
|
||||||
handleSubmit() {
|
handleSubmit() {
|
||||||
if (this.data.length < 1) {
|
|
||||||
this.$message.warning('请输入征求意见搞')
|
|
||||||
} else {
|
|
||||||
this.isSubmit = true
|
this.isSubmit = true
|
||||||
var json = this.json
|
var json = this.json
|
||||||
json.directorFlag = '0'
|
json.directorFlag = '0'
|
||||||
@@ -458,7 +459,6 @@ export default {
|
|||||||
}
|
}
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
})
|
})
|
||||||
}
|
|
||||||
},
|
},
|
||||||
handleSubmitNo() {
|
handleSubmitNo() {
|
||||||
if (this.commentText) {
|
if (this.commentText) {
|
||||||
|
|||||||
@@ -398,34 +398,38 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
upload(row, title) {
|
upload(row, title) {
|
||||||
var params = {
|
if (row.length > 0) {
|
||||||
columnName: {
|
var params = {
|
||||||
chapterNumber: "章条编号",
|
columnName: {
|
||||||
chapterName: "章节名称",
|
chapterNumber: "章条编号",
|
||||||
commentText: "修改意见内容(包括理由或依据)",
|
chapterName: "章节名称",
|
||||||
oldText: "修改前",
|
commentText: "修改意见内容(包括理由或依据)",
|
||||||
newText: "修改后",
|
oldText: "修改前",
|
||||||
reason: "修改理由",
|
newText: "修改后",
|
||||||
department: "提出部门",
|
reason: "修改理由",
|
||||||
responUserName: "提出人",
|
department: "提出部门",
|
||||||
},
|
responUserName: "提出人",
|
||||||
dataList: []
|
},
|
||||||
};
|
dataList: []
|
||||||
if (title === '上报意见.xls') {
|
};
|
||||||
params.columnName.stateText = "处理意见"
|
if (title === '上报意见.xls') {
|
||||||
}
|
params.columnName.stateText = "处理意见"
|
||||||
params.dataList = JSON.parse(JSON.stringify(row));
|
|
||||||
params.dataList.forEach(item => {
|
|
||||||
if (item.state === "1") {
|
|
||||||
item.stateText = "上报";
|
|
||||||
} else if (item.state === "2") {
|
|
||||||
item.stateText = "处理后上报";
|
|
||||||
} else {
|
|
||||||
item.stateText = "不上报";
|
|
||||||
}
|
}
|
||||||
});
|
params.dataList = JSON.parse(JSON.stringify(row));
|
||||||
this.$http.downloadFile("/api/lawss/activiti/export_excel", params, title, res => {
|
params.dataList.forEach(item => {
|
||||||
});
|
if (item.state === "1") {
|
||||||
|
item.stateText = "上报";
|
||||||
|
} else if (item.state === "2") {
|
||||||
|
item.stateText = "处理后上报";
|
||||||
|
} else {
|
||||||
|
item.stateText = "不上报";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.$http.downloadFile("/api/lawss/activiti/export_excel", params, title, res => {
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.$message.warning('无上报数据')
|
||||||
|
}
|
||||||
},
|
},
|
||||||
stateText(row) {
|
stateText(row) {
|
||||||
if (row === "1") {
|
if (row === "1") {
|
||||||
@@ -440,9 +444,6 @@ export default {
|
|||||||
handleSave() {
|
handleSave() {
|
||||||
},
|
},
|
||||||
handleSubmit() {
|
handleSubmit() {
|
||||||
if (this.data.length < 1) {
|
|
||||||
this.$message.warning("请输入征求意见搞");
|
|
||||||
} else {
|
|
||||||
this.isSubmit = true;
|
this.isSubmit = true;
|
||||||
var json = this.json;
|
var json = this.json;
|
||||||
json.presidentFlag = '0';
|
json.presidentFlag = '0';
|
||||||
@@ -458,7 +459,6 @@ export default {
|
|||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
});
|
});
|
||||||
}
|
|
||||||
},
|
},
|
||||||
handleSubmitNo() {
|
handleSubmitNo() {
|
||||||
if (this.commentText) {
|
if (this.commentText) {
|
||||||
|
|||||||
@@ -350,34 +350,38 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
upload(row, title) {
|
upload(row, title) {
|
||||||
var params = {
|
if (row.length > 0) {
|
||||||
columnName: {
|
var params = {
|
||||||
chapterNumber: "章条编号",
|
columnName: {
|
||||||
chapterName: "章节名称",
|
chapterNumber: "章条编号",
|
||||||
commentText: "修改意见内容(包括理由或依据)",
|
chapterName: "章节名称",
|
||||||
oldText: "修改前",
|
commentText: "修改意见内容(包括理由或依据)",
|
||||||
newText: "修改后",
|
oldText: "修改前",
|
||||||
reason: "修改理由",
|
newText: "修改后",
|
||||||
department: "提出部门",
|
reason: "修改理由",
|
||||||
responUserName: "提出人",
|
department: "提出部门",
|
||||||
},
|
responUserName: "提出人",
|
||||||
dataList: []
|
},
|
||||||
};
|
dataList: []
|
||||||
if (title === '上报意见.xls') {
|
};
|
||||||
params.columnName.stateText = "处理意见"
|
if (title === '上报意见.xls') {
|
||||||
}
|
params.columnName.stateText = "处理意见"
|
||||||
params.dataList = JSON.parse(JSON.stringify(row));
|
|
||||||
params.dataList.forEach(item => {
|
|
||||||
if (item.state === "1") {
|
|
||||||
item.stateText = "上报";
|
|
||||||
} else if (item.state === "2") {
|
|
||||||
item.stateText = "处理后上报";
|
|
||||||
} else {
|
|
||||||
item.stateText = "不上报";
|
|
||||||
}
|
}
|
||||||
});
|
params.dataList = JSON.parse(JSON.stringify(row));
|
||||||
this.$http.downloadFile("/api/lawss/activiti/export_excel", params, title, res => {
|
params.dataList.forEach(item => {
|
||||||
});
|
if (item.state === "1") {
|
||||||
|
item.stateText = "上报";
|
||||||
|
} else if (item.state === "2") {
|
||||||
|
item.stateText = "处理后上报";
|
||||||
|
} else {
|
||||||
|
item.stateText = "不上报";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.$http.downloadFile("/api/lawss/activiti/export_excel", params, title, res => {
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.$message.warning('无上报数据')
|
||||||
|
}
|
||||||
},
|
},
|
||||||
handleTabs(name) {
|
handleTabs(name) {
|
||||||
this.active = name;
|
this.active = name;
|
||||||
@@ -385,9 +389,6 @@
|
|||||||
handleSave() {
|
handleSave() {
|
||||||
},
|
},
|
||||||
handleSubmit() {
|
handleSubmit() {
|
||||||
if (this.data.length < 1) {
|
|
||||||
this.$message.warning("请输入征求意见搞");
|
|
||||||
} else {
|
|
||||||
this.isSubmit = true;
|
this.isSubmit = true;
|
||||||
var json = this.json;
|
var json = this.json;
|
||||||
json.hqFlag = '0';
|
json.hqFlag = '0';
|
||||||
@@ -403,7 +404,6 @@
|
|||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
});
|
});
|
||||||
}
|
|
||||||
},
|
},
|
||||||
handleSubmitNo() {
|
handleSubmitNo() {
|
||||||
if (this.commentText) {
|
if (this.commentText) {
|
||||||
|
|||||||
@@ -350,34 +350,38 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
upload(row, title) {
|
upload(row, title) {
|
||||||
var params = {
|
if (row.length > 0) {
|
||||||
columnName: {
|
var params = {
|
||||||
chapterNumber: "章条编号",
|
columnName: {
|
||||||
chapterName: "章节名称",
|
chapterNumber: "章条编号",
|
||||||
commentText: "修改意见内容(包括理由或依据)",
|
chapterName: "章节名称",
|
||||||
oldText: "修改前",
|
commentText: "修改意见内容(包括理由或依据)",
|
||||||
newText: "修改后",
|
oldText: "修改前",
|
||||||
reason: "修改理由",
|
newText: "修改后",
|
||||||
department: "提出部门",
|
reason: "修改理由",
|
||||||
responUserName: "提出人",
|
department: "提出部门",
|
||||||
},
|
responUserName: "提出人",
|
||||||
dataList: []
|
},
|
||||||
};
|
dataList: []
|
||||||
if (title === '上报意见.xls') {
|
};
|
||||||
params.columnName.stateText = "处理意见"
|
if (title === '上报意见.xls') {
|
||||||
}
|
params.columnName.stateText = "处理意见"
|
||||||
params.dataList = JSON.parse(JSON.stringify(row));
|
|
||||||
params.dataList.forEach(item => {
|
|
||||||
if (item.state === "1") {
|
|
||||||
item.stateText = "上报";
|
|
||||||
} else if (item.state === "2") {
|
|
||||||
item.stateText = "处理后上报";
|
|
||||||
} else {
|
|
||||||
item.stateText = "不上报";
|
|
||||||
}
|
}
|
||||||
});
|
params.dataList = JSON.parse(JSON.stringify(row));
|
||||||
this.$http.downloadFile("/api/lawss/activiti/export_excel", params, title, res => {
|
params.dataList.forEach(item => {
|
||||||
});
|
if (item.state === "1") {
|
||||||
|
item.stateText = "上报";
|
||||||
|
} else if (item.state === "2") {
|
||||||
|
item.stateText = "处理后上报";
|
||||||
|
} else {
|
||||||
|
item.stateText = "不上报";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.$http.downloadFile("/api/lawss/activiti/export_excel", params, title, res => {
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.$message.warning('无上报数据')
|
||||||
|
}
|
||||||
},
|
},
|
||||||
handleTabs(name) {
|
handleTabs(name) {
|
||||||
this.active = name;
|
this.active = name;
|
||||||
@@ -385,9 +389,6 @@
|
|||||||
handleSave() {
|
handleSave() {
|
||||||
},
|
},
|
||||||
handleSubmit() {
|
handleSubmit() {
|
||||||
if (this.data.length < 1) {
|
|
||||||
this.$message.warning("请输入征求意见搞");
|
|
||||||
} else {
|
|
||||||
this.isSubmit = true;
|
this.isSubmit = true;
|
||||||
var json = this.json;
|
var json = this.json;
|
||||||
json.hqFlag = '0';
|
json.hqFlag = '0';
|
||||||
@@ -403,7 +404,6 @@
|
|||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
});
|
});
|
||||||
}
|
|
||||||
},
|
},
|
||||||
handleSubmitNo() {
|
handleSubmitNo() {
|
||||||
if (this.commentText) {
|
if (this.commentText) {
|
||||||
|
|||||||
@@ -350,34 +350,38 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
upload(row, title) {
|
upload(row, title) {
|
||||||
var params = {
|
if (row.length > 0) {
|
||||||
columnName: {
|
var params = {
|
||||||
chapterNumber: "章条编号",
|
columnName: {
|
||||||
chapterName: "章节名称",
|
chapterNumber: "章条编号",
|
||||||
commentText: "修改意见内容(包括理由或依据)",
|
chapterName: "章节名称",
|
||||||
oldText: "修改前",
|
commentText: "修改意见内容(包括理由或依据)",
|
||||||
newText: "修改后",
|
oldText: "修改前",
|
||||||
reason: "修改理由",
|
newText: "修改后",
|
||||||
department: "提出部门",
|
reason: "修改理由",
|
||||||
responUserName: "提出人",
|
department: "提出部门",
|
||||||
},
|
responUserName: "提出人",
|
||||||
dataList: []
|
},
|
||||||
};
|
dataList: []
|
||||||
if (title === '上报意见.xls') {
|
};
|
||||||
params.columnName.stateText = "处理意见"
|
if (title === '上报意见.xls') {
|
||||||
}
|
params.columnName.stateText = "处理意见"
|
||||||
params.dataList = JSON.parse(JSON.stringify(row));
|
|
||||||
params.dataList.forEach(item => {
|
|
||||||
if (item.state === "1") {
|
|
||||||
item.stateText = "上报";
|
|
||||||
} else if (item.state === "2") {
|
|
||||||
item.stateText = "处理后上报";
|
|
||||||
} else {
|
|
||||||
item.stateText = "不上报";
|
|
||||||
}
|
}
|
||||||
});
|
params.dataList = JSON.parse(JSON.stringify(row));
|
||||||
this.$http.downloadFile("/api/lawss/activiti/export_excel", params, title, res => {
|
params.dataList.forEach(item => {
|
||||||
});
|
if (item.state === "1") {
|
||||||
|
item.stateText = "上报";
|
||||||
|
} else if (item.state === "2") {
|
||||||
|
item.stateText = "处理后上报";
|
||||||
|
} else {
|
||||||
|
item.stateText = "不上报";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.$http.downloadFile("/api/lawss/activiti/export_excel", params, title, res => {
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.$message.warning('无上报数据')
|
||||||
|
}
|
||||||
},
|
},
|
||||||
handleTabs(name) {
|
handleTabs(name) {
|
||||||
this.active = name;
|
this.active = name;
|
||||||
@@ -385,9 +389,6 @@
|
|||||||
handleSave() {
|
handleSave() {
|
||||||
},
|
},
|
||||||
handleSubmit() {
|
handleSubmit() {
|
||||||
if (this.data.length < 1) {
|
|
||||||
this.$message.warning("请输入征求意见搞");
|
|
||||||
} else {
|
|
||||||
this.isSubmit = true;
|
this.isSubmit = true;
|
||||||
var json = this.json;
|
var json = this.json;
|
||||||
json.hqFlag = '0';
|
json.hqFlag = '0';
|
||||||
@@ -403,7 +404,6 @@
|
|||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
});
|
});
|
||||||
}
|
|
||||||
},
|
},
|
||||||
handleSubmitNo() {
|
handleSubmitNo() {
|
||||||
if (this.commentText) {
|
if (this.commentText) {
|
||||||
|
|||||||
@@ -365,34 +365,38 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
upload(row, title) {
|
upload(row, title) {
|
||||||
var params = {
|
if (row.length > 0) {
|
||||||
columnName: {
|
var params = {
|
||||||
chapterNumber: "章条编号",
|
columnName: {
|
||||||
chapterName: "章节名称",
|
chapterNumber: "章条编号",
|
||||||
commentText: "修改意见内容(包括理由或依据)",
|
chapterName: "章节名称",
|
||||||
oldText: "修改前",
|
commentText: "修改意见内容(包括理由或依据)",
|
||||||
newText: "修改后",
|
oldText: "修改前",
|
||||||
reason: "修改理由",
|
newText: "修改后",
|
||||||
department: "提出部门",
|
reason: "修改理由",
|
||||||
responUserName: "提出人",
|
department: "提出部门",
|
||||||
},
|
responUserName: "提出人",
|
||||||
dataList: []
|
},
|
||||||
};
|
dataList: []
|
||||||
if (title === '上报意见.xls') {
|
};
|
||||||
params.columnName.stateText = "处理意见"
|
if (title === '上报意见.xls') {
|
||||||
}
|
params.columnName.stateText = "处理意见"
|
||||||
params.dataList = JSON.parse(JSON.stringify(row));
|
|
||||||
params.dataList.forEach(item => {
|
|
||||||
if (item.state === "1") {
|
|
||||||
item.stateText = "上报";
|
|
||||||
} else if (item.state === "2") {
|
|
||||||
item.stateText = "处理后上报";
|
|
||||||
} else {
|
|
||||||
item.stateText = "不上报";
|
|
||||||
}
|
}
|
||||||
});
|
params.dataList = JSON.parse(JSON.stringify(row));
|
||||||
this.$http.downloadFile("/api/lawss/activiti/export_excel", params, title, res => {
|
params.dataList.forEach(item => {
|
||||||
});
|
if (item.state === "1") {
|
||||||
|
item.stateText = "上报";
|
||||||
|
} else if (item.state === "2") {
|
||||||
|
item.stateText = "处理后上报";
|
||||||
|
} else {
|
||||||
|
item.stateText = "不上报";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.$http.downloadFile("/api/lawss/activiti/export_excel", params, title, res => {
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.$message.warning('无上报数据')
|
||||||
|
}
|
||||||
},
|
},
|
||||||
handleTabs(name) {
|
handleTabs(name) {
|
||||||
this.active = name;
|
this.active = name;
|
||||||
@@ -400,9 +404,6 @@
|
|||||||
handleSave() {
|
handleSave() {
|
||||||
},
|
},
|
||||||
handleSubmit() {
|
handleSubmit() {
|
||||||
if (this.data.length < 1) {
|
|
||||||
this.$message.warning("请输入征求意见搞");
|
|
||||||
} else {
|
|
||||||
this.isSubmit = true;
|
this.isSubmit = true;
|
||||||
var json = this.json;
|
var json = this.json;
|
||||||
json.hqFlag = '0';
|
json.hqFlag = '0';
|
||||||
@@ -418,7 +419,6 @@
|
|||||||
}
|
}
|
||||||
this.isSubmit = false;
|
this.isSubmit = false;
|
||||||
});
|
});
|
||||||
}
|
|
||||||
},
|
},
|
||||||
handleSubmitNo() {
|
handleSubmitNo() {
|
||||||
if (this.commentText) {
|
if (this.commentText) {
|
||||||
|
|||||||
@@ -426,9 +426,9 @@
|
|||||||
<el-form-item label="标准类别" prop="standSort" label-width="150px" class="add-form-item">
|
<el-form-item label="标准类别" prop="standSort" label-width="150px" class="add-form-item">
|
||||||
<el-select v-model="sarStandardsInfoEO.standSort" filterable>
|
<el-select v-model="sarStandardsInfoEO.standSort" filterable>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in standSortOptions"
|
v-for="(item, index) in standSortOptions"
|
||||||
placeholder="请选择"
|
placeholder="请选择"
|
||||||
:key="item.value"
|
:key="index"
|
||||||
:value="item.value"
|
:value="item.value"
|
||||||
:label="item.label"
|
:label="item.label"
|
||||||
></el-option>
|
></el-option>
|
||||||
@@ -460,9 +460,9 @@
|
|||||||
placeholder="请选择标准性质"
|
placeholder="请选择标准性质"
|
||||||
clearable>
|
clearable>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in standNatureOptions"
|
v-for="(item,index) in standNatureOptions"
|
||||||
placeholder="请选择"
|
placeholder="请选择"
|
||||||
:key="item.value"
|
:key="index"
|
||||||
:value="item.value"
|
:value="item.value"
|
||||||
:label="item.label"
|
:label="item.label"
|
||||||
>
|
>
|
||||||
@@ -477,9 +477,9 @@
|
|||||||
placeholder="请选择文本状态"
|
placeholder="请选择文本状态"
|
||||||
clearable>
|
clearable>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="opt in standStateOptions"
|
v-for="(opt,index) in standStateOptions"
|
||||||
:disabled="opt.value !== 'ZTXXYX' && opt.value !== standState && modalshowtitle !== '编辑国内标准'"
|
:disabled="opt.value !== 'ZTXXYX' && opt.value !== standState && modalshowtitle !== '编辑国内标准'"
|
||||||
:key="opt.value"
|
:key="index"
|
||||||
:value="opt.value === undefined ? '' :opt.value" :label="opt.label"
|
:value="opt.value === undefined ? '' :opt.value" :label="opt.label"
|
||||||
>
|
>
|
||||||
{{ opt.label }}
|
{{ opt.label }}
|
||||||
@@ -519,7 +519,6 @@
|
|||||||
<template v-for="field in displayLocation.child">
|
<template v-for="field in displayLocation.child">
|
||||||
<template v-if="field.attrField === 'EOPSSRQ'">
|
<template v-if="field.attrField === 'EOPSSRQ'">
|
||||||
<custom-eop-date-pick
|
<custom-eop-date-pick
|
||||||
:key="field.attrField"
|
|
||||||
:config="field"
|
:config="field"
|
||||||
v-model="sarStandardsInfoEO[field.attrField]"
|
v-model="sarStandardsInfoEO[field.attrField]"
|
||||||
:disabled="formdisableflag"
|
:disabled="formdisableflag"
|
||||||
@@ -527,7 +526,6 @@
|
|||||||
</template>
|
</template>
|
||||||
<template v-else-if="field.attrField === 'SVPPS'">
|
<template v-else-if="field.attrField === 'SVPPS'">
|
||||||
<custom-SVPPS
|
<custom-SVPPS
|
||||||
:key="field.attrField"
|
|
||||||
:config="field"
|
:config="field"
|
||||||
v-model="sarStandardsInfoEO[field.attrField]"
|
v-model="sarStandardsInfoEO[field.attrField]"
|
||||||
:disabled="formdisableflag"
|
:disabled="formdisableflag"
|
||||||
@@ -535,7 +533,6 @@
|
|||||||
</template>
|
</template>
|
||||||
<template v-else-if="field.attrField === 'XCXSSRQ' || field.attrField === 'ZCCSSRQ' || field.attrField === 'SSRQ'">
|
<template v-else-if="field.attrField === 'XCXSSRQ' || field.attrField === 'ZCCSSRQ' || field.attrField === 'SSRQ'">
|
||||||
<custom-date-pick-group
|
<custom-date-pick-group
|
||||||
:key="field.attrField"
|
|
||||||
:config="field"
|
:config="field"
|
||||||
v-model="sarStandardsInfoEO[field.attrField]"
|
v-model="sarStandardsInfoEO[field.attrField]"
|
||||||
:disabled="formdisableflag"
|
:disabled="formdisableflag"
|
||||||
@@ -543,7 +540,6 @@
|
|||||||
</template>
|
</template>
|
||||||
<template v-else-if="field.attrType === 'DATE_PIC_OPTS'">
|
<template v-else-if="field.attrType === 'DATE_PIC_OPTS'">
|
||||||
<custom-date-pick-group
|
<custom-date-pick-group
|
||||||
:key="field.attrField"
|
|
||||||
:config="field"
|
:config="field"
|
||||||
v-model="sarStandardsInfoEO[field.attrField]"
|
v-model="sarStandardsInfoEO[field.attrField]"
|
||||||
:disabled="formdisableflag"
|
:disabled="formdisableflag"
|
||||||
@@ -555,7 +551,6 @@
|
|||||||
<template
|
<template
|
||||||
v-if="field.attrField === 'DTBJH' || field.attrField === 'YYBJ' || field.attrField === 'CBBH' || field.attrField === 'BFDTBZ'">
|
v-if="field.attrField === 'DTBJH' || field.attrField === 'YYBJ' || field.attrField === 'CBBH' || field.attrField === 'BFDTBZ'">
|
||||||
<custom-input-for-standards
|
<custom-input-for-standards
|
||||||
:key="field.attrField"
|
|
||||||
:config="field"
|
:config="field"
|
||||||
:class="field.attrField === 'BYYBJ' ? 'classDisplay' : ''"
|
:class="field.attrField === 'BYYBJ' ? 'classDisplay' : ''"
|
||||||
v-model="sarStandardsInfoEO[field.attrField]"
|
v-model="sarStandardsInfoEO[field.attrField]"
|
||||||
@@ -624,7 +619,6 @@
|
|||||||
</template>
|
</template>
|
||||||
<template v-else-if="field.attrField === 'BBFDTBZ' || field.attrField === 'BYYBJ'">
|
<template v-else-if="field.attrField === 'BBFDTBZ' || field.attrField === 'BYYBJ'">
|
||||||
<custom-input
|
<custom-input
|
||||||
:key="field.attrField"
|
|
||||||
:config="field"
|
:config="field"
|
||||||
v-model="sarStandardsInfoEO[field.attrField]"
|
v-model="sarStandardsInfoEO[field.attrField]"
|
||||||
:disabled="true"
|
:disabled="true"
|
||||||
@@ -632,7 +626,6 @@
|
|||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<custom-input
|
<custom-input
|
||||||
:key="field.attrField"
|
|
||||||
:config="field"
|
:config="field"
|
||||||
v-if="field.attrField !== 'BDTBZBH'"
|
v-if="field.attrField !== 'BDTBZBH'"
|
||||||
v-model="sarStandardsInfoEO[field.attrField]"
|
v-model="sarStandardsInfoEO[field.attrField]"
|
||||||
@@ -643,7 +636,6 @@
|
|||||||
|
|
||||||
<template v-else-if="field.attrType === 'INPUT_NUM'">
|
<template v-else-if="field.attrType === 'INPUT_NUM'">
|
||||||
<custom-input-num
|
<custom-input-num
|
||||||
:key="field.attrField"
|
|
||||||
:config="field"
|
:config="field"
|
||||||
v-model="sarStandardsInfoEO[field.attrField]"
|
v-model="sarStandardsInfoEO[field.attrField]"
|
||||||
:disabled="formdisableflag"
|
:disabled="formdisableflag"
|
||||||
@@ -652,7 +644,6 @@
|
|||||||
<template v-else-if="field.attrType === 'DATE_PICKER'">
|
<template v-else-if="field.attrType === 'DATE_PICKER'">
|
||||||
<custom-date-pick
|
<custom-date-pick
|
||||||
v-if="field.attrField !== 'ZCCSSRQGJ' && field.attrField !== 'XCXSSRQGJ' && field.attrField !== 'SSRQGJ' "
|
v-if="field.attrField !== 'ZCCSSRQGJ' && field.attrField !== 'XCXSSRQGJ' && field.attrField !== 'SSRQGJ' "
|
||||||
:key="field.attrField"
|
|
||||||
:config="field"
|
:config="field"
|
||||||
v-model="sarStandardsInfoEO[field.attrField]"
|
v-model="sarStandardsInfoEO[field.attrField]"
|
||||||
:disabled="formdisableflag"
|
:disabled="formdisableflag"
|
||||||
@@ -661,7 +652,6 @@
|
|||||||
</template>
|
</template>
|
||||||
<template v-else-if="field.attrType === 'FILE'">
|
<template v-else-if="field.attrType === 'FILE'">
|
||||||
<custom-file
|
<custom-file
|
||||||
:key="field.attrField"
|
|
||||||
:config="field"
|
:config="field"
|
||||||
v-model="sarStandardsInfoEO[field.attrField]"
|
v-model="sarStandardsInfoEO[field.attrField]"
|
||||||
:disabled="formdisableflag"
|
:disabled="formdisableflag"
|
||||||
@@ -670,7 +660,6 @@
|
|||||||
</template>
|
</template>
|
||||||
<template v-else-if="field.attrType === 'TEXTAREA'">
|
<template v-else-if="field.attrType === 'TEXTAREA'">
|
||||||
<custom-textarea
|
<custom-textarea
|
||||||
:key="field.attrField"
|
|
||||||
:config="field"
|
:config="field"
|
||||||
v-model="sarStandardsInfoEO[field.attrField]"
|
v-model="sarStandardsInfoEO[field.attrField]"
|
||||||
:disabled="formdisableflag"
|
:disabled="formdisableflag"
|
||||||
@@ -679,7 +668,6 @@
|
|||||||
<template v-else-if="field.attrType === 'SEL_OPTION'">
|
<template v-else-if="field.attrType === 'SEL_OPTION'">
|
||||||
<template>
|
<template>
|
||||||
<custom-select
|
<custom-select
|
||||||
:key="field.attrField"
|
|
||||||
:config="field"
|
:config="field"
|
||||||
v-model="sarStandardsInfoEO[field.attrField]"
|
v-model="sarStandardsInfoEO[field.attrField]"
|
||||||
:disabled="formdisableflag"
|
:disabled="formdisableflag"
|
||||||
@@ -695,7 +683,6 @@
|
|||||||
>
|
>
|
||||||
<template slot="label">责任部门</template>
|
<template slot="label">责任部门</template>
|
||||||
<el-input
|
<el-input
|
||||||
:key="field.attrField"
|
|
||||||
:config="field"
|
:config="field"
|
||||||
clearable
|
clearable
|
||||||
v-model="sarStandardsInfoEO['ZRBM']"
|
v-model="sarStandardsInfoEO['ZRBM']"
|
||||||
@@ -752,7 +739,6 @@
|
|||||||
<div style="display: flex;justify-content: space-between;align-items: center;">
|
<div style="display: flex;justify-content: space-between;align-items: center;">
|
||||||
<el-tooltip v-if="sarStandardsInfoEO['QCDW']" class="item" effect="dark" :content="sarStandardsInfoEO['QCDW']" placement="top-start">
|
<el-tooltip v-if="sarStandardsInfoEO['QCDW']" class="item" effect="dark" :content="sarStandardsInfoEO['QCDW']" placement="top-start">
|
||||||
<el-input
|
<el-input
|
||||||
:key="field.attrField"
|
|
||||||
:config="field"
|
:config="field"
|
||||||
clearable
|
clearable
|
||||||
type="textarea"
|
type="textarea"
|
||||||
@@ -764,7 +750,6 @@
|
|||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<el-input
|
<el-input
|
||||||
:key="field.attrField"
|
|
||||||
:config="field"
|
:config="field"
|
||||||
clearable
|
clearable
|
||||||
v-model="sarStandardsInfoEO['QCDW']"
|
v-model="sarStandardsInfoEO['QCDW']"
|
||||||
@@ -785,7 +770,6 @@
|
|||||||
<!-- 全选-->
|
<!-- 全选-->
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<custom-select-array
|
<custom-select-array
|
||||||
:key="field.attrField"
|
|
||||||
:config="field"
|
:config="field"
|
||||||
v-model="sarStandardsInfoEO[field.attrField]"
|
v-model="sarStandardsInfoEO[field.attrField]"
|
||||||
:disabled="formdisableflag"
|
:disabled="formdisableflag"
|
||||||
@@ -1006,8 +990,8 @@
|
|||||||
<el-formItem label="标准类别" prop="standSort" class="search-item">
|
<el-formItem label="标准类别" prop="standSort" class="search-item">
|
||||||
<el-select v-model="sarConfigStandSearch.standSort" placeholder="根据标准类别查找"
|
<el-select v-model="sarConfigStandSearch.standSort" placeholder="根据标准类别查找"
|
||||||
@keyup.enter.native="searchConfiguraStand(true)" clearable>
|
@keyup.enter.native="searchConfiguraStand(true)" clearable>
|
||||||
<el-option v-for="opt in standSortOptions" :value="opt.value === undefined ? '' :opt.value"
|
<el-option v-for="(opt, index) in standSortOptions" :value="opt.value === undefined ? '' :opt.value"
|
||||||
:key="opt.value" :label="opt.label">{{ opt.label }}
|
:key="index" :label="opt.label">{{ opt.label }}
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-formItem>
|
</el-formItem>
|
||||||
@@ -1548,8 +1532,8 @@
|
|||||||
<el-form-item label="标准体系" class="add-form-item form-item-disabled">
|
<el-form-item label="标准体系" class="add-form-item form-item-disabled">
|
||||||
<el-select v-model="advanceSearchMapping.TXLB" placeholder="根据标准体系查找" clearable
|
<el-select v-model="advanceSearchMapping.TXLB" placeholder="根据标准体系查找" clearable
|
||||||
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
||||||
<el-option v-for="opt in txlbOptions" :value="opt.value === undefined ? '' :opt.value"
|
<el-option v-for="(opt, index) in txlbOptions" :value="opt.value === undefined ? '' :opt.value"
|
||||||
:key="opt.value"
|
:key="index"
|
||||||
:label="opt.label">{{ opt.label }}
|
:label="opt.label">{{ opt.label }}
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
@@ -1588,8 +1572,8 @@
|
|||||||
<el-form-item :label="$t('m.standNatureShow')" class="add-form-item form-item-disabled">
|
<el-form-item :label="$t('m.standNatureShow')" class="add-form-item form-item-disabled">
|
||||||
<el-select v-model="sarStandardsSearch.standNature" placeholder="请选择标准性质" clearable
|
<el-select v-model="sarStandardsSearch.standNature" placeholder="请选择标准性质" clearable
|
||||||
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
||||||
<el-option v-for="opt in standNatureOptions" :value="opt.value === undefined ? '' :opt.value"
|
<el-option v-for="(opt, index) in standNatureOptions" :value="opt.value === undefined ? '' :opt.value"
|
||||||
:key="opt.value" :label="opt.label">{{ opt.label }}
|
:key="index" :label="opt.label">{{ opt.label }}
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -1661,8 +1645,8 @@
|
|||||||
<el-form-item label="归口管理部门" class="add-form-item form-item-disabled">
|
<el-form-item label="归口管理部门" class="add-form-item form-item-disabled">
|
||||||
<el-select v-model="advanceSearchMapping.GKDW" placeholder="归口管理部门" clearable
|
<el-select v-model="advanceSearchMapping.GKDW" placeholder="归口管理部门" clearable
|
||||||
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
||||||
<el-option v-for="opt in gkglbmOptions" :value="opt.value === undefined ? '' :opt.value"
|
<el-option v-for="(opt, index) in gkglbmOptions" :value="opt.value === undefined ? '' :opt.value"
|
||||||
:key="opt.value" :label="opt.label">{{ opt.label }}
|
:key="index" :label="opt.label">{{ opt.label }}
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -1670,8 +1654,8 @@
|
|||||||
<el-form-item label="我司参与深度" class="add-form-item form-item-disabled">
|
<el-form-item label="我司参与深度" class="add-form-item form-item-disabled">
|
||||||
<el-select v-model="advanceSearchMapping.CYSD" placeholder="请选择我司参与深度" clearable
|
<el-select v-model="advanceSearchMapping.CYSD" placeholder="请选择我司参与深度" clearable
|
||||||
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
||||||
<el-option v-for="opt in cysdOptions" :value="opt.value === undefined ? '' :opt.value"
|
<el-option v-for="(opt, index) in cysdOptions" :value="opt.value === undefined ? '' :opt.value"
|
||||||
:key="opt.value"
|
:key="index"
|
||||||
:label="opt.label">{{ opt.label }}
|
:label="opt.label">{{ opt.label }}
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
@@ -1679,7 +1663,6 @@
|
|||||||
<!-- 适用车型-->
|
<!-- 适用车型-->
|
||||||
<template>
|
<template>
|
||||||
<custom-select-array
|
<custom-select-array
|
||||||
:key="applyArcticOptions.options"
|
|
||||||
style="margin-left: -14px"
|
style="margin-left: -14px"
|
||||||
:config="applyArcticOptions"
|
:config="applyArcticOptions"
|
||||||
v-model="sarStandardsSearch['applyArctic']"
|
v-model="sarStandardsSearch['applyArctic']"
|
||||||
@@ -1697,7 +1680,6 @@
|
|||||||
<!-- 适用认证-->
|
<!-- 适用认证-->
|
||||||
<template>
|
<template>
|
||||||
<custom-select-array
|
<custom-select-array
|
||||||
:key="syrzOptions.options"
|
|
||||||
style="margin-left: -14px"
|
style="margin-left: -14px"
|
||||||
:config="syrzOptions"
|
:config="syrzOptions"
|
||||||
v-model="advanceSearchMapping['SYRZ']"
|
v-model="advanceSearchMapping['SYRZ']"
|
||||||
@@ -1762,8 +1744,8 @@
|
|||||||
<el-form-item label="起草单位" class="add-form-item form-item-disabled">
|
<el-form-item label="起草单位" class="add-form-item form-item-disabled">
|
||||||
<el-select v-model="advanceSearchMapping.QCDW" placeholder="根据起草单位查找" clearable
|
<el-select v-model="advanceSearchMapping.QCDW" placeholder="根据起草单位查找" clearable
|
||||||
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
||||||
<el-option v-for="opt in qcdwOptions" :value="opt.value === undefined ? '' :opt.value"
|
<el-option v-for="(opt, index) in qcdwOptions" :value="opt.value === undefined ? '' :opt.value"
|
||||||
:key="opt.value"
|
:key="index"
|
||||||
:label="opt.label">{{ opt.label }}
|
:label="opt.label">{{ opt.label }}
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
@@ -1771,7 +1753,6 @@
|
|||||||
<!-- 能源类型-->
|
<!-- 能源类型-->
|
||||||
<template>
|
<template>
|
||||||
<custom-select-array
|
<custom-select-array
|
||||||
:key="nylxOptions.options"
|
|
||||||
:config="nylxOptions"
|
:config="nylxOptions"
|
||||||
style="margin-left: -14px"
|
style="margin-left: -14px"
|
||||||
v-model="advanceSearchMapping['NYLX']"
|
v-model="advanceSearchMapping['NYLX']"
|
||||||
@@ -1789,7 +1770,6 @@
|
|||||||
<!-- 适用产品线(新增字段)-->
|
<!-- 适用产品线(新增字段)-->
|
||||||
<template>
|
<template>
|
||||||
<custom-select-array
|
<custom-select-array
|
||||||
:key="sycpxOptions.options"
|
|
||||||
:config="sycpxOptions"
|
:config="sycpxOptions"
|
||||||
style="margin-left: -14px"
|
style="margin-left: -14px"
|
||||||
v-model="advanceSearchMapping['SYCPX']"
|
v-model="advanceSearchMapping['SYCPX']"
|
||||||
@@ -1814,7 +1794,6 @@
|
|||||||
>
|
>
|
||||||
<template slot="label">责任部门</template>
|
<template slot="label">责任部门</template>
|
||||||
<el-input
|
<el-input
|
||||||
:key="zrbmOptions.options"
|
|
||||||
:config="zrbmOptions"
|
:config="zrbmOptions"
|
||||||
clearable
|
clearable
|
||||||
v-model="advanceSearchMapping['ZRBM']"
|
v-model="advanceSearchMapping['ZRBM']"
|
||||||
@@ -2009,8 +1988,8 @@
|
|||||||
@closed="QCDWmodal = false">
|
@closed="QCDWmodal = false">
|
||||||
<el-select v-model="QCDWValue" multiple filterable placeholder="请选择" style="width: 100%;">
|
<el-select v-model="QCDWValue" multiple filterable placeholder="请选择" style="width: 100%;">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in QCDWList"
|
v-for="(item, index) in QCDWList"
|
||||||
:key="item.value"
|
:key="index"
|
||||||
:label="item.label"
|
:label="item.label"
|
||||||
:value="item.label">
|
:value="item.label">
|
||||||
</el-option>
|
</el-option>
|
||||||
@@ -3017,8 +2996,6 @@ export default {
|
|||||||
this.urlChild = "sarModelTree/childByList"
|
this.urlChild = "sarModelTree/childByList"
|
||||||
},
|
},
|
||||||
popoverHideQuery(ids, attrField) {
|
popoverHideQuery(ids, attrField) {
|
||||||
console.log(ids)
|
|
||||||
console.log(attrField)
|
|
||||||
},
|
},
|
||||||
popoverHide(checkedIds, checkedData, isShow, isLoadChild, topId) {
|
popoverHide(checkedIds, checkedData, isShow, isLoadChild, topId) {
|
||||||
if (checkedData) {
|
if (checkedData) {
|
||||||
@@ -3393,7 +3370,6 @@ export default {
|
|||||||
this.standState = JSON.parse(JSON.stringify(this.sarStandardsInfoEO.standState))
|
this.standState = JSON.parse(JSON.stringify(this.sarStandardsInfoEO.standState))
|
||||||
formFieldList.forEach((field) => {
|
formFieldList.forEach((field) => {
|
||||||
displayLocation.forEach((location) => {
|
displayLocation.forEach((location) => {
|
||||||
console.log(location)
|
|
||||||
let value = this.sarStandardsInfoEO[field.attrField]
|
let value = this.sarStandardsInfoEO[field.attrField]
|
||||||
let valueName = ''
|
let valueName = ''
|
||||||
if (value && field.attrType === 'DATE_PICKER') {
|
if (value && field.attrType === 'DATE_PICKER') {
|
||||||
@@ -3917,7 +3893,6 @@ export default {
|
|||||||
// this.$http.post('sarStandardsInfo/sar-standards-info/exportStandardsInfoExcel', paramAll, {
|
// this.$http.post('sarStandardsInfo/sar-standards-info/exportStandardsInfoExcel', paramAll, {
|
||||||
// _this: this,responseType: 'blob',
|
// _this: this,responseType: 'blob',
|
||||||
// }, res => {
|
// }, res => {
|
||||||
// console.log(res)
|
|
||||||
// this.exportLoading = false
|
// this.exportLoading = false
|
||||||
// let url = window.URL.createObjectURL(new Blob([res]))
|
// let url = window.URL.createObjectURL(new Blob([res]))
|
||||||
// let link = document.createElement('a')
|
// let link = document.createElement('a')
|
||||||
@@ -4203,7 +4178,6 @@ export default {
|
|||||||
nowstandinfo.putTime = this.$dateFormat(this.sarStandardsInfoEO.putTime, 'yyyy-MM-dd hh:mm:ss')
|
nowstandinfo.putTime = this.$dateFormat(this.sarStandardsInfoEO.putTime, 'yyyy-MM-dd hh:mm:ss')
|
||||||
}
|
}
|
||||||
// 代替标准号
|
// 代替标准号
|
||||||
console.log('4007',nowstandinfo.DTBJH);
|
|
||||||
if (nowstandinfo.DTBJH != null) {
|
if (nowstandinfo.DTBJH != null) {
|
||||||
nowstandinfo.DTBJH = nowstandinfo.DTBJH.replace(/,/ig, ',')
|
nowstandinfo.DTBJH = nowstandinfo.DTBJH.replace(/,/ig, ',')
|
||||||
}
|
}
|
||||||
@@ -5554,7 +5528,6 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
choiceZRRS (type, title, id) {
|
choiceZRRS (type, title, id) {
|
||||||
console.log('2077',type, title, id)
|
|
||||||
this.nodeList = []
|
this.nodeList = []
|
||||||
this.nodeList.push(id)
|
this.nodeList.push(id)
|
||||||
this.userType = type
|
this.userType = type
|
||||||
@@ -5562,7 +5535,6 @@ export default {
|
|||||||
this.modalShowRoleFlag = true
|
this.modalShowRoleFlag = true
|
||||||
},
|
},
|
||||||
checkedRole2 (data) {
|
checkedRole2 (data) {
|
||||||
console.log('1712',data)
|
|
||||||
let idList = ''
|
let idList = ''
|
||||||
let nameList = ''
|
let nameList = ''
|
||||||
data.forEach( item => {
|
data.forEach( item => {
|
||||||
@@ -5611,8 +5583,6 @@ export default {
|
|||||||
this.modalshowflagZRBM = true
|
this.modalshowflagZRBM = true
|
||||||
},
|
},
|
||||||
drawerCheckZRBM(data) {
|
drawerCheckZRBM(data) {
|
||||||
|
|
||||||
console.log("5389", this.drawerTitle);
|
|
||||||
let idList = ''
|
let idList = ''
|
||||||
let nameList = ''
|
let nameList = ''
|
||||||
data.forEach(item => {
|
data.forEach(item => {
|
||||||
@@ -5674,7 +5644,6 @@ export default {
|
|||||||
this.$http.get('sys/dictype/getDicTypeListCode', '', {
|
this.$http.get('sys/dictype/getDicTypeListCode', '', {
|
||||||
_this: this
|
_this: this
|
||||||
}, res => {
|
}, res => {
|
||||||
console.log('5608',res.data)
|
|
||||||
this.allSelectOptions = res.data || {}
|
this.allSelectOptions = res.data || {}
|
||||||
this.standSortOptions = res.data.STANDCLASSIFY // 标准类别
|
this.standSortOptions = res.data.STANDCLASSIFY // 标准类别
|
||||||
this.standNatureOptions = res.data.SARPROPERTY // 标准性质
|
this.standNatureOptions = res.data.SARPROPERTY // 标准性质
|
||||||
|
|||||||
Reference in New Issue
Block a user