Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
+98
-63
@@ -1,68 +1,76 @@
|
|||||||
import axios from '@/common/axiosV2'
|
import axios from "@/common/axiosV2";
|
||||||
|
|
||||||
// 查询未整改项列表接口
|
// 查询未整改项列表接口
|
||||||
export function standUnqualified (data) {
|
export function standUnqualified(data) {
|
||||||
return axios({
|
return axios({
|
||||||
url: '/api/sarStandUnqualified/sar-stand-unqualified',
|
url: "/api/sarStandUnqualified/sar-stand-unqualified",
|
||||||
method: 'get',
|
method: "get",
|
||||||
params: data
|
params: data
|
||||||
})
|
});
|
||||||
}
|
|
||||||
// 人员菜单列表获取
|
|
||||||
export function roleTreeData (data) {
|
|
||||||
return axios({
|
|
||||||
url: '/api/SarInstitution/institution/institutionAndUser',
|
|
||||||
method: 'get',
|
|
||||||
params: data
|
|
||||||
})
|
|
||||||
}
|
|
||||||
// 上传文件
|
|
||||||
export function uploadFileText (data) {
|
|
||||||
return axios({
|
|
||||||
url: 'api/att/attFile/upload',
|
|
||||||
method: 'get',
|
|
||||||
params: data
|
|
||||||
})
|
|
||||||
}
|
|
||||||
export function dicTypeData (data) {
|
|
||||||
return axios({
|
|
||||||
url: 'api/sys/dictype/getDicTypeListCode',
|
|
||||||
method: 'get',
|
|
||||||
params: data
|
|
||||||
})
|
|
||||||
}
|
|
||||||
export function StandardsInfoPage (data) {
|
|
||||||
return axios({
|
|
||||||
url: 'api/sarStandardsInfo/sar-standards-info/getSarStandardsInfoPageBak',
|
|
||||||
method: 'get',
|
|
||||||
params: data
|
|
||||||
})
|
|
||||||
}
|
|
||||||
// 车型库清单的下拉列表
|
|
||||||
export function solostarData (data) {
|
|
||||||
return axios({
|
|
||||||
url: 'api/sarStandProjectLibrary/solostar',
|
|
||||||
method: 'get',
|
|
||||||
params: data
|
|
||||||
})
|
|
||||||
}
|
|
||||||
// 活动日历查询接口
|
|
||||||
export function meetingByMonth (params) {
|
|
||||||
return axios({
|
|
||||||
url: 'api/sapMeetInfo/getMeetingsByMonthType',
|
|
||||||
method: 'get',
|
|
||||||
params
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function addUn (closeState, standId,standName,standSerialNumber, itemsNum,itemsName, productType, productLine,
|
// 人员菜单列表获取
|
||||||
productName, reason, responsibleUnit, dutyEngineer, authEngineer, qaEngineer, qaEngineerName,
|
export function roleTreeData(data) {
|
||||||
authEngineerName, dutyEngineerName, planCloseTime) {
|
return axios({
|
||||||
|
url: "/api/SarInstitution/institution/institutionAndUser",
|
||||||
|
method: "get",
|
||||||
|
params: data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 上传文件
|
||||||
|
export function uploadFileText(data) {
|
||||||
|
return axios({
|
||||||
|
url: "api/att/attFile/upload",
|
||||||
|
method: "get",
|
||||||
|
params: data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function dicTypeData(data) {
|
||||||
|
return axios({
|
||||||
|
url: "api/sys/dictype/getDicTypeListCode",
|
||||||
|
method: "get",
|
||||||
|
params: data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function StandardsInfoPage(data) {
|
||||||
|
return axios({
|
||||||
|
url: "api/sarStandardsInfo/sar-standards-info/getSarStandardsInfoPageBak",
|
||||||
|
method: "get",
|
||||||
|
params: data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 车型库清单的下拉列表
|
||||||
|
export function solostarData(data) {
|
||||||
|
return axios({
|
||||||
|
url: "api/sarStandProjectLibrary/solostar",
|
||||||
|
method: "get",
|
||||||
|
params: data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 活动日历查询接口
|
||||||
|
export function meetingByMonth(params) {
|
||||||
|
return axios({
|
||||||
|
url: "api/sapMeetInfo/getMeetingsByMonthType",
|
||||||
|
method: "get",
|
||||||
|
params
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
//未符合项模块新增
|
||||||
|
export function addUn(
|
||||||
|
closeState, standSerialNumber, standName,
|
||||||
|
itemsNum, itemsName, productType,
|
||||||
|
productLine, productName, reason, responsibleUnit,
|
||||||
|
dutyEngineer, authEngineer, qaEngineer, planCloseTime) {
|
||||||
const data = {
|
const data = {
|
||||||
closeState,
|
closeState,
|
||||||
standSerialNumber, //标准号
|
standSerialNumber, //标准号
|
||||||
standName, //标准名称
|
standName, //标准名称
|
||||||
standId,
|
|
||||||
itemsNum, //条款号
|
itemsNum, //条款号
|
||||||
itemsName, //条款名称
|
itemsName, //条款名称
|
||||||
productType,
|
productType,
|
||||||
@@ -73,14 +81,41 @@ export function addUn (closeState, standId,standName,standSerialNumber, itemsNum
|
|||||||
dutyEngineer, //责任工程师
|
dutyEngineer, //责任工程师
|
||||||
authEngineer, //认证工程师
|
authEngineer, //认证工程师
|
||||||
qaEngineer, //质量工程师
|
qaEngineer, //质量工程师
|
||||||
qaEngineerName,
|
planCloseTime //计划关闭时间
|
||||||
authEngineerName,
|
};
|
||||||
dutyEngineerName,
|
|
||||||
planCloseTime, //计划关闭时间
|
|
||||||
}
|
|
||||||
return axios({
|
return axios({
|
||||||
url: 'api/sarStandUnqualified/sar-stand-unqualified/addOne',
|
url: "api/sarStandUnqualified/sar-stand-unqualified/addOne",
|
||||||
method: 'post',
|
method: "post",
|
||||||
data
|
data
|
||||||
})
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
//未符合项模块编辑
|
||||||
|
export function editUn(
|
||||||
|
closeState, standSerialNumber, standName,
|
||||||
|
itemsNum, itemsName, productType,
|
||||||
|
productLine, productName, reason, responsibleUnit,
|
||||||
|
dutyEngineer, authEngineer, qaEngineer, planCloseTime, id) {
|
||||||
|
const data = {
|
||||||
|
closeState,
|
||||||
|
standSerialNumber, //标准号
|
||||||
|
standName, //标准名称
|
||||||
|
itemsNum, //条款号
|
||||||
|
itemsName, //条款名称
|
||||||
|
productType,
|
||||||
|
productLine, //产品线
|
||||||
|
productName, //项目名称
|
||||||
|
reason, //不合规项目
|
||||||
|
responsibleUnit, //责任部门
|
||||||
|
dutyEngineer, //责任工程师
|
||||||
|
authEngineer, //认证工程师
|
||||||
|
qaEngineer, //质量工程师
|
||||||
|
planCloseTime, //计划关闭时间
|
||||||
|
id
|
||||||
|
};
|
||||||
|
return axios({
|
||||||
|
url: "api/sarStandUnqualified/sar-stand-unqualified/updateOne",
|
||||||
|
method: "post",
|
||||||
|
data
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -254,7 +254,7 @@ export default {
|
|||||||
{
|
{
|
||||||
title: '标准化活动日历',
|
title: '标准化活动日历',
|
||||||
path: '/standCalendar',
|
path: '/standCalendar',
|
||||||
menuId: '0ea66e3dd36873082b6851f69e92c8be'
|
menuId: ''
|
||||||
},
|
},
|
||||||
// {
|
// {
|
||||||
// title: '标准比对库',
|
// title: '标准比对库',
|
||||||
|
|||||||
@@ -54,15 +54,10 @@ import { mapMutations, mapActions } from 'vuex'
|
|||||||
|
|
||||||
// 路由拦截
|
// 路由拦截
|
||||||
router.beforeEach(function (to, from, next) {
|
router.beforeEach(function (to, from, next) {
|
||||||
console.log("auth : to =>", to);
|
|
||||||
console.log(webLoginType)
|
|
||||||
let toName = to.name
|
let toName = to.name
|
||||||
let token = store.state.token
|
let token = store.state.token
|
||||||
let path = to.path;
|
let path = to.path;
|
||||||
let requireAuth = to.meta.requireAuth;
|
let requireAuth = to.meta.requireAuth;
|
||||||
console.log("auth : path =>" + path);
|
|
||||||
console.log("token : token =>" + token);
|
|
||||||
console.log("requireAuth : requireAuth =>" + requireAuth);
|
|
||||||
let taskId = to.query.taskIds;
|
let taskId = to.query.taskIds;
|
||||||
let prcId = to.query.prcId;
|
let prcId = to.query.prcId;
|
||||||
let prcNum = to.query.prcNum;
|
let prcNum = to.query.prcNum;
|
||||||
@@ -71,7 +66,6 @@ router.beforeEach(function (to, from, next) {
|
|||||||
let routerType = to.query.routerType;
|
let routerType = to.query.routerType;
|
||||||
let param = "taskIds=" + taskId + "&prcId=" + prcId
|
let param = "taskIds=" + taskId + "&prcId=" + prcId
|
||||||
+ "&prcNum=" + prcNum + "&prcName=" + prcName + "&prcType=" + prcType;
|
+ "&prcNum=" + prcNum + "&prcName=" + prcName + "&prcType=" + prcType;
|
||||||
console.log(store)
|
|
||||||
let url = window.location.search
|
let url = window.location.search
|
||||||
let code = "";
|
let code = "";
|
||||||
if(url){
|
if(url){
|
||||||
@@ -232,7 +226,6 @@ router.beforeEach(function (to, from, next) {
|
|||||||
next({path: routerPath + '?' + param2})
|
next({path: routerPath + '?' + param2})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
console.log("res : res =>", res);
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
if(path === '/loginVerify'){
|
if(path === '/loginVerify'){
|
||||||
|
|||||||
@@ -1194,7 +1194,6 @@ export default {
|
|||||||
methods: {
|
methods: {
|
||||||
child1Func(child1){
|
child1Func(child1){
|
||||||
const list = []
|
const list = []
|
||||||
console.log(child1)
|
|
||||||
if(child1 && child1.length > 1){
|
if(child1 && child1.length > 1){
|
||||||
list.push(child1[0])
|
list.push(child1[0])
|
||||||
return list
|
return list
|
||||||
@@ -2157,7 +2156,6 @@ export default {
|
|||||||
const [displayLocation, {attrInfoMap: dynamicFormField}, formFieldList] = values
|
const [displayLocation, {attrInfoMap: dynamicFormField}, formFieldList] = values
|
||||||
// const relatedPlansRes = await this.queryRelatedPlans()
|
// const relatedPlansRes = await this.queryRelatedPlans()
|
||||||
// const relatedPlans = relatedPlansRes.list
|
// const relatedPlans = relatedPlansRes.list
|
||||||
console.log(formFieldList)
|
|
||||||
formFieldList.forEach((field) => {
|
formFieldList.forEach((field) => {
|
||||||
displayLocation.forEach((location) => {
|
displayLocation.forEach((location) => {
|
||||||
location.isShowImp = '0'
|
location.isShowImp = '0'
|
||||||
@@ -2194,16 +2192,12 @@ export default {
|
|||||||
displayLocation.forEach(location => {
|
displayLocation.forEach(location => {
|
||||||
// 动态属性字段-FBGBJBD 单独添加至基础信息
|
// 动态属性字段-FBGBJBD 单独添加至基础信息
|
||||||
const list = displayLocation.filter ( item => item.label === '过程稿件');
|
const list = displayLocation.filter ( item => item.label === '过程稿件');
|
||||||
console.log(list)
|
|
||||||
if(location.label === '基础信息' && list && list.length > 0){
|
if(location.label === '基础信息' && list && list.length > 0){
|
||||||
if (!list[0].child) {
|
if (!list[0].child) {
|
||||||
location['child1'] = []
|
location['child1'] = []
|
||||||
}else {
|
}else {
|
||||||
const childList = list[0].child.filter ( item => item.attrField === 'FBGBUSS');
|
const childList = list[0].child.filter ( item => item.attrField === 'FBGBUSS');
|
||||||
console.log(childList)
|
|
||||||
console.log(childList.length)
|
|
||||||
location['child1'] = childList
|
location['child1'] = childList
|
||||||
console.log(location['child1'])
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -148,7 +148,6 @@
|
|||||||
}
|
}
|
||||||
let list
|
let list
|
||||||
list = res.data.slice(0, c)
|
list = res.data.slice(0, c)
|
||||||
console.log(list)
|
|
||||||
this.linkList = list
|
this.linkList = list
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user