Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
@@ -264,6 +264,7 @@ export default {
|
|||||||
item.NameList = NameList
|
item.NameList = NameList
|
||||||
})
|
})
|
||||||
this.data = res.data
|
this.data = res.data
|
||||||
|
this.total = res.data.length
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
pageChange (page) {
|
pageChange (page) {
|
||||||
|
|||||||
@@ -71,6 +71,9 @@
|
|||||||
prop="useFlag"
|
prop="useFlag"
|
||||||
label="角色状态"
|
label="角色状态"
|
||||||
width="170px">
|
width="170px">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ scope.row.useFlag===0?'禁用':'启用' }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="operator"
|
prop="operator"
|
||||||
@@ -184,9 +187,20 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="角色描述" prop="remarks" label-width="80px" class="add-form-item">
|
<el-form-item label="角色描述" prop="remarks" label-width="80px" class="add-form-item">
|
||||||
<el-input v-model="addForm.remarks"
|
<el-input v-model="addForm.remarks"
|
||||||
placeholder="请输入上级描述"
|
placeholder="请输入角色描述"
|
||||||
clearable></el-input>
|
clearable></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="角色状态" prop="useFlag" label-width="145px">
|
||||||
|
<el-select class="bead-input" v-model="addForm.useFlag">
|
||||||
|
<el-option
|
||||||
|
v-for="item in options"
|
||||||
|
:key="item.value"
|
||||||
|
:label="item.label"
|
||||||
|
:value="item.value"
|
||||||
|
>
|
||||||
|
</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</div>
|
</div>
|
||||||
<div slot="footer">
|
<div slot="footer">
|
||||||
@@ -243,7 +257,8 @@ export default {
|
|||||||
SuperiorRoleModel: false,
|
SuperiorRoleModel: false,
|
||||||
addFormRules: {
|
addFormRules: {
|
||||||
name: [
|
name: [
|
||||||
{ required: true, message: '请输入角色名称', trigger: 'blur' }
|
{ required: true, message: '请输入角色名称', trigger: 'blur' },
|
||||||
|
{type: 'string', max: 100, message: '角色名称不能超过100个字符', trigger: 'blur'}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
addForm: {
|
addForm: {
|
||||||
@@ -251,8 +266,19 @@ export default {
|
|||||||
parentId: '', // 上级ID
|
parentId: '', // 上级ID
|
||||||
remarks: '', // 角色描述
|
remarks: '', // 角色描述
|
||||||
parent: '',
|
parent: '',
|
||||||
|
useFlag: '',
|
||||||
id: ''
|
id: ''
|
||||||
},
|
},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
value: "0",
|
||||||
|
label: "禁用",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: "1",
|
||||||
|
label: "启用",
|
||||||
|
}
|
||||||
|
],
|
||||||
addModel: false,
|
addModel: false,
|
||||||
treeData3: [],
|
treeData3: [],
|
||||||
defaultProps3: {
|
defaultProps3: {
|
||||||
|
|||||||
@@ -246,7 +246,7 @@
|
|||||||
v-for="(file, fileIndex) in child.value"
|
v-for="(file, fileIndex) in child.value"
|
||||||
:key="fileIndex"
|
:key="fileIndex"
|
||||||
>
|
>
|
||||||
|{{file.id}}|
|
<span style="cursor: pointer;" @click="openFileInPdf(file.id, file.oldFileName)">|{{file.id}}|</span>
|
||||||
<!--发布稿、增补件单独设置下载权限-->
|
<!--发布稿、增补件单独设置下载权限-->
|
||||||
<template v-if="child.attrField === 'XGD' || child.attrField === 'FBGBJBD' || child.attrField === 'BPG'
|
<template v-if="child.attrField === 'XGD' || child.attrField === 'FBGBJBD' || child.attrField === 'BPG'
|
||||||
|| child.attrField === 'SSG'|| child.attrField === 'ZQYJG'|| child.attrField === 'CA'
|
|| child.attrField === 'SSG'|| child.attrField === 'ZQYJG'|| child.attrField === 'CA'
|
||||||
|
|||||||
@@ -259,10 +259,10 @@ export default {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
fileType: [
|
fileType: [
|
||||||
{ required: true, message: "文本状态称不能为空", trigger: "blur" },
|
{ required: true, message: "文本状态称不能为空", trigger: "change" },
|
||||||
],
|
],
|
||||||
fileName: [
|
fileName: [
|
||||||
{ required: true, message: '文件不能为空', trigger: 'blur' }
|
{ required: true, message: '文件不能为空', trigger: 'change' }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
@@ -515,7 +515,8 @@ export default {
|
|||||||
message: "文件上传成功",
|
message: "文件上传成功",
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
// this.$refs['uploadFilesdfEo'].resetFields()
|
this.$refs['uploadFilesdfEo'].clearValidate('fileName')
|
||||||
|
this.$refs['uploadFilesdfEo'].clearValidate('standName')
|
||||||
} else {
|
} else {
|
||||||
this.defaultFileList = [];
|
this.defaultFileList = [];
|
||||||
this.uploadFilesdfEo.attId = "";
|
this.uploadFilesdfEo.attId = "";
|
||||||
|
|||||||
@@ -124,11 +124,10 @@ export default {
|
|||||||
},
|
},
|
||||||
// 查询、加载数据
|
// 查询、加载数据
|
||||||
selectStandard () {
|
selectStandard () {
|
||||||
this.$http.get('sarPersonalCenter/sar-user-star/getList', {
|
this.$http.get('person/personCollect/page', {
|
||||||
current: this.page,
|
pageNo: this.page,
|
||||||
size: this.$store.getters.userInfo.configContent,
|
pageSize: this.$store.getters.userInfo.configContent,
|
||||||
userId: this.$store.getters.userInfo.userId,
|
collectTitle: this.search.name
|
||||||
name: this.search.name
|
|
||||||
}, {
|
}, {
|
||||||
_this: this,
|
_this: this,
|
||||||
loading: 'loading'
|
loading: 'loading'
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ export default {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '项目合规评估流程',
|
label: '项目合规评估流程',
|
||||||
value: '7'
|
value: '5'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '未符合项整改流程',
|
label: '未符合项整改流程',
|
||||||
|
|||||||
@@ -67,48 +67,48 @@
|
|||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="附件" prop="modelName" class="add-form-item form-item-disabled">
|
<!-- <el-form-item label="附件" prop="modelName" class="add-form-item form-item-disabled">-->
|
||||||
<el-input
|
<!-- <el-input-->
|
||||||
disabled
|
<!-- disabled-->
|
||||||
style="display: none;"
|
<!-- style="display: none;"-->
|
||||||
v-model="listForm.modelName"
|
<!-- v-model="listForm.modelName"-->
|
||||||
clearable
|
<!-- clearable-->
|
||||||
></el-input>
|
<!-- ></el-input>-->
|
||||||
<div v-if="listForm.modelName" @click="fileUpload" class="fileClass">
|
<!-- <div v-if="listForm.modelName" @click="fileUpload" class="fileClass">-->
|
||||||
{{ listForm.modelName }}
|
<!-- {{ listForm.modelName }}-->
|
||||||
</div>
|
<!-- </div>-->
|
||||||
<div v-else>
|
<!-- <div v-else>-->
|
||||||
<el-button
|
<!-- <el-button-->
|
||||||
type="primary"
|
<!-- type="primary"-->
|
||||||
class="common-button-primary"
|
<!-- class="common-button-primary"-->
|
||||||
@click="fileUpload"
|
<!-- @click="fileUpload"-->
|
||||||
size="mini">
|
<!-- size="mini">-->
|
||||||
点击上传
|
|
||||||
</el-button>
|
|
||||||
</div>
|
|
||||||
</el-form-item>
|
|
||||||
<!-- <el-form-item label="附件" prop="fileId" class="add-form-item form-item-disabled">-->
|
|
||||||
<!-- <el-upload-->
|
|
||||||
<!-- v-if="listForm.fileId == null || this.listForm.fileId== 'undefined' || this.listForm.fileId == '' "-->
|
|
||||||
<!-- :action="uploadFileListPath"-->
|
|
||||||
<!-- show-file-list-->
|
|
||||||
<!-- :file-list="fileInfoList"-->
|
|
||||||
<!-- name="file"-->
|
|
||||||
<!-- accept=".PDF, .pdf, .doc, .DOC, .docx, .DOCX, .xls, .xlsx, .ppt, .pptx, .PPT, .PPTX, .JPG, .JPEG, .PNG, .jpg, .jpeg, .png"-->
|
|
||||||
<!-- :on-remove="delFileInfo"-->
|
|
||||||
<!-- :on-success="uploadBackSuccess"-->
|
|
||||||
<!-- :before-upload="beforeUpload"-->
|
|
||||||
<!-- >-->
|
|
||||||
<!-- <el-button class="common-button-default" size="mini">-->
|
|
||||||
<!-- 点击上传-->
|
<!-- 点击上传-->
|
||||||
<!-- </el-button>-->
|
<!-- </el-button>-->
|
||||||
<!-- </el-upload>-->
|
<!-- </div>-->
|
||||||
<!-- <el-input-->
|
|
||||||
<!-- v-else-->
|
|
||||||
<!-- v-model="listForm.fileId"-->
|
|
||||||
<!-- placeholder=""-->
|
|
||||||
<!-- ></el-input>-->
|
|
||||||
<!-- </el-form-item>-->
|
<!-- </el-form-item>-->
|
||||||
|
<el-form-item label="附件" prop="fileId" class="add-form-item form-item-disabled">
|
||||||
|
<el-upload
|
||||||
|
v-if="listForm.fileId == null || this.listForm.fileId== 'undefined' || this.listForm.fileId == '' "
|
||||||
|
:action="uploadFileListPath"
|
||||||
|
show-file-list
|
||||||
|
:file-list="fileInfoList"
|
||||||
|
name="file"
|
||||||
|
accept=".PDF, .pdf, .doc, .DOC, .docx, .DOCX, .xls, .xlsx, .ppt, .pptx, .PPT, .PPTX, .JPG, .JPEG, .PNG, .jpg, .jpeg, .png"
|
||||||
|
:on-remove="delFileInfo"
|
||||||
|
:on-success="uploadBackSuccess"
|
||||||
|
:before-upload="beforeUpload"
|
||||||
|
>
|
||||||
|
<el-button class="common-button-default" size="mini">
|
||||||
|
点击上传
|
||||||
|
</el-button>
|
||||||
|
</el-upload>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
v-model="listForm.fileId"
|
||||||
|
placeholder=""
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item label="会签" prop="sign" class="add-form-item form-item-disabled">
|
<el-form-item label="会签" prop="sign" class="add-form-item form-item-disabled">
|
||||||
<el-radio-group v-model="signFlag" @change="selectSign">
|
<el-radio-group v-model="signFlag" @change="selectSign">
|
||||||
<el-radio label="1">是</el-radio>
|
<el-radio label="1">是</el-radio>
|
||||||
@@ -833,6 +833,7 @@ export default {
|
|||||||
sarAccessListDatas: [], //国家地区清单表格
|
sarAccessListDatas: [], //国家地区清单表格
|
||||||
uploadFileListPath: "api/att/attFile/upload", // 上传的地址
|
uploadFileListPath: "api/att/attFile/upload", // 上传的地址
|
||||||
fileInfoList: [], // 上传的附件
|
fileInfoList: [], // 上传的附件
|
||||||
|
fileListName: [], //上传的附件名称
|
||||||
standardData: [], //添加标准数据
|
standardData: [], //添加标准数据
|
||||||
standardData1: [], //添加标准数据
|
standardData1: [], //添加标准数据
|
||||||
ListModel: false, //选择清单抽屉状态
|
ListModel: false, //选择清单抽屉状态
|
||||||
@@ -1063,6 +1064,8 @@ export default {
|
|||||||
//提交事件
|
//提交事件
|
||||||
handleSubmit() {
|
handleSubmit() {
|
||||||
let json = this.listForm;
|
let json = this.listForm;
|
||||||
|
this.listForm.fileId = this.fileInfoList.join(',')
|
||||||
|
this.listForm.fileName = this.fileListName.join(',')
|
||||||
// let json = Object.assign(this.listForm, this.roleForm)
|
// let json = Object.assign(this.listForm, this.roleForm)
|
||||||
json.zrUserId = this.roleForm.dockUser; //会签人
|
json.zrUserId = this.roleForm.dockUser; //会签人
|
||||||
json.jlUserId = this.roleForm.directorUser; //业务经理
|
json.jlUserId = this.roleForm.directorUser; //业务经理
|
||||||
@@ -1107,10 +1110,54 @@ export default {
|
|||||||
// 删除上传的文件
|
// 删除上传的文件
|
||||||
delFileInfo(file, fileList) {
|
delFileInfo(file, fileList) {
|
||||||
this.fileInfoList = fileList
|
this.fileInfoList = fileList
|
||||||
|
fileList.forEach(item => {
|
||||||
|
this.fileListName = item.name
|
||||||
|
})
|
||||||
},
|
},
|
||||||
fileUpload () {
|
fileUpload () {
|
||||||
this.fileMadel = true
|
this.fileMadel = true
|
||||||
},
|
},
|
||||||
|
// 上传文件成功回调
|
||||||
|
uploadBackSuccess (res, file, fileList) {
|
||||||
|
if (res.ok) {
|
||||||
|
fileList.forEach(item => {
|
||||||
|
this.fileListName = item.name
|
||||||
|
})
|
||||||
|
this.fileInfoList = fileList
|
||||||
|
this.fileInfoList[this.fileInfoList.length - 1].id = res.data.id
|
||||||
|
this.$message.success('上传成功')
|
||||||
|
} else {
|
||||||
|
this.$message.error(res.message)
|
||||||
|
fileList.pop()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 相关附件 上传之前钩子
|
||||||
|
beforeUpload (file) {
|
||||||
|
var filename = file.name
|
||||||
|
var index1 = filename.lastIndexOf('.')
|
||||||
|
var index2 = filename.length
|
||||||
|
var fileSuffix = filename.substring(index1, index2)
|
||||||
|
// const fileSuffix = file.name.split('.')[1] // 后缀名
|
||||||
|
//把后缀转大写
|
||||||
|
if(fileSuffix !== undefined && fileSuffix !== null){
|
||||||
|
fileSuffix = fileSuffix.toUpperCase()
|
||||||
|
}
|
||||||
|
// 判断上传文件格式
|
||||||
|
if (fileSuffix === '.PDF' || fileSuffix === '.DOC' || fileSuffix === '.DOCX' || fileSuffix === '.PPT'
|
||||||
|
|| fileSuffix === '.PPTX'|| fileSuffix === '.XLS'|| fileSuffix === '.XLSX'
|
||||||
|
|| fileSuffix === '.PNG'|| fileSuffix === '.JPG'|| fileSuffix === '.JPEG') {
|
||||||
|
return true
|
||||||
|
} else {
|
||||||
|
this.$message.error('文件' + file.name + '格式不正确,请上传pdf、doc、docx、ppt、pptx、xls、xlsx、png、jpg、jpeg等文件')
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
// 判断文件上传大小
|
||||||
|
if (file.size / 1024 / 1024 > 300) {
|
||||||
|
this.$message.warning('文件' + file.name + '大小不能超过300M')
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
},
|
||||||
// 点击查看
|
// 点击查看
|
||||||
handlePreview (item) {
|
handlePreview (item) {
|
||||||
let routeUrl = this.$router.resolve({
|
let routeUrl = this.$router.resolve({
|
||||||
|
|||||||
@@ -373,6 +373,28 @@ export default {
|
|||||||
},
|
},
|
||||||
selectThree() {
|
selectThree() {
|
||||||
|
|
||||||
|
},
|
||||||
|
// 请求上传的文件信息
|
||||||
|
getFileInfo() {
|
||||||
|
// this.$http.get("att/attFile/getMultiFileInfos", {
|
||||||
|
// fileIds: this.sarAccessEO.fileIds
|
||||||
|
// }, {
|
||||||
|
// _this: this
|
||||||
|
// }, res => {
|
||||||
|
// console.log(res);
|
||||||
|
// this.$nextTick(() => {
|
||||||
|
// res.data.map(item => {
|
||||||
|
// // 赋值要回显的上传文件内容
|
||||||
|
// this.fileInfoList.push({
|
||||||
|
// name: item.oldFileName,
|
||||||
|
// uid: item.uid,
|
||||||
|
// status: item.status,
|
||||||
|
// id: item.id
|
||||||
|
// });
|
||||||
|
// });
|
||||||
|
// });
|
||||||
|
// }, e => {
|
||||||
|
// });
|
||||||
},
|
},
|
||||||
pageChange(page) {
|
pageChange(page) {
|
||||||
this.page = page;
|
this.page = page;
|
||||||
@@ -391,6 +413,7 @@ export default {
|
|||||||
mounted() {
|
mounted() {
|
||||||
this.processTable()
|
this.processTable()
|
||||||
this.getData()
|
this.getData()
|
||||||
|
this.getFileInfo()
|
||||||
// console.log(this.$store.getters.getHandleInfo);
|
// console.log(this.$store.getters.getHandleInfo);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -629,42 +629,49 @@ export default {
|
|||||||
},
|
},
|
||||||
//提交事件
|
//提交事件
|
||||||
handleSubmit() {
|
handleSubmit() {
|
||||||
var json = Object.assign(this.listForm, this.roleForm)
|
this.dataList.forEach(item => {
|
||||||
json.prcCreateUser = this.$store.getters.userInfo.userId;
|
if(item.distributePerson === '' || item.distributePerson === null || item.distributePerson === undefined){
|
||||||
json.prcCreateUserName = this.$store.getters.userInfo.account;
|
this.$message.warning('请选择分发责任人')
|
||||||
json.standId = this.listForm.standId;
|
} else {
|
||||||
json.XCXSSRQ = this.sarAccessListDatas[0].xcxssrqgj
|
var json = Object.assign(this.listForm, this.roleForm)
|
||||||
json.ZCCSSRQ = this.sarAccessListDatas[0].zccssrqgj
|
json.prcCreateUser = this.$store.getters.userInfo.userId;
|
||||||
this.$refs['listForm'].validate((valid) => {
|
json.prcCreateUserName = this.$store.getters.userInfo.account;
|
||||||
if (valid) {
|
json.standId = this.listForm.standId;
|
||||||
this.$refs['roleForm'].validate((valid) => {
|
json.XCXSSRQ = this.sarAccessListDatas[0].xcxssrqgj
|
||||||
|
json.ZCCSSRQ = this.sarAccessListDatas[0].zccssrqgj
|
||||||
|
this.$refs['listForm'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.$http.get("lawss/activiti/startProcess", { type: "5" }, {
|
this.$refs['roleForm'].validate((valid) => {
|
||||||
_this: this
|
if (valid) {
|
||||||
}, res => {
|
this.$http.get("lawss/activiti/startProcess", { type: "5" }, {
|
||||||
if (res.ok) {
|
|
||||||
this.$http.post("lawss/activiti/completeTask", {
|
|
||||||
taskIds: res.data,
|
|
||||||
userId: this.$store.getters.userInfo.userId,
|
|
||||||
json: JSON.stringify(json)
|
|
||||||
}, {
|
|
||||||
_this: this
|
_this: this
|
||||||
}, res => {
|
}, res => {
|
||||||
if (res.success) {
|
if (res.ok) {
|
||||||
this.$message.success(res.message);
|
this.$http.post("lawss/activiti/completeTask", {
|
||||||
this.$router.push("/processCenter");
|
taskIds: res.data,
|
||||||
|
userId: this.$store.getters.userInfo.userId,
|
||||||
|
json: JSON.stringify(json)
|
||||||
|
}, {
|
||||||
|
_this: this
|
||||||
|
}, res => {
|
||||||
|
if (res.success) {
|
||||||
|
this.$message.success(res.message);
|
||||||
|
this.$router.push("/processCenter");
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
} else {
|
||||||
|
return this.$message.warning("请完善人员信息");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
return this.$message.warning("请完善人员信息");
|
return this.$message.warning("请完善基础信息");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
|
||||||
return this.$message.warning("请完善基础信息");
|
|
||||||
}
|
}
|
||||||
});
|
})
|
||||||
|
|
||||||
},
|
},
|
||||||
//选择拆分标准取消事件
|
//选择拆分标准取消事件
|
||||||
closeDrawer() {
|
closeDrawer() {
|
||||||
@@ -683,7 +690,6 @@ export default {
|
|||||||
}, {
|
}, {
|
||||||
_this: this
|
_this: this
|
||||||
}, res => {
|
}, res => {
|
||||||
console.log(res)
|
|
||||||
this.listForm.breakdownList = res.data;
|
this.listForm.breakdownList = res.data;
|
||||||
this.ListModel = false;
|
this.ListModel = false;
|
||||||
}, e => {
|
}, e => {
|
||||||
|
|||||||
@@ -227,7 +227,7 @@ export default {
|
|||||||
total: 0,
|
total: 0,
|
||||||
pageSize: this.$store.getters.userInfo.configContent,
|
pageSize: this.$store.getters.userInfo.configContent,
|
||||||
listForm: {
|
listForm: {
|
||||||
passFlag: "1", //1为审批通过 2 为驳回
|
passFlag: " ", //空为审批通过 1 为驳回
|
||||||
standNumber: "", //标准编号
|
standNumber: "", //标准编号
|
||||||
standName: "",//标准名称
|
standName: "",//标准名称
|
||||||
certifiedEngineer: "", //认证工程师
|
certifiedEngineer: "", //认证工程师
|
||||||
@@ -303,7 +303,6 @@ export default {
|
|||||||
taskIds: this.taskIds,
|
taskIds: this.taskIds,
|
||||||
pId: this.pId
|
pId: this.pId
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
console.log(res.mesg);
|
|
||||||
if (res) {
|
if (res) {
|
||||||
const processForm = JSON.parse(res.mesg)
|
const processForm = JSON.parse(res.mesg)
|
||||||
this.getFormFieldList(processForm)
|
this.getFormFieldList(processForm)
|
||||||
@@ -317,7 +316,6 @@ export default {
|
|||||||
*/
|
*/
|
||||||
getFormFieldList (item) {
|
getFormFieldList (item) {
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
console.log(item.dataList)
|
|
||||||
this.listForm = JSON.parse(JSON.stringify(item))
|
this.listForm = JSON.parse(JSON.stringify(item))
|
||||||
this.listForm.prcNum = this.prcNum
|
this.listForm.prcNum = this.prcNum
|
||||||
this.listForm.prcName = this.prcName
|
this.listForm.prcName = this.prcName
|
||||||
@@ -332,7 +330,7 @@ export default {
|
|||||||
|
|
||||||
//驳回事件
|
//驳回事件
|
||||||
beforeBack () {
|
beforeBack () {
|
||||||
this.listForm.passFlag = '2'
|
this.listForm.passFlag = '1'
|
||||||
this.handleSubmit()
|
this.handleSubmit()
|
||||||
},
|
},
|
||||||
//提交事件
|
//提交事件
|
||||||
@@ -343,8 +341,6 @@ export default {
|
|||||||
this.listForm.zrUserId = this.$store.getters.userInfo.userId ;
|
this.listForm.zrUserId = this.$store.getters.userInfo.userId ;
|
||||||
this.listForm.commentText = this.commentText;
|
this.listForm.commentText = this.commentText;
|
||||||
this.listForm.standId = this.listForm.standId;
|
this.listForm.standId = this.listForm.standId;
|
||||||
this.listForm.passFlag = '1';
|
|
||||||
this.listForm.signFlag = "";
|
|
||||||
this.listForm.breakdownList = this.listForm.breakdownList
|
this.listForm.breakdownList = this.listForm.breakdownList
|
||||||
const json = JSON.stringify(this.listForm);
|
const json = JSON.stringify(this.listForm);
|
||||||
this.$http.post('lawss/activiti/completeTask', {
|
this.$http.post('lawss/activiti/completeTask', {
|
||||||
|
|||||||
@@ -364,7 +364,6 @@ export default {
|
|||||||
taskIds: this.taskIds,
|
taskIds: this.taskIds,
|
||||||
pId: this.pId
|
pId: this.pId
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
console.log(res.mesg);
|
|
||||||
if (res) {
|
if (res) {
|
||||||
const processForm = JSON.parse(res.mesg);
|
const processForm = JSON.parse(res.mesg);
|
||||||
this.getFormFieldList(processForm);
|
this.getFormFieldList(processForm);
|
||||||
@@ -386,6 +385,7 @@ export default {
|
|||||||
for (let i = 0; i < item.pepdtos.length; i++) {
|
for (let i = 0; i < item.pepdtos.length; i++) {
|
||||||
for (let j = 0; j < item.pepdtos[i].breakdownList.length; j++) {
|
for (let j = 0; j < item.pepdtos[i].breakdownList.length; j++) {
|
||||||
this.listForm.breakdownList.push({
|
this.listForm.breakdownList.push({
|
||||||
|
itemId: new Date().getTime(),
|
||||||
itemsName: item.pepdtos[i].breakdownList[j].itemsName,
|
itemsName: item.pepdtos[i].breakdownList[j].itemsName,
|
||||||
itemNum: item.pepdtos[i].breakdownList[j].itemsNum,
|
itemNum: item.pepdtos[i].breakdownList[j].itemsNum,
|
||||||
responsibleEngineer: item.pepdtos[i].breakdownList[j].responsibleEngineer,
|
responsibleEngineer: item.pepdtos[i].breakdownList[j].responsibleEngineer,
|
||||||
@@ -398,22 +398,31 @@ export default {
|
|||||||
distributePersonId: item.pepdtos[i].distributePersonId,
|
distributePersonId: item.pepdtos[i].distributePersonId,
|
||||||
uname: item.pepdtos[i].uname,
|
uname: item.pepdtos[i].uname,
|
||||||
projectManager: item.pepdtos[i].projectManager,
|
projectManager: item.pepdtos[i].projectManager,
|
||||||
certifiedEngineer: item.pepdtos[i].certifiedEngineer,
|
certifiedEngineerName: item.pepdtos[i].certifiedEngineerName,
|
||||||
qualityEngineer: item.pepdtos[i].qualityEngineer,
|
qualityEngineerName: item.pepdtos[i].qualityEngineerName,
|
||||||
standNumber: item.pepdtos[i].standNumber,
|
standNumber: item.pepdtos[i].standNumber,
|
||||||
standName: item.pepdtos[i].standName,
|
standName: item.pepdtos[i].standName,
|
||||||
xCXSSRQ: item.pepdtos[i].xCXSSRQ,
|
xCXSSRQ: item.pepdtos[i].xCXSSRQ,
|
||||||
zCCSSRQ: item.pepdtos[i].zCCSSRQ,
|
zCCSSRQ: item.pepdtos[i].zCCSSRQ,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
console.log(item.pepdtos);
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
saveUserInfo() {
|
saveUserInfo() {
|
||||||
if (this.type === "implementer") {
|
if (this.type === "implementer") {
|
||||||
|
// 如果有勾选的项
|
||||||
|
if (this.selectList.length) {
|
||||||
|
this.listForm.breakdownList.forEach((item, index) => {
|
||||||
|
if (this.selectList.includes(item.itemId)) {
|
||||||
|
this.listForm.breakdownList[index].implementerId = this.roleRow.id;
|
||||||
|
this.listForm.breakdownList[index].implementer = this.roleRow.name;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
this.listForm.breakdownList[this.dsadadadsada].implementerId = this.roleRow.id;
|
||||||
|
this.listForm.breakdownList[this.dsadadadsada].implementer = this.roleRow.name;
|
||||||
|
}
|
||||||
this.listForm.implementer = this.roleRow.name;
|
this.listForm.implementer = this.roleRow.name;
|
||||||
this.listForm.breakdownList[this.dsadadadsada].implementerId = this.roleRow.id;
|
|
||||||
this.listForm.breakdownList[this.dsadadadsada].implementer = this.roleRow.name;
|
|
||||||
this.showColumn = false;
|
this.showColumn = false;
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.showColumn = true;
|
this.showColumn = true;
|
||||||
@@ -443,28 +452,34 @@ export default {
|
|||||||
},
|
},
|
||||||
//提交事件
|
//提交事件
|
||||||
handleSubmit() {
|
handleSubmit() {
|
||||||
this.listForm.prcCreateUser = this.$store.getters.userInfo.userId;
|
this.listForm.breakdownList.forEach(item => {
|
||||||
this.listForm.applyUpdUserId = this.$store.getters.userInfo.userId;
|
if(item.implementer === null || item.implementer === '' || item.implementer === undefined){
|
||||||
this.listForm.prcCreateUserName = this.$store.getters.userInfo.account;
|
this.$message.warning('请选择落实人')
|
||||||
this.listForm.zrUserId = this.$store.getters.userInfo.userId;
|
} else {
|
||||||
this.listForm.commentText = this.commentText;
|
this.listForm.prcCreateUser = this.$store.getters.userInfo.userId;
|
||||||
this.listForm.approvalOpinion = "";
|
this.listForm.applyUpdUserId = this.$store.getters.userInfo.userId;
|
||||||
this.listForm.signFlag = "";
|
this.listForm.prcCreateUserName = this.$store.getters.userInfo.account;
|
||||||
const json = JSON.stringify(this.listForm.breakdownList);
|
this.listForm.zrUserId = this.$store.getters.userInfo.userId;
|
||||||
this.$http.post("lawss/activiti/completeTask", {
|
this.listForm.commentText = this.commentText;
|
||||||
taskIds: this.taskIds,
|
this.listForm.approvalOpinion = "";
|
||||||
userId: this.userId,
|
this.listForm.signFlag = "";
|
||||||
json: json
|
const json = JSON.stringify(this.listForm.breakdownList);
|
||||||
}, {
|
this.$http.post("lawss/activiti/completeTask", {
|
||||||
_this: this
|
taskIds: this.taskIds,
|
||||||
}, res => {
|
userId: this.userId,
|
||||||
if (res.success) {
|
json: json
|
||||||
this.$message.success(res.message);
|
}, {
|
||||||
this.$router.push("/processCenter");
|
_this: this
|
||||||
}
|
}, res => {
|
||||||
}, e => {
|
if (res.success) {
|
||||||
|
this.$message.success(res.message);
|
||||||
|
this.$router.push("/processCenter");
|
||||||
|
}
|
||||||
|
}, e => {
|
||||||
|
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
},
|
},
|
||||||
drawerCheck(data) {
|
drawerCheck(data) {
|
||||||
var getlist = this.$refs.tree.getCheckedNodes().concat(this.$refs.tree.getHalfCheckedNodes());
|
var getlist = this.$refs.tree.getCheckedNodes().concat(this.$refs.tree.getHalfCheckedNodes());
|
||||||
@@ -477,10 +492,7 @@ export default {
|
|||||||
},
|
},
|
||||||
//标准表格选择框改变
|
//标准表格选择框改变
|
||||||
selectStandChange(data) {
|
selectStandChange(data) {
|
||||||
this.selectList = [];
|
this.selectList = data.map(item => item.itemId)
|
||||||
for (let i = 0; i < data.length; i++) {
|
|
||||||
this.selectList.push(data[i].id);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
selectThree() {
|
selectThree() {
|
||||||
|
|
||||||
|
|||||||
@@ -35,16 +35,16 @@
|
|||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineer" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.certifiedEngineer"
|
v-model="listForm.certifiedEngineerName"
|
||||||
placeholder="请选择认证工程师"
|
placeholder="请选择认证工程师"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineer" class="add-form-item form-item-disabled">
|
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.qualityEngineer"
|
v-model="listForm.qualityEngineerName"
|
||||||
placeholder="请选择质量工程师"
|
placeholder="请选择质量工程师"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
@@ -390,8 +390,8 @@ export default {
|
|||||||
listForm: {
|
listForm: {
|
||||||
standNumber: "", //标准编号
|
standNumber: "", //标准编号
|
||||||
standName: "",//标准名称
|
standName: "",//标准名称
|
||||||
certifiedEngineer: "", //认证工程师
|
certifiedEngineerName: "", //认证工程师
|
||||||
qualityEngineer: "", //质量工程师
|
qualityEngineerName: "", //质量工程师
|
||||||
dataList: [{
|
dataList: [{
|
||||||
projectManager: '',
|
projectManager: '',
|
||||||
itemsName: '',
|
itemsName: '',
|
||||||
@@ -498,8 +498,8 @@ export default {
|
|||||||
this.dataList = item.step3DTOS
|
this.dataList = item.step3DTOS
|
||||||
this.listForm.standName = item.step3DTOS[0].standName
|
this.listForm.standName = item.step3DTOS[0].standName
|
||||||
this.listForm.standNumber = item.step3DTOS[0].standNumber
|
this.listForm.standNumber = item.step3DTOS[0].standNumber
|
||||||
this.listForm.qualityEngineer = item.step3DTOS[0].qualityEngineer
|
this.listForm.qualityEngineerName = item.step3DTOS[0].qualityEngineerName
|
||||||
this.listForm.certifiedEngineer = item.step3DTOS[0].certifiedEngineer
|
this.listForm.certifiedEngineerName = item.step3DTOS[0].certifiedEngineerName
|
||||||
this.listForm.itemsName = item.step3DTOS[0].itemsName
|
this.listForm.itemsName = item.step3DTOS[0].itemsName
|
||||||
this.listForm.itemNum = item.step3DTOS[0].itemNum
|
this.listForm.itemNum = item.step3DTOS[0].itemNum
|
||||||
this.listForm.responsibleUnit = item.step3DTOS[0].responsibleUnit
|
this.listForm.responsibleUnit = item.step3DTOS[0].responsibleUnit
|
||||||
|
|||||||
@@ -35,16 +35,16 @@
|
|||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineer" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.certifiedEngineer"
|
v-model="listForm.certifiedEngineerName"
|
||||||
placeholder="请选择认证工程师"
|
placeholder="请选择认证工程师"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineer" class="add-form-item form-item-disabled">
|
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.qualityEngineer"
|
v-model="listForm.qualityEngineerName"
|
||||||
placeholder="请选择质量工程师"
|
placeholder="请选择质量工程师"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
@@ -348,8 +348,8 @@ export default {
|
|||||||
fenFlag: '1', //1为通过 其他为驳回
|
fenFlag: '1', //1为通过 其他为驳回
|
||||||
standNumber: "", //标准编号
|
standNumber: "", //标准编号
|
||||||
standName: "",//标准名称
|
standName: "",//标准名称
|
||||||
certifiedEngineer: "", //认证工程师
|
certifiedEngineerName: "", //认证工程师
|
||||||
qualityEngineer: "", //质量工程师
|
qualityEngineerName: "", //质量工程师
|
||||||
breakdownList: [{ //分解单数据
|
breakdownList: [{ //分解单数据
|
||||||
implementer: "",
|
implementer: "",
|
||||||
applyArctic: "",
|
applyArctic: "",
|
||||||
@@ -419,7 +419,6 @@ export default {
|
|||||||
taskIds: this.taskIds,
|
taskIds: this.taskIds,
|
||||||
pId: this.pId
|
pId: this.pId
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
console.log(res.mesg);
|
|
||||||
if (res) {
|
if (res) {
|
||||||
const processForm = JSON.parse(res.mesg)
|
const processForm = JSON.parse(res.mesg)
|
||||||
this.getFormFieldList(processForm)
|
this.getFormFieldList(processForm)
|
||||||
@@ -432,7 +431,6 @@ export default {
|
|||||||
* @description: 动态表单读取
|
* @description: 动态表单读取
|
||||||
*/
|
*/
|
||||||
getFormFieldList (item) {
|
getFormFieldList (item) {
|
||||||
console.log(item);
|
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.listForm = JSON.parse(JSON.stringify(item))
|
this.listForm = JSON.parse(JSON.stringify(item))
|
||||||
this.listForm.prcNum = this.prcNum
|
this.listForm.prcNum = this.prcNum
|
||||||
@@ -441,14 +439,12 @@ export default {
|
|||||||
this.dataList = item.dataList
|
this.dataList = item.dataList
|
||||||
this.listForm.standName = item.standName
|
this.listForm.standName = item.standName
|
||||||
this.listForm.standNumber = item.standNumber
|
this.listForm.standNumber = item.standNumber
|
||||||
this.listForm.qualityEngineer = item.qualityEngineer
|
this.listForm.qualityEngineerName = item.qualityEngineerName
|
||||||
this.listForm.certifiedEngineer = item.certifiedEngineer
|
this.listForm.certifiedEngineerName = item.certifiedEngineerName
|
||||||
this.listForm.responsibleUnit = item.responsibleUnit
|
this.listForm.responsibleUnit = item.responsibleUnit
|
||||||
this.listForm.responsibleEngineer = item.responsibleEngineer
|
this.listForm.responsibleEngineer = item.responsibleEngineer
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
//驳回事件
|
//驳回事件
|
||||||
beforeBack () {
|
beforeBack () {
|
||||||
this.listForm.fenFlag = '2'
|
this.listForm.fenFlag = '2'
|
||||||
@@ -458,10 +454,8 @@ export default {
|
|||||||
handleSubmit() {
|
handleSubmit() {
|
||||||
this.listForm.applyUpdUserId = this.dataList[0].distributePersonId
|
this.listForm.applyUpdUserId = this.dataList[0].distributePersonId
|
||||||
this.listForm.commentText = this.commentText;
|
this.listForm.commentText = this.commentText;
|
||||||
this.listForm.fenFlag = "1";
|
|
||||||
this.listForm.dataList = this.dataList
|
this.listForm.dataList = this.dataList
|
||||||
const json = JSON.stringify(this.listForm);
|
const json = JSON.stringify(this.listForm);
|
||||||
console.log(json);
|
|
||||||
this.$http.post('lawss/activiti/completeTask', {
|
this.$http.post('lawss/activiti/completeTask', {
|
||||||
taskIds: this.taskIds,
|
taskIds: this.taskIds,
|
||||||
userId: this.userId,
|
userId: this.userId,
|
||||||
@@ -504,7 +498,6 @@ export default {
|
|||||||
mounted() {
|
mounted() {
|
||||||
this.processTable()
|
this.processTable()
|
||||||
this.getData()
|
this.getData()
|
||||||
// console.log(this.$store.getters.getHandleInfo);
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -35,16 +35,16 @@
|
|||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineer" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.certifiedEngineer"
|
v-model="listForm.certifiedEngineerName"
|
||||||
placeholder="请选择认证工程师"
|
placeholder="请选择认证工程师"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineer" class="add-form-item form-item-disabled">
|
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.qualityEngineer"
|
v-model="listForm.qualityEngineerName"
|
||||||
placeholder="请选择质量工程师"
|
placeholder="请选择质量工程师"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
@@ -296,7 +296,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ProcessFooter
|
<ProcessFooter
|
||||||
show-back
|
|
||||||
show-submit
|
show-submit
|
||||||
:submitLoading="isSubmit"
|
:submitLoading="isSubmit"
|
||||||
:saveLoading="saveLoading"
|
:saveLoading="saveLoading"
|
||||||
@@ -348,8 +347,8 @@ export default {
|
|||||||
fenFlag: '1', //1为通过 其他为驳回
|
fenFlag: '1', //1为通过 其他为驳回
|
||||||
standNumber: "", //标准编号
|
standNumber: "", //标准编号
|
||||||
standName: "",//标准名称
|
standName: "",//标准名称
|
||||||
certifiedEngineer: "", //认证工程师
|
certifiedEngineerName: "", //认证工程师
|
||||||
qualityEngineer: "", //质量工程师
|
qualityEngineerName: "", //质量工程师
|
||||||
breakdownList: [{ //分解单数据
|
breakdownList: [{ //分解单数据
|
||||||
implementer: "",
|
implementer: "",
|
||||||
applyArctic: "",
|
applyArctic: "",
|
||||||
@@ -419,7 +418,6 @@ export default {
|
|||||||
taskIds: this.taskIds,
|
taskIds: this.taskIds,
|
||||||
pId: this.pId
|
pId: this.pId
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
console.log(res.mesg);
|
|
||||||
if (res) {
|
if (res) {
|
||||||
const processForm = JSON.parse(res.mesg)
|
const processForm = JSON.parse(res.mesg)
|
||||||
this.getFormFieldList(processForm)
|
this.getFormFieldList(processForm)
|
||||||
@@ -432,17 +430,16 @@ export default {
|
|||||||
* @description: 动态表单读取
|
* @description: 动态表单读取
|
||||||
*/
|
*/
|
||||||
getFormFieldList (item) {
|
getFormFieldList (item) {
|
||||||
console.log(item);
|
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.listForm = JSON.parse(JSON.stringify(item))
|
this.listForm = JSON.parse(JSON.stringify(item))
|
||||||
this.listForm.prcNum = this.prcNum
|
this.listForm.prcNum = this.prcNum
|
||||||
this.listForm.prcName = this.prcName
|
this.listForm.prcName = this.prcName
|
||||||
this.listForm['id'] = item.id
|
this.listForm['id'] = item.id
|
||||||
this.dataList = item.step3DTOS
|
this.dataList = item.dataList
|
||||||
this.listForm.standName = item.step3DTOS[0].standName
|
this.listForm.standName = item.step3DTOS[0].standName
|
||||||
this.listForm.standNumber = item.step3DTOS[0].standNumber
|
this.listForm.standNumber = item.step3DTOS[0].standNumber
|
||||||
this.listForm.qualityEngineer = item.step3DTOS[0].qualityEngineer
|
this.listForm.qualityEngineerName = item.step3DTOS[0].qualityEngineerName
|
||||||
this.listForm.certifiedEngineer = item.step3DTOS[0].certifiedEngineer
|
this.listForm.certifiedEngineerName = item.step3DTOS[0].certifiedEngineerName
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
//驳回事件
|
//驳回事件
|
||||||
@@ -503,7 +500,6 @@ export default {
|
|||||||
mounted() {
|
mounted() {
|
||||||
this.processTable()
|
this.processTable()
|
||||||
this.getData()
|
this.getData()
|
||||||
// console.log(this.$store.getters.getHandleInfo);
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -35,16 +35,16 @@
|
|||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineer" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.certifiedEngineer"
|
v-model="listForm.certifiedEngineerName"
|
||||||
placeholder="请选择认证工程师"
|
placeholder="请选择认证工程师"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineer" class="add-form-item form-item-disabled">
|
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.qualityEngineer"
|
v-model="listForm.qualityEngineerName"
|
||||||
placeholder="请选择质量工程师"
|
placeholder="请选择质量工程师"
|
||||||
clearable
|
clearable
|
||||||
></el-input>
|
></el-input>
|
||||||
@@ -296,7 +296,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ProcessFooter
|
<ProcessFooter
|
||||||
show-back
|
|
||||||
show-submit
|
show-submit
|
||||||
:submitLoading="isSubmit"
|
:submitLoading="isSubmit"
|
||||||
:saveLoading="saveLoading"
|
:saveLoading="saveLoading"
|
||||||
@@ -348,8 +347,8 @@ export default {
|
|||||||
fenFlag: '1', //1为通过 其他为驳回
|
fenFlag: '1', //1为通过 其他为驳回
|
||||||
standNumber: "", //标准编号
|
standNumber: "", //标准编号
|
||||||
standName: "",//标准名称
|
standName: "",//标准名称
|
||||||
certifiedEngineer: "", //认证工程师
|
certifiedEngineerName: "", //认证工程师
|
||||||
qualityEngineer: "", //质量工程师
|
qualityEngineerName: "", //质量工程师
|
||||||
breakdownList: [{ //分解单数据
|
breakdownList: [{ //分解单数据
|
||||||
implementer: "",
|
implementer: "",
|
||||||
applyArctic: "",
|
applyArctic: "",
|
||||||
@@ -419,7 +418,6 @@ export default {
|
|||||||
taskIds: this.taskIds,
|
taskIds: this.taskIds,
|
||||||
pId: this.pId
|
pId: this.pId
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
console.log(res.mesg);
|
|
||||||
if (res) {
|
if (res) {
|
||||||
const processForm = JSON.parse(res.mesg)
|
const processForm = JSON.parse(res.mesg)
|
||||||
this.getFormFieldList(processForm)
|
this.getFormFieldList(processForm)
|
||||||
@@ -432,7 +430,6 @@ export default {
|
|||||||
* @description: 动态表单读取
|
* @description: 动态表单读取
|
||||||
*/
|
*/
|
||||||
getFormFieldList (item) {
|
getFormFieldList (item) {
|
||||||
console.log(item.dataList);
|
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.listForm = JSON.parse(JSON.stringify(item))
|
this.listForm = JSON.parse(JSON.stringify(item))
|
||||||
this.listForm.prcNum = this.prcNum
|
this.listForm.prcNum = this.prcNum
|
||||||
@@ -501,7 +498,6 @@ export default {
|
|||||||
mounted() {
|
mounted() {
|
||||||
this.processTable()
|
this.processTable()
|
||||||
this.getData()
|
this.getData()
|
||||||
// console.log(this.$store.getters.getHandleInfo);
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+16
-1
@@ -86,6 +86,12 @@
|
|||||||
prop="countryArea"
|
prop="countryArea"
|
||||||
label="国家/地区"
|
label="国家/地区"
|
||||||
align="center">
|
align="center">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span v-if="scope.row.countryArea.indexOf(',') >= 0">
|
||||||
|
<span>{{ scope.row.countryArea }}</span>
|
||||||
|
</span>
|
||||||
|
<span v-else>{{ countryAreaMap[scope.row.countryArea] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="detailedListName"
|
prop="detailedListName"
|
||||||
@@ -170,6 +176,7 @@ export default {
|
|||||||
name: "listOfCountries",
|
name: "listOfCountries",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
countryAreaMap: {},
|
||||||
searching: false,
|
searching: false,
|
||||||
total: 0,
|
total: 0,
|
||||||
page: 1,
|
page: 1,
|
||||||
@@ -345,9 +352,16 @@ export default {
|
|||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: "ListOfStandardsAndRegulationsDetails",
|
name: "ListOfStandardsAndRegulationsDetails",
|
||||||
query: {
|
query: {
|
||||||
id: item.id
|
id: item.id,
|
||||||
|
fileIds: item.fileIds
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
},
|
||||||
|
// 将文本状态的id与name对应
|
||||||
|
setMap(data){
|
||||||
|
data.forEach(item => {
|
||||||
|
this.$set(this.countryAreaMap, item.value, item.label)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
@@ -358,6 +372,7 @@ export default {
|
|||||||
_this: this
|
_this: this
|
||||||
}, res => {
|
}, res => {
|
||||||
this.countryOptions = res.data.COUNTRY;
|
this.countryOptions = res.data.COUNTRY;
|
||||||
|
this.setMap(this.countryOptions)
|
||||||
}, e => {
|
}, e => {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -352,7 +352,8 @@ export default {
|
|||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: "OtherAddEit",
|
name: "OtherAddEit",
|
||||||
query: {
|
query: {
|
||||||
id: item.id
|
id: item.id,
|
||||||
|
fileIds: item.fileIds
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -355,7 +355,8 @@ export default {
|
|||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: "ProjectAddEit",
|
name: "ProjectAddEit",
|
||||||
query: {
|
query: {
|
||||||
id: item.id
|
id: item.id,
|
||||||
|
fileIds: item.fileIds
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -242,6 +242,9 @@
|
|||||||
prop="textStatus"
|
prop="textStatus"
|
||||||
width="120px"
|
width="120px"
|
||||||
label="文本状态">
|
label="文本状态">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ textStatusMap[scope.row.textStatus] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
<el-table
|
<el-table
|
||||||
@@ -336,25 +339,31 @@
|
|||||||
>
|
>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="issueTime"
|
prop="standEnName"
|
||||||
align="center"
|
align="center"
|
||||||
width="180px"
|
width="180px"
|
||||||
label="英文名称">
|
label="英文名称">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="issueTime"
|
prop="typeApplicable"
|
||||||
align="center"
|
align="center"
|
||||||
width="180px"
|
width="180px"
|
||||||
label="适用车型">
|
label="适用车型">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ typeApplicableMap[scope.row.typeApplicable] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="issueTime"
|
prop="nylx"
|
||||||
align="center"
|
align="center"
|
||||||
width="180px"
|
width="180px"
|
||||||
label="能源类型">
|
label="能源类型">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ nylxMap[scope.row.nylx] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="issueTime"
|
prop="putTime"
|
||||||
sortable
|
sortable
|
||||||
align="center"
|
align="center"
|
||||||
width="210px"
|
width="210px"
|
||||||
@@ -362,14 +371,14 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="zccssrq"
|
prop="zccssrqgj"
|
||||||
sortable
|
sortable
|
||||||
width="210px"
|
width="210px"
|
||||||
align="center"
|
align="center"
|
||||||
label="在产车实施日期">
|
label="在产车实施日期">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="XCXSSRQ"
|
prop="xcxssrqgj"
|
||||||
sortable
|
sortable
|
||||||
align="center"
|
align="center"
|
||||||
width="210px"
|
width="210px"
|
||||||
@@ -377,40 +386,53 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="zccssrq"
|
prop="zrbm"
|
||||||
width="210px"
|
width="210px"
|
||||||
align="center"
|
align="center"
|
||||||
label="责任部门">
|
label="责任部门">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ zrbmMap[scope.row.zrbm] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="textStatus"
|
prop="sycpx"
|
||||||
width="180px"
|
width="180px"
|
||||||
align="center"
|
align="center"
|
||||||
label="适用产品线">
|
label="适用产品线">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ sycpxMap[scope.row.sycpx] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="textStatus"
|
prop="cycvppsbm"
|
||||||
|
width="210px"
|
||||||
|
align="center"
|
||||||
|
label="乘用车VPPS编码">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
show-overflow-tooltip
|
||||||
|
prop="cycvppscn"
|
||||||
width="210px"
|
width="210px"
|
||||||
align="center"
|
align="center"
|
||||||
label="乘用车VPPS中文名称">
|
label="乘用车VPPS中文名称">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="textStatus"
|
prop="kccvppsbm"
|
||||||
align="center"
|
align="center"
|
||||||
width="210px"
|
width="210px"
|
||||||
label="卡车VPPS编码">
|
label="卡车VPPS编码">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="textStatus"
|
prop="kccvppscn"
|
||||||
align="center"
|
align="center"
|
||||||
width="210px"
|
width="210px"
|
||||||
label="卡车VPPS中文名称">
|
label="卡车VPPS中文名称">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column>
|
<el-table-column width="150">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button
|
<el-button
|
||||||
class="common-button-default"
|
class="common-button-default"
|
||||||
@@ -421,6 +443,7 @@
|
|||||||
<el-button
|
<el-button
|
||||||
class="common-button-default"
|
class="common-button-default"
|
||||||
type="danger"
|
type="danger"
|
||||||
|
style="margin-left: 0px"
|
||||||
size="small" @click="moveDown(scope.$index, scope.row)"
|
size="small" @click="moveDown(scope.$index, scope.row)"
|
||||||
v-if="!disabledFlag"
|
v-if="!disabledFlag"
|
||||||
>下移</el-button>
|
>下移</el-button>
|
||||||
@@ -526,12 +549,18 @@ export default {
|
|||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
return {
|
return {
|
||||||
|
textStatusMap: {},
|
||||||
|
typeApplicableMap: {},
|
||||||
|
nylxMap: {},
|
||||||
|
zrbmMap: {},
|
||||||
|
sycpxMap: {},
|
||||||
selectSearch : [],
|
selectSearch : [],
|
||||||
// 新增、编辑 基础信息字段
|
// 新增、编辑 基础信息字段
|
||||||
sarAccessEO: {
|
sarAccessEO: {
|
||||||
id: '',
|
id: '',
|
||||||
sortKey: 1,
|
sortKey: 1,
|
||||||
countryArea: '',
|
countryArea: '',
|
||||||
|
fileIds: '',
|
||||||
detailedListName: '',
|
detailedListName: '',
|
||||||
energyKind: '',
|
energyKind: '',
|
||||||
type: '',
|
type: '',
|
||||||
@@ -552,9 +581,6 @@ export default {
|
|||||||
detailedListName: [
|
detailedListName: [
|
||||||
{required: true, message: '清单名称不能为空', trigger: 'blur'},
|
{required: true, message: '清单名称不能为空', trigger: 'blur'},
|
||||||
{type: 'string', max: 100, message: '表单名称不能超过100个字符', trigger: 'blur'}
|
{type: 'string', max: 100, message: '表单名称不能超过100个字符', trigger: 'blur'}
|
||||||
],
|
|
||||||
remark: [
|
|
||||||
{required: true,type: 'string', max: 500, message: '表单名称不能超过500个字符', trigger: 'blur'}
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
disabledFlag: false,
|
disabledFlag: false,
|
||||||
@@ -846,7 +872,6 @@ export default {
|
|||||||
uploadBackSuccess (res, file, fileList) {
|
uploadBackSuccess (res, file, fileList) {
|
||||||
if (res.ok) {
|
if (res.ok) {
|
||||||
this.fileInfoList = fileList
|
this.fileInfoList = fileList
|
||||||
console.log(this.fileInfoList)
|
|
||||||
this.fileInfoList[this.fileInfoList.length - 1].id = res.data.id
|
this.fileInfoList[this.fileInfoList.length - 1].id = res.data.id
|
||||||
this.$message.success('上传成功')
|
this.$message.success('上传成功')
|
||||||
} else {
|
} else {
|
||||||
@@ -1186,8 +1211,7 @@ export default {
|
|||||||
this.fileInfoList.map(item => {
|
this.fileInfoList.map(item => {
|
||||||
relateFile.push(item.id)
|
relateFile.push(item.id)
|
||||||
})
|
})
|
||||||
sarAccessEO.relateFile = relateFile.join(',')
|
sarAccessEO.fileIds = relateFile.join(',')
|
||||||
console.log(sarAccessEO.relateFile)
|
|
||||||
}
|
}
|
||||||
if (!sarAccessEO.id) {
|
if (!sarAccessEO.id) {
|
||||||
// 新增
|
// 新增
|
||||||
@@ -1201,12 +1225,8 @@ export default {
|
|||||||
this.$message.success('新增成功')
|
this.$message.success('新增成功')
|
||||||
this.isNext = true
|
this.isNext = true
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: 'AccessStandardsAndRegulations',
|
name: 'AccessStandardsAndRegulations'
|
||||||
query: {
|
|
||||||
relateFile: sarAccessEO.relateFile
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
console.log(sarAccessEO)
|
|
||||||
}
|
}
|
||||||
}, e => {
|
}, e => {
|
||||||
})
|
})
|
||||||
@@ -1604,7 +1624,7 @@ export default {
|
|||||||
// 请求上传的文件信息
|
// 请求上传的文件信息
|
||||||
getFileInfo () {
|
getFileInfo () {
|
||||||
this.$http.get('att/attFile/getMultiFileInfos', {
|
this.$http.get('att/attFile/getMultiFileInfos', {
|
||||||
fileIds: this.sarAccessEO.relateFile
|
fileIds: this.$route.query.fileIds
|
||||||
}, {
|
}, {
|
||||||
_this: this
|
_this: this
|
||||||
}, res => {
|
}, res => {
|
||||||
@@ -1696,6 +1716,16 @@ export default {
|
|||||||
this.sarAccessInfoList = res.data
|
this.sarAccessInfoList = res.data
|
||||||
}, e => {
|
}, e => {
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
// 将文本状态的id与name对应
|
||||||
|
setMap(data){
|
||||||
|
data.forEach(item => {
|
||||||
|
this.$set(this.textStatusMap, item.value, item.label)
|
||||||
|
this.$set(this.typeApplicableMap, item.value, item.label)
|
||||||
|
this.$set(this.nylxMap, item.value, item.label)
|
||||||
|
this.$set(this.zrbmMap, item.value, item.label)
|
||||||
|
this.$set(this.sycpxMap, item.value, item.label)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@@ -1732,6 +1762,15 @@ export default {
|
|||||||
this.ROLELIST = res.data.ROLELIST
|
this.ROLELIST = res.data.ROLELIST
|
||||||
this.GXHBQOptions = res.data.GXHBQXX
|
this.GXHBQOptions = res.data.GXHBQXX
|
||||||
this.askNatureOptions = res.data.ACCESSTYPE
|
this.askNatureOptions = res.data.ACCESSTYPE
|
||||||
|
this.zrbmOptions = res.data.ZRBMCLASS // 责任部门
|
||||||
|
this.categoryOptions = res.data.NYLXCLASS // 能源类型
|
||||||
|
this.textStatusOptions = res.data.WBZTCLASS
|
||||||
|
this.sycpxOptions = res.data.SYCPXCLASS // 适用产品线
|
||||||
|
this.setMap(this.textStatusOptions)
|
||||||
|
this.setMap(this.zrbmOptions)
|
||||||
|
this.setMap(this.categoryOptions)
|
||||||
|
this.setMap(this.sycpxOptions)
|
||||||
|
this.setMap(this.energyKindOptions)
|
||||||
this.getGzzOption()
|
this.getGzzOption()
|
||||||
}, e => {
|
}, e => {
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -11,7 +11,10 @@
|
|||||||
<div v-show="heightShow" class="transition-box">
|
<div v-show="heightShow" class="transition-box">
|
||||||
<p class="transition-box-p">
|
<p class="transition-box-p">
|
||||||
<label class="transition-box-label">国家/地区:</label>
|
<label class="transition-box-label">国家/地区:</label>
|
||||||
<span class="transition-box-span">{{ sarAccessEO.countryArea }}</span>
|
<span class="transition-box-span" v-if="sarAccessEO.countryArea.indexOf(',') >= 0">
|
||||||
|
<span>{{ sarAccessEO.countryArea }}</span>
|
||||||
|
</span>
|
||||||
|
<span class="transition-box-span" v-else>{{ countryAreaMap[sarAccessEO.countryArea] }}</span>
|
||||||
</p>
|
</p>
|
||||||
<p class="transition-box-p">
|
<p class="transition-box-p">
|
||||||
<label class="transition-box-label">清单说明:</label>
|
<label class="transition-box-label">清单说明:</label>
|
||||||
@@ -21,7 +24,7 @@
|
|||||||
<label class="transition-box-label">附件:</label>
|
<label class="transition-box-label">附件:</label>
|
||||||
<div class="file-box" v-if="fileInfoList.length > 0">
|
<div class="file-box" v-if="fileInfoList.length > 0">
|
||||||
<p v-for="item in fileInfoList"
|
<p v-for="item in fileInfoList"
|
||||||
:key="item.id">
|
:key="item.id"> {{ item.name }}
|
||||||
<i
|
<i
|
||||||
title="下载"
|
title="下载"
|
||||||
@click="downloadFile(item.id)"
|
@click="downloadFile(item.id)"
|
||||||
@@ -124,31 +127,35 @@
|
|||||||
<el-table-column
|
<el-table-column
|
||||||
prop="standName"
|
prop="standName"
|
||||||
label="中文名称"
|
label="中文名称"
|
||||||
align="center"
|
|
||||||
fixed="left"
|
|
||||||
width="180px"
|
width="180px"
|
||||||
>
|
>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="issueTime"
|
prop="standEnName"
|
||||||
align="center"
|
align="center"
|
||||||
width="180px"
|
width="180px"
|
||||||
label="英文名称">
|
label="英文名称">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="issueTime"
|
prop="typeApplicable"
|
||||||
align="center"
|
align="center"
|
||||||
width="180px"
|
width="180px"
|
||||||
label="适用车型">
|
label="适用车型">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ typeApplicableMap[scope.row.typeApplicable] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="issueTime"
|
prop="nylx"
|
||||||
align="center"
|
align="center"
|
||||||
width="180px"
|
width="180px"
|
||||||
label="能源类型">
|
label="能源类型">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ nylxMap[scope.row.nylx] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="issueTime"
|
prop="putTime"
|
||||||
sortable
|
sortable
|
||||||
align="center"
|
align="center"
|
||||||
width="210px"
|
width="210px"
|
||||||
@@ -156,14 +163,14 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="zccssrq"
|
prop="zccssrqgj"
|
||||||
sortable
|
sortable
|
||||||
width="210px"
|
width="210px"
|
||||||
align="center"
|
align="center"
|
||||||
label="在产车实施日期">
|
label="在产车实施日期">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="xcxssrq"
|
prop="xcxssrqgj"
|
||||||
sortable
|
sortable
|
||||||
align="center"
|
align="center"
|
||||||
width="210px"
|
width="210px"
|
||||||
@@ -171,35 +178,48 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="zccssrq"
|
prop="zrbm"
|
||||||
width="210px"
|
width="210px"
|
||||||
align="center"
|
align="center"
|
||||||
label="责任部门">
|
label="责任部门">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ zrbmMap[scope.row.zrbm] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="textStatus"
|
prop="sycpx"
|
||||||
width="180px"
|
width="180px"
|
||||||
align="center"
|
align="center"
|
||||||
label="适用产品线">
|
label="适用产品线">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ sycpxMap[scope.row.sycpx] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="textStatus"
|
prop="cycvppsbm"
|
||||||
|
width="210px"
|
||||||
|
align="center"
|
||||||
|
label="乘用车VPPS编码">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
show-overflow-tooltip
|
||||||
|
prop="cycvppscn"
|
||||||
width="210px"
|
width="210px"
|
||||||
align="center"
|
align="center"
|
||||||
label="乘用车VPPS中文名称">
|
label="乘用车VPPS中文名称">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="textStatus"
|
prop="kccvppsbm"
|
||||||
align="center"
|
align="center"
|
||||||
width="210px"
|
width="210px"
|
||||||
label="卡车VPPS编码">
|
label="卡车VPPS编码">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="textStatus"
|
prop="kccvppscn"
|
||||||
align="center"
|
align="center"
|
||||||
width="210px"
|
width="210px"
|
||||||
label="卡车VPPS中文名称">
|
label="卡车VPPS中文名称">
|
||||||
@@ -256,6 +276,12 @@ export default {
|
|||||||
name: "AccessStandardDetails",
|
name: "AccessStandardDetails",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
textStatusMap: {},
|
||||||
|
typeApplicableMap: {},
|
||||||
|
nylxMap: {},
|
||||||
|
zrbmMap: {},
|
||||||
|
sycpxMap: {},
|
||||||
|
countryAreaMap: {},
|
||||||
standinfoList: [],
|
standinfoList: [],
|
||||||
standardFormTotal: 0,
|
standardFormTotal: 0,
|
||||||
relateDialog: false,
|
relateDialog: false,
|
||||||
@@ -452,9 +478,8 @@ export default {
|
|||||||
},
|
},
|
||||||
// 请求上传的文件信息
|
// 请求上传的文件信息
|
||||||
getFileInfo() {
|
getFileInfo() {
|
||||||
console.log(this.sarAccessEO)
|
|
||||||
this.$http.get("att/attFile/getMultiFileInfos", {
|
this.$http.get("att/attFile/getMultiFileInfos", {
|
||||||
fileIds: this.sarAccessEO.relateFile
|
fileIds: this.sarAccessEO.fileIds
|
||||||
}, {
|
}, {
|
||||||
_this: this
|
_this: this
|
||||||
}, res => {
|
}, res => {
|
||||||
@@ -474,7 +499,7 @@ export default {
|
|||||||
},
|
},
|
||||||
// 附件下载事件
|
// 附件下载事件
|
||||||
fileDownLoad(attId) {
|
fileDownLoad(attId) {
|
||||||
window.location.href = "/api/att/attFile/downloadFile?fileId=" + attId;
|
window.location.href = "/api/att/attFile/downloadFile?fileId=" + attId
|
||||||
},
|
},
|
||||||
// 点击查看
|
// 点击查看
|
||||||
handlePreview(item) {
|
handlePreview(item) {
|
||||||
@@ -560,6 +585,17 @@ export default {
|
|||||||
doLayout() {
|
doLayout() {
|
||||||
this.$refs.adminTable && this.$refs.adminTable.doLayout();
|
this.$refs.adminTable && this.$refs.adminTable.doLayout();
|
||||||
this.$refs.skillTable && this.$refs.skillTable.doLayout();
|
this.$refs.skillTable && this.$refs.skillTable.doLayout();
|
||||||
|
},
|
||||||
|
// 将文本状态的id与name对应
|
||||||
|
setMap(data){
|
||||||
|
data.forEach(item => {
|
||||||
|
this.$set(this.textStatusMap, item.value, item.label)
|
||||||
|
this.$set(this.typeApplicableMap, item.value, item.label)
|
||||||
|
this.$set(this.nylxMap, item.value, item.label)
|
||||||
|
this.$set(this.zrbmMap, item.value, item.label)
|
||||||
|
this.$set(this.sycpxMap, item.value, item.label)
|
||||||
|
this.$set(this.countryAreaMap, item.value, item.label)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
@@ -589,6 +625,16 @@ export default {
|
|||||||
this.ROLELIST = res.data.ROLELIST;
|
this.ROLELIST = res.data.ROLELIST;
|
||||||
this.GXHBQOptions = res.data.GXHBQXX;
|
this.GXHBQOptions = res.data.GXHBQXX;
|
||||||
this.askNatureOptions = res.data.ACCESSTYPE;
|
this.askNatureOptions = res.data.ACCESSTYPE;
|
||||||
|
this.zrbmOptions = res.data.ZRBMCLASS // 责任部门
|
||||||
|
this.categoryOptions = res.data.NYLXCLASS // 能源类型
|
||||||
|
this.textStatusOptions = res.data.WBZTCLASS
|
||||||
|
this.sycpxOptions = res.data.SYCPXCLASS // 适用产品线
|
||||||
|
this.setMap(this.textStatusOptions)
|
||||||
|
this.setMap(this.zrbmOptions)
|
||||||
|
this.setMap(this.categoryOptions)
|
||||||
|
this.setMap(this.sycpxOptions)
|
||||||
|
this.setMap(this.energyKindOptions)
|
||||||
|
this.setMap(this.drawerCountryOptions)
|
||||||
this.getGzzOption();
|
this.getGzzOption();
|
||||||
}, e => {
|
}, e => {
|
||||||
});
|
});
|
||||||
|
|||||||
+60
-13
@@ -227,6 +227,9 @@
|
|||||||
prop="textStatus"
|
prop="textStatus"
|
||||||
width="120px"
|
width="120px"
|
||||||
label="文本状态">
|
label="文本状态">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ textStatusMap[scope.row.textStatus] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
<el-table
|
<el-table
|
||||||
@@ -321,25 +324,31 @@
|
|||||||
>
|
>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="issueTime"
|
prop="standEnName"
|
||||||
align="center"
|
align="center"
|
||||||
width="180px"
|
width="180px"
|
||||||
label="英文名称">
|
label="英文名称">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="issueTime"
|
prop="typeApplicable"
|
||||||
align="center"
|
align="center"
|
||||||
width="180px"
|
width="180px"
|
||||||
label="适用车型">
|
label="适用车型">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ typeApplicableMap[scope.row.typeApplicable] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="issueTime"
|
prop="nylx"
|
||||||
align="center"
|
align="center"
|
||||||
width="180px"
|
width="180px"
|
||||||
label="能源类型">
|
label="能源类型">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ nylxMap[scope.row.nylx] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="issueTime"
|
prop="putTime"
|
||||||
sortable
|
sortable
|
||||||
align="center"
|
align="center"
|
||||||
width="210px"
|
width="210px"
|
||||||
@@ -347,14 +356,14 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="zccssrq"
|
prop="zccssrqgj"
|
||||||
sortable
|
sortable
|
||||||
width="210px"
|
width="210px"
|
||||||
align="center"
|
align="center"
|
||||||
label="在产车实施日期">
|
label="在产车实施日期">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="XCXSSRQ"
|
prop="xcxssrqgj"
|
||||||
sortable
|
sortable
|
||||||
align="center"
|
align="center"
|
||||||
width="210px"
|
width="210px"
|
||||||
@@ -362,35 +371,48 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="zccssrq"
|
prop="zrbm"
|
||||||
width="210px"
|
width="210px"
|
||||||
align="center"
|
align="center"
|
||||||
label="责任部门">
|
label="责任部门">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ zrbmMap[scope.row.zrbm] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="textStatus"
|
prop="sycpx"
|
||||||
width="180px"
|
width="180px"
|
||||||
align="center"
|
align="center"
|
||||||
label="适用产品线">
|
label="适用产品线">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ sycpxMap[scope.row.sycpx] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="textStatus"
|
prop="cycvppsbm"
|
||||||
|
width="210px"
|
||||||
|
align="center"
|
||||||
|
label="乘用车VPPS编码">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
show-overflow-tooltip
|
||||||
|
prop="cycvppscn"
|
||||||
width="210px"
|
width="210px"
|
||||||
align="center"
|
align="center"
|
||||||
label="乘用车VPPS中文名称">
|
label="乘用车VPPS中文名称">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="textStatus"
|
prop="kccvppsbm"
|
||||||
align="center"
|
align="center"
|
||||||
width="210px"
|
width="210px"
|
||||||
label="卡车VPPS编码">
|
label="卡车VPPS编码">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="textStatus"
|
prop="kccvppscn"
|
||||||
align="center"
|
align="center"
|
||||||
width="210px"
|
width="210px"
|
||||||
label="卡车VPPS中文名称">
|
label="卡车VPPS中文名称">
|
||||||
@@ -511,11 +533,17 @@ export default {
|
|||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
return {
|
return {
|
||||||
|
textStatusMap: {},
|
||||||
|
typeApplicableMap: {},
|
||||||
|
nylxMap: {},
|
||||||
|
zrbmMap: {},
|
||||||
|
sycpxMap: {},
|
||||||
selectSearch : [],
|
selectSearch : [],
|
||||||
// 新增、编辑 基础信息字段
|
// 新增、编辑 基础信息字段
|
||||||
sarAccessEO: {
|
sarAccessEO: {
|
||||||
id: '',
|
id: '',
|
||||||
sortKey: 4,
|
sortKey: 4,
|
||||||
|
fileIds: '',
|
||||||
detailedList: '',
|
detailedList: '',
|
||||||
detailedListName: '',
|
detailedListName: '',
|
||||||
energyKind: '',
|
energyKind: '',
|
||||||
@@ -1167,7 +1195,7 @@ export default {
|
|||||||
this.fileInfoList.map(item => {
|
this.fileInfoList.map(item => {
|
||||||
relateFile.push(item.id)
|
relateFile.push(item.id)
|
||||||
})
|
})
|
||||||
sarAccessEO.relateFile = relateFile.join(',')
|
sarAccessEO.fileIds = relateFile.join(',')
|
||||||
}
|
}
|
||||||
if (!sarAccessEO.id) {
|
if (!sarAccessEO.id) {
|
||||||
// 新增
|
// 新增
|
||||||
@@ -1584,7 +1612,7 @@ export default {
|
|||||||
// 请求上传的文件信息
|
// 请求上传的文件信息
|
||||||
getFileInfo () {
|
getFileInfo () {
|
||||||
this.$http.get('att/attFile/getMultiFileInfos', {
|
this.$http.get('att/attFile/getMultiFileInfos', {
|
||||||
fileIds: this.sarAccessEO.relateFile
|
fileIds: this.$route.query.fileIds
|
||||||
}, {
|
}, {
|
||||||
_this: this
|
_this: this
|
||||||
}, res => {
|
}, res => {
|
||||||
@@ -1678,6 +1706,16 @@ export default {
|
|||||||
}, e => {
|
}, e => {
|
||||||
|
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
// 将文本状态的id与name对应
|
||||||
|
setMap(data){
|
||||||
|
data.forEach(item => {
|
||||||
|
this.$set(this.textStatusMap, item.value, item.label)
|
||||||
|
this.$set(this.typeApplicableMap, item.value, item.label)
|
||||||
|
this.$set(this.nylxMap, item.value, item.label)
|
||||||
|
this.$set(this.zrbmMap, item.value, item.label)
|
||||||
|
this.$set(this.sycpxMap, item.value, item.label)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@@ -1714,6 +1752,15 @@ export default {
|
|||||||
this.ROLELIST = res.data.ROLELIST
|
this.ROLELIST = res.data.ROLELIST
|
||||||
this.GXHBQOptions = res.data.GXHBQXX
|
this.GXHBQOptions = res.data.GXHBQXX
|
||||||
this.askNatureOptions = res.data.ACCESSTYPE
|
this.askNatureOptions = res.data.ACCESSTYPE
|
||||||
|
this.zrbmOptions = res.data.ZRBMCLASS // 责任部门
|
||||||
|
this.categoryOptions = res.data.NYLXCLASS // 能源类型
|
||||||
|
this.textStatusOptions = res.data.WBZTCLASS
|
||||||
|
this.sycpxOptions = res.data.SYCPXCLASS // 适用产品线
|
||||||
|
this.setMap(this.textStatusOptions)
|
||||||
|
this.setMap(this.zrbmOptions)
|
||||||
|
this.setMap(this.categoryOptions)
|
||||||
|
this.setMap(this.sycpxOptions)
|
||||||
|
this.setMap(this.energyKindOptions)
|
||||||
this.getGzzOption()
|
this.getGzzOption()
|
||||||
}, e => {
|
}, e => {
|
||||||
})
|
})
|
||||||
|
|||||||
+60
-14
@@ -227,6 +227,9 @@
|
|||||||
prop="textStatus"
|
prop="textStatus"
|
||||||
width="120px"
|
width="120px"
|
||||||
label="文本状态">
|
label="文本状态">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ textStatusMap[scope.row.textStatus] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
<el-table
|
<el-table
|
||||||
@@ -321,25 +324,31 @@
|
|||||||
>
|
>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="issueTime"
|
prop="standEnName"
|
||||||
align="center"
|
align="center"
|
||||||
width="180px"
|
width="180px"
|
||||||
label="英文名称">
|
label="英文名称">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="issueTime"
|
prop="typeApplicable"
|
||||||
align="center"
|
align="center"
|
||||||
width="180px"
|
width="180px"
|
||||||
label="适用车型">
|
label="适用车型">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ typeApplicableMap[scope.row.typeApplicable] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="issueTime"
|
prop="nylx"
|
||||||
align="center"
|
align="center"
|
||||||
width="180px"
|
width="180px"
|
||||||
label="能源类型">
|
label="能源类型">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ nylxMap[scope.row.nylx] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="issueTime"
|
prop="putTime"
|
||||||
sortable
|
sortable
|
||||||
align="center"
|
align="center"
|
||||||
width="210px"
|
width="210px"
|
||||||
@@ -347,14 +356,14 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="zccssrq"
|
prop="zccssrqgj"
|
||||||
sortable
|
sortable
|
||||||
width="210px"
|
width="210px"
|
||||||
align="center"
|
align="center"
|
||||||
label="在产车实施日期">
|
label="在产车实施日期">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="XCXSSRQ"
|
prop="xcxssrqgj"
|
||||||
sortable
|
sortable
|
||||||
align="center"
|
align="center"
|
||||||
width="210px"
|
width="210px"
|
||||||
@@ -362,35 +371,48 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="zccssrq"
|
prop="zrbm"
|
||||||
width="210px"
|
width="210px"
|
||||||
align="center"
|
align="center"
|
||||||
label="责任部门">
|
label="责任部门">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ zrbmMap[scope.row.zrbm] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="textStatus"
|
prop="sycpx"
|
||||||
width="180px"
|
width="180px"
|
||||||
align="center"
|
align="center"
|
||||||
label="适用产品线">
|
label="适用产品线">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ sycpxMap[scope.row.sycpx] }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="textStatus"
|
prop="cycvppsbm"
|
||||||
|
width="210px"
|
||||||
|
align="center"
|
||||||
|
label="乘用车VPPS编码">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
show-overflow-tooltip
|
||||||
|
prop="cycvppscn"
|
||||||
width="210px"
|
width="210px"
|
||||||
align="center"
|
align="center"
|
||||||
label="乘用车VPPS中文名称">
|
label="乘用车VPPS中文名称">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="textStatus"
|
prop="kccvppsbm"
|
||||||
align="center"
|
align="center"
|
||||||
width="210px"
|
width="210px"
|
||||||
label="卡车VPPS编码">
|
label="卡车VPPS编码">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
prop="textStatus"
|
prop="kccvppscn"
|
||||||
align="center"
|
align="center"
|
||||||
width="210px"
|
width="210px"
|
||||||
label="卡车VPPS中文名称">
|
label="卡车VPPS中文名称">
|
||||||
@@ -511,11 +533,17 @@ export default {
|
|||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
return {
|
return {
|
||||||
|
textStatusMap: {},
|
||||||
|
typeApplicableMap: {},
|
||||||
|
nylxMap: {},
|
||||||
|
zrbmMap: {},
|
||||||
|
sycpxMap: {},
|
||||||
selectSearch : [],
|
selectSearch : [],
|
||||||
// 新增、编辑 基础信息字段
|
// 新增、编辑 基础信息字段
|
||||||
sarAccessEO: {
|
sarAccessEO: {
|
||||||
id: '',
|
id: '',
|
||||||
sortKey: 2,
|
sortKey: 2,
|
||||||
|
fileIds: '',
|
||||||
projectName: '',
|
projectName: '',
|
||||||
detailedListName: '',
|
detailedListName: '',
|
||||||
energyKind: '',
|
energyKind: '',
|
||||||
@@ -1151,7 +1179,6 @@ export default {
|
|||||||
},
|
},
|
||||||
// 提交按钮 事件
|
// 提交按钮 事件
|
||||||
saveSarAccess () {
|
saveSarAccess () {
|
||||||
alert()
|
|
||||||
this.$refs['sarAccessForm'].validate((valid) => {
|
this.$refs['sarAccessForm'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
let rowlist = []
|
let rowlist = []
|
||||||
@@ -1169,7 +1196,7 @@ export default {
|
|||||||
this.fileInfoList.map(item => {
|
this.fileInfoList.map(item => {
|
||||||
relateFile.push(item.id)
|
relateFile.push(item.id)
|
||||||
})
|
})
|
||||||
sarAccessEO.relateFile = relateFile.join(',')
|
sarAccessEO.fileIds = relateFile.join(',')
|
||||||
}
|
}
|
||||||
if (!sarAccessEO.id) {
|
if (!sarAccessEO.id) {
|
||||||
// 新增
|
// 新增
|
||||||
@@ -1586,7 +1613,7 @@ export default {
|
|||||||
// 请求上传的文件信息
|
// 请求上传的文件信息
|
||||||
getFileInfo () {
|
getFileInfo () {
|
||||||
this.$http.get('att/attFile/getMultiFileInfos', {
|
this.$http.get('att/attFile/getMultiFileInfos', {
|
||||||
fileIds: this.sarAccessEO.relateFile
|
fileIds: this.$route.query.fileIds
|
||||||
}, {
|
}, {
|
||||||
_this: this
|
_this: this
|
||||||
}, res => {
|
}, res => {
|
||||||
@@ -1680,6 +1707,16 @@ export default {
|
|||||||
}, e => {
|
}, e => {
|
||||||
|
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
// 将文本状态的id与name对应
|
||||||
|
setMap(data){
|
||||||
|
data.forEach(item => {
|
||||||
|
this.$set(this.textStatusMap, item.value, item.label)
|
||||||
|
this.$set(this.typeApplicableMap, item.value, item.label)
|
||||||
|
this.$set(this.nylxMap, item.value, item.label)
|
||||||
|
this.$set(this.zrbmMap, item.value, item.label)
|
||||||
|
this.$set(this.sycpxMap, item.value, item.label)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@@ -1716,6 +1753,15 @@ export default {
|
|||||||
this.ROLELIST = res.data.ROLELIST
|
this.ROLELIST = res.data.ROLELIST
|
||||||
this.GXHBQOptions = res.data.GXHBQXX
|
this.GXHBQOptions = res.data.GXHBQXX
|
||||||
this.askNatureOptions = res.data.ACCESSTYPE
|
this.askNatureOptions = res.data.ACCESSTYPE
|
||||||
|
this.zrbmOptions = res.data.ZRBMCLASS // 责任部门
|
||||||
|
this.categoryOptions = res.data.NYLXCLASS // 能源类型
|
||||||
|
this.textStatusOptions = res.data.WBZTCLASS
|
||||||
|
this.sycpxOptions = res.data.SYCPXCLASS // 适用产品线
|
||||||
|
this.setMap(this.textStatusOptions)
|
||||||
|
this.setMap(this.zrbmOptions)
|
||||||
|
this.setMap(this.categoryOptions)
|
||||||
|
this.setMap(this.sycpxOptions)
|
||||||
|
this.setMap(this.energyKindOptions)
|
||||||
this.getGzzOption()
|
this.getGzzOption()
|
||||||
}, e => {
|
}, e => {
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1006,6 +1006,11 @@
|
|||||||
<el-input v-model="sarStandardsSearch.standName" :placeholder="$t('m.searchByStandardName')" clearable :maxlength="500"
|
<el-input v-model="sarStandardsSearch.standName" :placeholder="$t('m.searchByStandardName')" clearable :maxlength="500"
|
||||||
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)"></el-input>
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<!-- 标准英文名称-->
|
||||||
|
<el-form-item :label="$t('m.standardEnglishName')" class="serch-form-item">
|
||||||
|
<el-input v-model="sarStandardsSearch.standEnName" :placeholder="$t('m.searchAccordingToStandardEnglishName')" clearable :maxlength="500"
|
||||||
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)"></el-input>
|
||||||
|
</el-form-item>
|
||||||
<!-- 标准类别-->
|
<!-- 标准类别-->
|
||||||
<el-form-item :label="$t('m.standardCategory')" class="serch-form-item">
|
<el-form-item :label="$t('m.standardCategory')" class="serch-form-item">
|
||||||
<search-select
|
<search-select
|
||||||
@@ -1027,20 +1032,161 @@
|
|||||||
<el-input v-model="sarStandardsSearch.dtbjh" :placeholder="$t('m.lookUpByAlternativeCriteria')" clearable :maxlength="100"
|
<el-input v-model="sarStandardsSearch.dtbjh" :placeholder="$t('m.lookUpByAlternativeCriteria')" clearable :maxlength="100"
|
||||||
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)"></el-input>
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<!-- 标准年份-->
|
||||||
|
<el-form-item :label="$t('m.standardYear')" class="serch-form-item">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="sarStandardsSearch.standYear"
|
||||||
|
type="date"
|
||||||
|
placeholder="根据标准年份查找">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 标准发布日期-->
|
||||||
|
<el-form-item label="标准发布日期" class="serch-form-item">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="sarStandardsSearch.issueTime"
|
||||||
|
type="date"
|
||||||
|
placeholder="根据标准发布日期查找">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 标准性质-->
|
||||||
|
<el-form-item :label="$t('m.standNatureShow')" class="serch-form-item">
|
||||||
|
<el-select v-model="sarStandardsSearch.standNature" placeholder="请选择标准性质" clearable
|
||||||
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
||||||
|
<el-option v-for="opt in standNatureOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 是否纳入标准清单-->
|
||||||
|
<el-form-item title="是否纳入标准清单" label="是否纳入标准清单">
|
||||||
|
<el-select v-model="sarStandardsSearch.isRelateAccess" class="advanced-one" placeholder="根据是否纳入标准清单查找">
|
||||||
|
<el-option value="yes" label="是"></el-option>
|
||||||
|
<el-option value="no" label="否"></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 实施日期-->
|
||||||
|
<el-form-item label="实施日期">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="sarStandardsSearch.putTime"
|
||||||
|
type="date"
|
||||||
|
placeholder="根据实施日期查找">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 新车型实施日期-->
|
||||||
|
<el-form-item title="新车型实施日期" label="新车型实施日期">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="sarStandardsSearch.XCXTime"
|
||||||
|
type="date"
|
||||||
|
placeholder="根据新车型实施日期查找">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 在产车实施日期-->
|
||||||
|
<el-form-item title="在产车实施日期" label="在产车实施日期">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="sarStandardsSearch.ZCCTime"
|
||||||
|
type="date"
|
||||||
|
placeholder="根据在产车实施日期查找">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 归口管理部门-->
|
||||||
|
<el-form-item label="归口管理部门">
|
||||||
|
<el-input v-model="sarStandardsSearch.nameShow" clearable placeholder="根据归口管理部门查找"
|
||||||
|
@keyup.enter.native="btnSearch"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 起草单位-->
|
||||||
|
<el-form-item label="起草单位">
|
||||||
|
<el-select v-model="sarStandardsSearch.qcdw" placeholder="根据起草单位查找" clearable
|
||||||
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
||||||
|
<el-option v-for="opt in qcdwOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 我司参与深度-->
|
||||||
|
<el-form-item label="我司参与深度">
|
||||||
|
<el-select v-model="sarStandardsSearch.nameShow" placeholder="请选择我司参与深度" clearable
|
||||||
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
||||||
|
<el-option v-for="opt in cysdOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<!-- 能源类型-->
|
||||||
|
<el-form-item label="能源类型">
|
||||||
|
<el-select v-model="sarStandardsSearch.energyKind" placeholder="请选择能源类型" clearable
|
||||||
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
||||||
|
<el-option v-for="opt in nylxOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
<!-- 适用车型-->
|
<!-- 适用车型-->
|
||||||
<el-form-item :label="$t('m.applicableModels')" class="serch-form-item">
|
<el-form-item :label="$t('m.applicableModels')" class="serch-form-item">
|
||||||
<el-select v-model="sarStandardsSearch.cllx" :placeholder="$t('m.searchAccordingToThApplicableModel')" clearable
|
<el-select v-model="sarStandardsSearch.applyArctic" :placeholder="$t('m.searchAccordingToThApplicableModel')" clearable
|
||||||
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
||||||
<el-option v-for="opt in applyArcticOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
<el-option v-for="opt in applyArcticOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- 适用产品线(新增字段)-->
|
<!-- 适用产品线(新增字段)-->
|
||||||
<el-form-item :label="$t('m.applicableProductLine')" class="serch-form-item">
|
<el-form-item :label="$t('m.applicableProductLine')" class="serch-form-item">
|
||||||
<el-select v-model="sarStandardsSearch.nylx" :placeholder="$t('m.searchByApplicableProductLine')" clearable
|
<el-select v-model="sarStandardsSearch.sycpx" :placeholder="$t('m.searchByApplicableProductLine')" clearable
|
||||||
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
||||||
<el-option v-for="opt in categoryOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
<el-option v-for="opt in sycpxOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<!-- 适用认证-->
|
||||||
|
<el-form-item label="适用认证">
|
||||||
|
<el-select v-model="sarStandardsSearch.syzr" placeholder="根据适用认证查找" clearable
|
||||||
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
||||||
|
<el-option v-for="opt in syzrOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 责任部门-->
|
||||||
|
<el-form-item label="责任部门">
|
||||||
|
<el-select v-model="sarStandardsSearch.zrbm" placeholder="根据责任部门查找" clearable
|
||||||
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
||||||
|
<el-option v-for="opt in zrbmOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 责任工程师-->
|
||||||
|
<el-form-item label="责任工程师">
|
||||||
|
<el-select v-model="sarStandardsSearch.dutyEngineer" placeholder="根据责任工程师查找" clearable
|
||||||
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
||||||
|
<el-option v-for="opt in zrgcsOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 关联模块-VPPS编码-->
|
||||||
|
<el-form-item title="关联模块-VPPS编码" label="关联模块-VPPS编码" prop="standNumber">
|
||||||
|
<el-input v-model="sarStandardsSearch.svpps" clearable
|
||||||
|
placeholder="根据关联模块-VPPS编码查找"
|
||||||
|
@keyup.enter.native="btnSearch"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 代替标准号-->
|
||||||
|
<el-form-item label="代替标准号">
|
||||||
|
<el-input v-model="sarStandardsSearch.replaceStandNum" clearable placeholder="根据代替标准号查找"
|
||||||
|
@keyup.enter.native="btnSearch"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 关联模块-中文名称-->
|
||||||
|
<el-form-item title="关联模块-中文名称" label="关联模块-中文名称" prop="standNumber">
|
||||||
|
<el-input v-model="sarStandardsSearch.standNumber" clearable
|
||||||
|
placeholder="根据关联模块-中文名称"
|
||||||
|
@keyup.enter.native="btnSearch"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 采标编号-->
|
||||||
|
<el-form-item label="采标编号" prop="nameShow">
|
||||||
|
<el-input v-model="sarStandardsSearch.nameShow" clearable placeholder="根据采标编号查找"
|
||||||
|
@keyup.enter.native="btnSearch"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 采标程度-->
|
||||||
|
<el-form-item label="采标程度" prop="standNumber">
|
||||||
|
<el-input v-model="sarStandardsSearch.standNumber" clearable
|
||||||
|
placeholder="根据采标程度查找"
|
||||||
|
@keyup.enter.native="btnSearch"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 引用标准-->
|
||||||
|
<el-form-item label="引用标准">
|
||||||
|
<el-input v-model="sarStandardsSearch.citeStand" clearable placeholder="根据引用标准查找"
|
||||||
|
@keyup.enter.native="btnSearch"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 被引用标准-->
|
||||||
|
<el-form-item label="被引用标准">
|
||||||
|
<el-input v-model="sarStandardsSearch.citedStand" clearable
|
||||||
|
placeholder="根据被引用标准查找"
|
||||||
|
@keyup.enter.native="btnSearch"></el-input>
|
||||||
|
</el-form-item>
|
||||||
<!-- 关联模块(新增字段)-->
|
<!-- 关联模块(新增字段)-->
|
||||||
<el-form-item :label="$t('m.associatedModule')" class="serch-form-item">
|
<el-form-item :label="$t('m.associatedModule')" class="serch-form-item">
|
||||||
<el-select v-model="sarStandardsSearch.cycvppsbm" :placeholder="$t('m.SearchByAssociatedModule')" clearable
|
<el-select v-model="sarStandardsSearch.cycvppsbm" :placeholder="$t('m.SearchByAssociatedModule')" clearable
|
||||||
@@ -1253,6 +1399,12 @@ export default {
|
|||||||
categoryOptions: [], // 所属类别下拉框
|
categoryOptions: [], // 所属类别下拉框
|
||||||
categoryConfigOptions: [], // 所属类别下拉框
|
categoryConfigOptions: [], // 所属类别下拉框
|
||||||
assemClassOptions: [], // 总成分类下拉框
|
assemClassOptions: [], // 总成分类下拉框
|
||||||
|
qcdwOptions: [], // 起草单位
|
||||||
|
nylxOptions: [], // 能源类型
|
||||||
|
sycpxOptions: [], // 适用产品线
|
||||||
|
syzrOptions: [], // 适用认证
|
||||||
|
zrbmOptions: [], // 责任部门
|
||||||
|
zrgcsOptions: [], // 责任工程师
|
||||||
standAttributeList: [],
|
standAttributeList: [],
|
||||||
sarStandardsSearch: {
|
sarStandardsSearch: {
|
||||||
page: 1,
|
page: 1,
|
||||||
@@ -1261,19 +1413,33 @@ export default {
|
|||||||
validFlag: '0',
|
validFlag: '0',
|
||||||
menuId: '',
|
menuId: '',
|
||||||
country: '',
|
country: '',
|
||||||
standNumber: '',
|
standNumber: '', // 标准编号
|
||||||
standName: '',
|
standName: '', // 标准名称
|
||||||
standState: '',
|
standState: '', // 标准状态
|
||||||
standNature: '',
|
issueTime: '', // 标准发布日期
|
||||||
issueTime: '',
|
svpps: '', // 关联模块-VPPS编码
|
||||||
// applyArctic: '',
|
replaceStandNum: '', // 代替标准号
|
||||||
replaceStandNum: '',
|
replacedStandNum: '', // 被代替标准号
|
||||||
// replaceStandNumCope: '',
|
citeStand: '', // 引用标准
|
||||||
// replaceStandNumList: [],
|
citedStand: '', // 被引用标准
|
||||||
replacedStandNum: '',
|
|
||||||
synopsis: '', // 内容摘要
|
synopsis: '', // 内容摘要
|
||||||
// category: '', // 所属类别
|
applyArctic: '', // 适用车型
|
||||||
standSort: '' // 标准类别
|
sycpx: '', // 适用产品线
|
||||||
|
syzr: '', // 适用认证
|
||||||
|
zrbm: '', // 责任部门
|
||||||
|
dutyEngineer: '', // 责任工程师
|
||||||
|
standSort: '', // 标准类别
|
||||||
|
standYear: '', // 标准年份
|
||||||
|
standEnName: '', // 标准英文名称
|
||||||
|
standNature: '', // 标准性质
|
||||||
|
putTime: '', // 实施日期
|
||||||
|
isRelateAccess: '', // 是否纳入标准清单
|
||||||
|
nameShow: '', // 我司参与深度
|
||||||
|
qcdw: '', // 起草单位
|
||||||
|
nameShow: '', // 归口管理部门
|
||||||
|
ZCCTime: '', // 在产车实施日期
|
||||||
|
XCXTime: '', // 新车型实施日期
|
||||||
|
energyKind: '', // 能源类型
|
||||||
}, // 分页查询过程中用到的对象
|
}, // 分页查询过程中用到的对象
|
||||||
// 树形结构
|
// 树形结构
|
||||||
// tree function
|
// tree function
|
||||||
@@ -2114,7 +2280,6 @@ export default {
|
|||||||
this.selectChildMenu(data)
|
this.selectChildMenu(data)
|
||||||
this.productModal = true
|
this.productModal = true
|
||||||
// 取消所有的选中效果
|
// 取消所有的选中效果
|
||||||
this.handleSelectAll(false)
|
|
||||||
this.productTitle = '编辑信息'
|
this.productTitle = '编辑信息'
|
||||||
// const newChild = { id: this.id++, label: 'testtest', children: [] };
|
// const newChild = { id: this.id++, label: 'testtest', children: [] };
|
||||||
// if (!data.children) {
|
// if (!data.children) {
|
||||||
@@ -2128,7 +2293,6 @@ export default {
|
|||||||
this.selectChildMenu(data)
|
this.selectChildMenu(data)
|
||||||
this.productModal = true
|
this.productModal = true
|
||||||
// 取消所有的选中效果
|
// 取消所有的选中效果
|
||||||
this.handleSelectAll(false)
|
|
||||||
this.productTitle = '新增下级菜单信息'
|
this.productTitle = '新增下级菜单信息'
|
||||||
this.productModelAdd.dicTypeCode = ''
|
this.productModelAdd.dicTypeCode = ''
|
||||||
// const newChild = { id: this.id++, label: 'testtest', children: [] };
|
// const newChild = { id: this.id++, label: 'testtest', children: [] };
|
||||||
@@ -2148,7 +2312,7 @@ export default {
|
|||||||
type: 'warning'
|
type: 'warning'
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
this.$http.delete("sarResource/ts-resource", {
|
this.$http.delete("sarResource/ts-resource", {
|
||||||
menuId: data.id
|
resourceId: data.id
|
||||||
}, res => {
|
}, res => {
|
||||||
}, e => {
|
}, e => {
|
||||||
if(e.ok){
|
if(e.ok){
|
||||||
@@ -4077,7 +4241,7 @@ export default {
|
|||||||
this.standNatureOptions = res.data.SARPROPERTY // 标准性质
|
this.standNatureOptions = res.data.SARPROPERTY // 标准性质
|
||||||
this.standStateOptions = res.data.WBZTCLASS // 文本状态
|
this.standStateOptions = res.data.WBZTCLASS // 文本状态
|
||||||
this.standSystemOptions = res.data.BZTXCLASS // 标准体系
|
this.standSystemOptions = res.data.BZTXCLASS // 标准体系
|
||||||
this.applyArcticOptions = res.data.ENERGYTYPES // 适用车型
|
this.applyArcticOptions = res.data.SYCXCLASS // 适用车型
|
||||||
this.categoryOptions = res.data.NYLXCLASS // 能源类型
|
this.categoryOptions = res.data.NYLXCLASS // 能源类型
|
||||||
this.applyAuthOptions = res.data.SYRZCLASS // 适用认证
|
this.applyAuthOptions = res.data.SYRZCLASS // 适用认证
|
||||||
this.cysdOptions = res.data.WSCYSD // 我司参与深度
|
this.cysdOptions = res.data.WSCYSD // 我司参与深度
|
||||||
@@ -4085,6 +4249,12 @@ export default {
|
|||||||
this.zrbmOptions = res.data.ZRBMCLASS // 责任部门
|
this.zrbmOptions = res.data.ZRBMCLASS // 责任部门
|
||||||
this.zrgcsOptions = res.data.ZRGCSCLASS // 责任工程师
|
this.zrgcsOptions = res.data.ZRGCSCLASS // 责任工程师
|
||||||
this.txlbOptions = res.data.TXLBCLASS // 体系类别
|
this.txlbOptions = res.data.TXLBCLASS // 体系类别
|
||||||
|
this.qcdwOptions = res.data.QCDW // 起草单位
|
||||||
|
this.nylxOptions = res.data.NYLXCLASS // 能源类型
|
||||||
|
this.sycpxOptions = res.data.SYCPXCLASS // 适用产品线
|
||||||
|
this.zrgcsOptions = res.data.ZRGCSCLASS // 责任工程师
|
||||||
|
this.zrbmOptions = res.data.ZRBMCLASS // 责任部门
|
||||||
|
this.syzrOptions = res.data.SYRZCLASS // 适用认证
|
||||||
this.getGzzOption()
|
this.getGzzOption()
|
||||||
this.setMap(this.standStateOptions)
|
this.setMap(this.standStateOptions)
|
||||||
console.log(this.standStateOptions, '文本状态')
|
console.log(this.standStateOptions, '文本状态')
|
||||||
@@ -4234,6 +4404,9 @@ export default {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
margin-top: 6px;
|
margin-top: 6px;
|
||||||
background: #F9F9F9;
|
background: #F9F9F9;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis
|
||||||
}
|
}
|
||||||
/deep/.el-input__inner {
|
/deep/.el-input__inner {
|
||||||
height: 30px;
|
height: 30px;
|
||||||
@@ -4242,5 +4415,8 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.el-date-editor.el-input, .el-date-editor.el-input__inner{
|
||||||
|
width: 190px
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -231,7 +231,7 @@
|
|||||||
取消收藏
|
取消收藏
|
||||||
</el-dropdown-item>
|
</el-dropdown-item>
|
||||||
<el-dropdown-item :command="[scope.row, '编辑']" v-btn-permission="'e8d690904ee1895dd0d17d9c794fbcd7'">编辑</el-dropdown-item>
|
<el-dropdown-item :command="[scope.row, '编辑']" v-btn-permission="'e8d690904ee1895dd0d17d9c794fbcd7'">编辑</el-dropdown-item>
|
||||||
<el-dropdown-item :command="[scope.row, '分享']" v-btn-permission="'413e676a155d6eb2dfbe08df8cbcf682'">分享</el-dropdown-item>
|
<!-- <el-dropdown-item :command="[scope.row, '分享']" v-btn-permission="'413e676a155d6eb2dfbe08df8cbcf682'">分享</el-dropdown-item>-->
|
||||||
<el-dropdown-item :command="[scope.row, '删除']" v-btn-permission="'413e676a155d6eb2dfbe08df8cbcf682'">删除</el-dropdown-item>
|
<el-dropdown-item :command="[scope.row, '删除']" v-btn-permission="'413e676a155d6eb2dfbe08df8cbcf682'">删除</el-dropdown-item>
|
||||||
</el-dropdown-menu>
|
</el-dropdown-menu>
|
||||||
</el-dropdown>
|
</el-dropdown>
|
||||||
@@ -3960,6 +3960,7 @@ export default {
|
|||||||
this.assemClassOptions = res.data.ASSEMCLASSIFY // 总成分类
|
this.assemClassOptions = res.data.ASSEMCLASSIFY // 总成分类
|
||||||
this.categoryConfigOptions = res.data.CATEGORY
|
this.categoryConfigOptions = res.data.CATEGORY
|
||||||
this.standAttributeList = res.data.RULETYPE
|
this.standAttributeList = res.data.RULETYPE
|
||||||
|
this.qcdwOptions = res.data.QCDW
|
||||||
this.getGzzOption()
|
this.getGzzOption()
|
||||||
this.setMap(this.standStateOptions)
|
this.setMap(this.standStateOptions)
|
||||||
}, e => {
|
}, e => {
|
||||||
|
|||||||
+43
-6
@@ -142,80 +142,116 @@
|
|||||||
align="center">
|
align="center">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
width="150px"
|
||||||
|
align="center"
|
||||||
prop="productLineId"
|
prop="productLineId"
|
||||||
label="产品线">
|
label="产品线">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
width="150px"
|
||||||
|
align="center"
|
||||||
prop="standNumber"
|
prop="standNumber"
|
||||||
label="项目编号">
|
label="项目编号">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
width="150px"
|
||||||
|
align="center"
|
||||||
prop="productName"
|
prop="productName"
|
||||||
label="项目名称">
|
label="项目名称">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
width="150px"
|
||||||
|
align="center"
|
||||||
prop="standNumber"
|
prop="standNumber"
|
||||||
label="标准编号">
|
label="标准编号">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
width="150px"
|
||||||
|
align="center"
|
||||||
prop="standName"
|
prop="standName"
|
||||||
label="标准名称">
|
label="标准名称">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
width="150px"
|
||||||
|
align="center"
|
||||||
prop="standardItem"
|
prop="standardItem"
|
||||||
label="标准章条">
|
label="条款号">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
width="150px"
|
||||||
|
align="center"
|
||||||
prop="standardInfo"
|
prop="standardInfo"
|
||||||
label="标准主要内容">
|
label="条款名称">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
align="productType"
|
align="center"
|
||||||
|
prop="productType"
|
||||||
label="在研产品">
|
label="在研产品">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
width="150px"
|
||||||
|
align="center"
|
||||||
prop="researchImplementationTime"
|
prop="researchImplementationTime"
|
||||||
label="实施时间">
|
label="实施时间">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
width="150px"
|
||||||
|
align="center"
|
||||||
prop="researchCompliance"
|
prop="researchCompliance"
|
||||||
label="合规">
|
label="合规">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
align="researchNonCompliance"
|
width="150px"
|
||||||
|
align="center"
|
||||||
label="不合规">
|
label="不合规">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
width="150px"
|
||||||
|
align="center"
|
||||||
prop="researchNonCompliance"
|
prop="researchNonCompliance"
|
||||||
label="不合规项目">
|
label="不合规项目">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
width="150px"
|
||||||
|
align="center"
|
||||||
prop="researchCountermeasures"
|
prop="researchCountermeasures"
|
||||||
label="应对措施">
|
label="应对措施">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
width="150px"
|
||||||
|
align="center"
|
||||||
prop="researchCompletionTime"
|
prop="researchCompletionTime"
|
||||||
label="完成时间">
|
label="完成时间">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
align="center"
|
align="center"
|
||||||
|
prop="center"
|
||||||
label="在产产品">
|
label="在产产品">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
width="150px"
|
||||||
|
align="center"
|
||||||
prop="productionImplementationTime"
|
prop="productionImplementationTime"
|
||||||
label="实施时间">
|
label="实施时间">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
width="150px"
|
||||||
|
align="center"
|
||||||
prop="productionCompliance"
|
prop="productionCompliance"
|
||||||
label="合规(具体情况)">
|
label="合规(具体情况)">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
align="center"
|
width="150px"
|
||||||
|
align="center"
|
||||||
label="不合规">
|
label="不合规">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
width="150px"
|
||||||
|
align="center"
|
||||||
prop="productionCountermeasures"
|
prop="productionCountermeasures"
|
||||||
label="应对措施">
|
label="应对措施">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
width="150px"
|
||||||
|
align="center"
|
||||||
prop="productionCompletionTime"
|
prop="productionCompletionTime"
|
||||||
label="完成时间">
|
label="完成时间">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
@@ -293,6 +329,7 @@ export default {
|
|||||||
this.sarProject.country = ''
|
this.sarProject.country = ''
|
||||||
this.sarProject.standCode=''
|
this.sarProject.standCode=''
|
||||||
this.sarProject.standName = ''
|
this.sarProject.standName = ''
|
||||||
|
this.sarProject.standNumber=''
|
||||||
this.queryStandAndLaws()
|
this.queryStandAndLaws()
|
||||||
}, // 外层清空条件查询
|
}, // 外层清空条件查询
|
||||||
handleProjectCompliance (row) {
|
handleProjectCompliance (row) {
|
||||||
|
|||||||
+1
@@ -264,6 +264,7 @@ name: "technologyInvolveProject",
|
|||||||
this.sarProject.country = ''
|
this.sarProject.country = ''
|
||||||
this.sarProject.standCode=''
|
this.sarProject.standCode=''
|
||||||
this.sarProject.standName = ''
|
this.sarProject.standName = ''
|
||||||
|
this.sarProject.standNumber=''
|
||||||
this.queryStandAndLaws()
|
this.queryStandAndLaws()
|
||||||
}, // 外层清空条件查询
|
}, // 外层清空条件查询
|
||||||
handleProjectCompliance (row) {
|
handleProjectCompliance (row) {
|
||||||
|
|||||||
@@ -167,17 +167,17 @@
|
|||||||
label="责任部门">
|
label="责任部门">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="dutyEngineer"
|
prop="dutyEngineerName"
|
||||||
width="150"
|
width="150"
|
||||||
label="责任工程师">
|
label="责任工程师">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="authEngineer"
|
prop="authEngineerName"
|
||||||
width="150"
|
width="150"
|
||||||
label="认证工程师">
|
label="认证工程师">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="qaEngineer"
|
prop="qaEngineerName"
|
||||||
width="150"
|
width="150"
|
||||||
label="质量工程师">
|
label="质量工程师">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|||||||
Reference in New Issue
Block a user