Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
@@ -65,15 +65,20 @@
|
|||||||
height="100%"
|
height="100%"
|
||||||
:header-cell-style="{background: '#E8E8E8', color: '#333333', fontSize: '16px',
|
:header-cell-style="{background: '#E8E8E8', color: '#333333', fontSize: '16px',
|
||||||
fontWeight: 'bold', height: '48px'}">
|
fontWeight: 'bold', height: '48px'}">
|
||||||
|
<el-table-column
|
||||||
|
prop="account"
|
||||||
|
label="账号"
|
||||||
|
width="100px">
|
||||||
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="uname"
|
prop="uname"
|
||||||
label="姓名"
|
label="姓名"
|
||||||
width="170px">
|
width="100px">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="sex"
|
prop="sex"
|
||||||
label="性别"
|
label="性别"
|
||||||
width="170px">
|
width="50px">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div v-if="scope.row.sex === '1'">男</div>
|
<div v-if="scope.row.sex === '1'">男</div>
|
||||||
<div v-if="scope.row.sex === '2'">女</div>
|
<div v-if="scope.row.sex === '2'">女</div>
|
||||||
@@ -92,14 +97,36 @@
|
|||||||
<el-table-column
|
<el-table-column
|
||||||
prop="institutionName"
|
prop="institutionName"
|
||||||
label="所属部门">
|
label="所属部门">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-popover trigger="hover" placement="top">
|
||||||
|
{{scope.row.institutionName}}
|
||||||
|
<div slot="reference" class="name-wrapper">
|
||||||
|
<p v-if="!scope.row.institutionName || scope.row.institutionName.length<15">
|
||||||
|
{{scope.row.institutionName}}
|
||||||
|
</p>
|
||||||
|
<p v-else> {{scope.row.institutionName.substring(0,15)}}...</p>
|
||||||
|
</div>
|
||||||
|
</el-popover>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="NameList"
|
prop="NameList"
|
||||||
label="所属岗位">
|
label="所属岗位">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-popover trigger="hover" placement="top">
|
||||||
|
{{scope.row.NameList}}
|
||||||
|
<div slot="reference" class="name-wrapper">
|
||||||
|
<p v-if="!scope.row.institutionName ||scope.row.NameList.length<15">
|
||||||
|
{{scope.row.NameList}}
|
||||||
|
</p>
|
||||||
|
<p v-else> {{scope.row.NameList.substring(0,15)}}...</p>
|
||||||
|
</div>
|
||||||
|
</el-popover>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="状态"
|
label="状态"
|
||||||
width="170px">
|
width="100px">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div v-if="scope.row.disableFlag === '1'">已禁用</div>
|
<div v-if="scope.row.disableFlag === '1'">已禁用</div>
|
||||||
<div v-else>已启用</div>
|
<div v-else>已启用</div>
|
||||||
@@ -307,7 +334,7 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
console.log(res.data)
|
console.log(res.data)
|
||||||
res.data.records.forEach((item) => {
|
res.data.records.forEach((item) => {
|
||||||
var NameList = ''
|
let NameList = ''
|
||||||
item.positions.forEach((items) => {
|
item.positions.forEach((items) => {
|
||||||
if (NameList.length > 0) {
|
if (NameList.length > 0) {
|
||||||
NameList += ','
|
NameList += ','
|
||||||
|
|||||||
@@ -57,7 +57,7 @@
|
|||||||
<el-table-column
|
<el-table-column
|
||||||
prop="name"
|
prop="name"
|
||||||
label="岗位名称"
|
label="岗位名称"
|
||||||
width="170px">
|
width="300px">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="NameList"
|
prop="NameList"
|
||||||
|
|||||||
@@ -210,20 +210,28 @@ export default {
|
|||||||
|
|
||||||
handleSubmit(callback) {
|
handleSubmit(callback) {
|
||||||
const selection = this.$refs['selection'].selection
|
const selection = this.$refs['selection'].selection
|
||||||
console.log(selection)
|
if (selection.length>0){
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
this.postListToServer(selection).then(res => {
|
this.postListToServer(selection).then(res => {
|
||||||
// 关闭当前区域
|
// 关闭当前区域
|
||||||
this.handleCancel()
|
this.handleCancel()
|
||||||
callback && callback()
|
callback && callback()
|
||||||
resolve(res)
|
resolve(res)
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
// 关闭当前区域
|
// 关闭当前区域
|
||||||
this.handleCancel()
|
this.handleCancel()
|
||||||
callback && callback()
|
callback && callback()
|
||||||
reject(err)
|
reject(err)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
})
|
}else {
|
||||||
|
return new Promise(() => {
|
||||||
|
// 关闭当前区域
|
||||||
|
this.handleCancel()
|
||||||
|
callback && callback()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
handleCancel() {
|
handleCancel() {
|
||||||
|
|||||||
@@ -982,8 +982,12 @@ export default {
|
|||||||
}, res => {
|
}, res => {
|
||||||
res.data.list.map((item, index) => {
|
res.data.list.map((item, index) => {
|
||||||
if (item.collectId != null && item.collectId !== '') {
|
if (item.collectId != null && item.collectId !== '') {
|
||||||
|
item.showNumber= item.splitStatus=='0' ? item.showNumber : item.standNumSplit
|
||||||
|
item.standName=item.splitStatus=='0' ? item.standName : item.standNameSplit
|
||||||
item.collectBtn = false
|
item.collectBtn = false
|
||||||
} else {
|
} else {
|
||||||
|
item.showNumber= item.splitStatus=='0' ? item.showNumber : item.standNumSplit
|
||||||
|
item.standName=item.splitStatus=='0' ? item.standName : item.standNameSplit
|
||||||
item.collectBtn = true
|
item.collectBtn = true
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1036,7 +1036,8 @@ export default {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
const query = this.infoForm
|
const query = this.infoForm
|
||||||
this.editForm.id = query.infoId
|
this.editForm.id = this.infoId
|
||||||
|
console.log("hello",this.editForm.id);
|
||||||
this.editForm.standNumSplit = query.standNumSplit
|
this.editForm.standNumSplit = query.standNumSplit
|
||||||
this.editForm.standNameSplit = query.standNameSplit
|
this.editForm.standNameSplit = query.standNameSplit
|
||||||
this.editForm.fileType = query.fileType
|
this.editForm.fileType = query.fileType
|
||||||
@@ -1046,6 +1047,7 @@ export default {
|
|||||||
editFormSave () {
|
editFormSave () {
|
||||||
this.$refs['editForm'].validate(valid => {
|
this.$refs['editForm'].validate(valid => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
|
|
||||||
this.isSubmit = true
|
this.isSubmit = true
|
||||||
this.$http.postData('lawss/sarFileSplitInfo/updateSarFileSplitInfo', this.editForm, {
|
this.$http.postData('lawss/sarFileSplitInfo/updateSarFileSplitInfo', this.editForm, {
|
||||||
_this: this
|
_this: this
|
||||||
@@ -2223,8 +2225,8 @@ export default {
|
|||||||
const query = info[0]
|
const query = info[0]
|
||||||
this.infoForm = {
|
this.infoForm = {
|
||||||
id: this.infoId,
|
id: this.infoId,
|
||||||
standNumSplit: query.splitStatus!=='0' ? query.showNumber : query.standNumSplit,
|
standNumSplit: query.splitStatus=='0' ? query.showNumber : query.standNumSplit,
|
||||||
standNameSplit: query.splitStatus!=='0' ? query.standName : query.standNameSplit,
|
standNameSplit: query.splitStatus=='0' ? query.standName : query.standNameSplit,
|
||||||
fileType: query.fileType
|
fileType: query.fileType
|
||||||
}
|
}
|
||||||
if (query.splitStatus === '0') {
|
if (query.splitStatus === '0') {
|
||||||
|
|||||||
@@ -261,8 +261,8 @@
|
|||||||
:pageSize="pageConfig.newStandPageSize"
|
:pageSize="pageConfig.newStandPageSize"
|
||||||
:total="pageConfig.count3"
|
:total="pageConfig.count3"
|
||||||
autoSize
|
autoSize
|
||||||
@pageChange="page => handlePageChange('newItems', page)"
|
@pageChange="page => handlePageChange('newStand', page)"
|
||||||
@pageSizeChange="pageSize => handlePageSizeChange('newItems', pageSize)"></pagination>
|
@pageSizeChange="pageSize => handlePageSizeChange('newStand', pageSize)"></pagination>
|
||||||
<el-divider content-position="left" class="dynamic-child-title">在产车条款预警</el-divider>
|
<el-divider content-position="left" class="dynamic-child-title">在产车条款预警</el-divider>
|
||||||
<el-table
|
<el-table
|
||||||
:data="oldStand"
|
:data="oldStand"
|
||||||
|
|||||||
@@ -29,19 +29,37 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
v-if="listForm.standNumber && listForm.standNumber.length>0"
|
||||||
|
class="input-jump"
|
||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
readonly
|
readonly
|
||||||
v-model="listForm.standNumber"
|
v-model="listForm.standNumber"
|
||||||
placeholder="请输入标准编号"
|
placeholder="请输入标准编号"
|
||||||
></el-input>
|
></el-input>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
class="input-jump"
|
||||||
|
readonly
|
||||||
|
v-model="listForm.standNumber"
|
||||||
|
placeholder="请输入标准编号"
|
||||||
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
v-if="listForm.standName && listForm.standName.length>0"
|
||||||
|
class="input-jump"
|
||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
readonly
|
readonly
|
||||||
v-model="listForm.standName"
|
v-model="listForm.standName"
|
||||||
placeholder="请输入标准名称"
|
placeholder="请输入标准名称"
|
||||||
></el-input>
|
></el-input>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
class="input-jump"
|
||||||
|
readonly
|
||||||
|
v-model="listForm.standName"
|
||||||
|
placeholder="请输入标准名称"
|
||||||
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
@@ -777,11 +795,15 @@ export default {
|
|||||||
if (this.dataList.length < 1) {
|
if (this.dataList.length < 1) {
|
||||||
this.satisfyFlag = false
|
this.satisfyFlag = false
|
||||||
this.$message.warning("请添加产品线信息");
|
this.$message.warning("请添加产品线信息");
|
||||||
|
}else{
|
||||||
|
this.satisfyFlag = true
|
||||||
}
|
}
|
||||||
this.dataList.forEach(item => {
|
this.dataList.forEach(item => {
|
||||||
if (item.distributePerson === "" || item.distributePerson === null || item.distributePerson === undefined) {
|
if (!item.distributePerson) {
|
||||||
this.satisfyFlag = false
|
this.satisfyFlag = false
|
||||||
this.$message.warning("请选择分发责任人");
|
this.$message.warning("请选择分发责任人");
|
||||||
|
}else{
|
||||||
|
this.satisfyFlag = true
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if(this.satisfyFlag){
|
if(this.satisfyFlag){
|
||||||
@@ -1055,6 +1077,11 @@ export default {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.input-jump {
|
||||||
|
/deep/.el-input__inner{
|
||||||
|
color: #409EFF;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.demo-drawer-content {
|
.demo-drawer-content {
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
class="input-jump"
|
||||||
v-model="listForm.standNumber"
|
v-model="listForm.standNumber"
|
||||||
placeholder="请输入标准编号"
|
placeholder="请输入标准编号"
|
||||||
readonly
|
readonly
|
||||||
@@ -32,26 +33,41 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
class="input-jump"
|
||||||
v-model="listForm.standName"
|
v-model="listForm.standName"
|
||||||
placeholder="请输入标准名称"
|
placeholder="请输入标准名称"
|
||||||
readonly
|
readonly
|
||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
v-model="listForm.certifiedEngineerName"
|
v-model="listForm.certifiedEngineerName"
|
||||||
placeholder="请选择认证工程师"
|
placeholder="请选择认证工程师"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.certifiedEngineerName"
|
||||||
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
v-model="listForm.qualityEngineerName"
|
v-model="listForm.qualityEngineerName"
|
||||||
placeholder="请选择质量工程师"
|
placeholder="请选择质量工程师"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
@@ -82,18 +98,32 @@
|
|||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
v-model="listForm.certifiedEngineerName"
|
v-model="listForm.certifiedEngineerName"
|
||||||
placeholder="请选择认证工程师"
|
placeholder="请选择认证工程师"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
v-model="listForm.qualityEngineerName"
|
v-model="listForm.certifiedEngineerName"
|
||||||
placeholder="请选择质量工程师"
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="请选择质量工程师"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="--"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -505,6 +535,11 @@ export default {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.input-jump {
|
||||||
|
/deep/.el-input__inner{
|
||||||
|
color: #409EFF;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.demo-drawer-content {
|
.demo-drawer-content {
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
class="input-jump"
|
||||||
v-model="listForm.standNumber"
|
v-model="listForm.standNumber"
|
||||||
placeholder="请输入标准编号"
|
placeholder="请输入标准编号"
|
||||||
readonly
|
readonly
|
||||||
@@ -32,24 +33,39 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
class="input-jump"
|
||||||
v-model="listForm.standName"
|
v-model="listForm.standName"
|
||||||
placeholder="请输入标准名称"
|
placeholder="请输入标准名称"
|
||||||
readonly
|
readonly
|
||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
readonly
|
||||||
v-model="listForm.certifiedEngineerName"
|
v-model="listForm.certifiedEngineerName"
|
||||||
placeholder="请选择认证工程师"
|
placeholder="请选择认证工程师"
|
||||||
readonly
|
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.certifiedEngineerName"
|
||||||
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
v-model="listForm.qualityEngineerName"
|
v-model="listForm.qualityEngineerName"
|
||||||
placeholder="请选择质量工程师"
|
placeholder="请选择质量工程师"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="--"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -82,18 +98,32 @@
|
|||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
readonly
|
||||||
v-model="listForm.certifiedEngineerName"
|
v-model="listForm.certifiedEngineerName"
|
||||||
placeholder="请选择认证工程师"
|
placeholder="请选择认证工程师"
|
||||||
readonly
|
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.certifiedEngineerName"
|
||||||
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
v-model="listForm.qualityEngineerName"
|
v-model="listForm.qualityEngineerName"
|
||||||
placeholder="请选择质量工程师"
|
placeholder="请选择质量工程师"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="--"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -708,6 +738,11 @@ export default {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.input-jump {
|
||||||
|
/deep/.el-input__inner{
|
||||||
|
color: #409EFF;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.demo-drawer-content {
|
.demo-drawer-content {
|
||||||
|
|||||||
@@ -29,19 +29,37 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
v-if="listForm.standNumber && listForm.standNumber.length>0"
|
||||||
|
class="input-jump"
|
||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
readonly
|
readonly
|
||||||
v-model="listForm.standNumber"
|
v-model="listForm.standNumber"
|
||||||
placeholder="请输入标准编号"
|
placeholder="请输入标准编号"
|
||||||
></el-input>
|
></el-input>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
class="input-jump"
|
||||||
|
readonly
|
||||||
|
v-model="listForm.standNumber"
|
||||||
|
placeholder="请输入标准编号"
|
||||||
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
v-if="listForm.standName && listForm.standName.length>0"
|
||||||
|
class="input-jump"
|
||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
readonly
|
readonly
|
||||||
v-model="listForm.standName"
|
v-model="listForm.standName"
|
||||||
placeholder="请输入标准名称"
|
placeholder="请输入标准名称"
|
||||||
></el-input>
|
></el-input>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
class="input-jump"
|
||||||
|
readonly
|
||||||
|
v-model="listForm.standName"
|
||||||
|
placeholder="请输入标准名称"
|
||||||
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
@@ -85,6 +103,12 @@
|
|||||||
v-model="listForm.standNumber"
|
v-model="listForm.standNumber"
|
||||||
placeholder="请输入标准编号"
|
placeholder="请输入标准编号"
|
||||||
></el-input>
|
></el-input>
|
||||||
|
<el-input
|
||||||
|
@click.native="handlePreview(listForm)"
|
||||||
|
readonly
|
||||||
|
v-model="listForm.standNumber"
|
||||||
|
placeholder="请输入标准编号"
|
||||||
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
@@ -750,11 +774,15 @@ export default {
|
|||||||
if (this.dataList.length < 1) {
|
if (this.dataList.length < 1) {
|
||||||
this.satisfyFlag = false
|
this.satisfyFlag = false
|
||||||
this.$message.warning("请添加产品线信息");
|
this.$message.warning("请添加产品线信息");
|
||||||
|
}else {
|
||||||
|
this.satisfyFlag = true
|
||||||
}
|
}
|
||||||
this.dataList.forEach(item => {
|
this.dataList.forEach(item => {
|
||||||
if (item.distributePerson === "" || item.distributePerson === null || item.distributePerson === undefined) {
|
if (!item.distributePerson) {
|
||||||
this.satisfyFlag = false
|
this.satisfyFlag = false
|
||||||
this.$message.warning("请选择分发责任人");
|
this.$message.warning("请选择分发责任人");
|
||||||
|
}else {
|
||||||
|
this.satisfyFlag = true
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if(this.satisfyFlag){
|
if(this.satisfyFlag){
|
||||||
@@ -1029,6 +1057,11 @@ export default {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.input-jump {
|
||||||
|
/deep/.el-input__inner{
|
||||||
|
color: #409EFF;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.demo-drawer-content {
|
.demo-drawer-content {
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
class="input-jump"
|
||||||
v-model="listForm.standNumber"
|
v-model="listForm.standNumber"
|
||||||
placeholder="请输入标准编号"
|
placeholder="请输入标准编号"
|
||||||
readonly
|
readonly
|
||||||
@@ -32,26 +33,41 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
class="input-jump"
|
||||||
v-model="listForm.standName"
|
v-model="listForm.standName"
|
||||||
placeholder="请输入标准名称"
|
placeholder="请输入标准名称"
|
||||||
readonly
|
readonly
|
||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
v-model="listForm.certifiedEngineerName"
|
v-model="listForm.certifiedEngineerName"
|
||||||
placeholder="请选择认证工程师"
|
placeholder="请选择认证工程师"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.certifiedEngineerName"
|
||||||
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
v-model="listForm.qualityEngineerName"
|
v-model="listForm.qualityEngineerName"
|
||||||
placeholder="请选择质量工程师"
|
placeholder="请选择质量工程师"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
@@ -82,18 +98,32 @@
|
|||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
v-model="listForm.certifiedEngineerName"
|
v-model="listForm.certifiedEngineerName"
|
||||||
placeholder="请选择认证工程师"
|
placeholder="请选择认证工程师"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
v-model="listForm.qualityEngineerName"
|
v-model="listForm.certifiedEngineerName"
|
||||||
placeholder="请选择质量工程师"
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="请选择质量工程师"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="--"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -570,6 +600,11 @@ export default {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.input-jump {
|
||||||
|
/deep/.el-input__inner{
|
||||||
|
color: #409EFF;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.demo-drawer-content {
|
.demo-drawer-content {
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
class="input-jump"
|
||||||
v-model="listForm.standNumber"
|
v-model="listForm.standNumber"
|
||||||
placeholder="请输入标准编号"
|
placeholder="请输入标准编号"
|
||||||
readonly
|
readonly
|
||||||
@@ -32,24 +33,39 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
class="input-jump"
|
||||||
v-model="listForm.standName"
|
v-model="listForm.standName"
|
||||||
placeholder="请输入标准名称"
|
placeholder="请输入标准名称"
|
||||||
readonly
|
readonly
|
||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
readonly
|
||||||
v-model="listForm.certifiedEngineerName"
|
v-model="listForm.certifiedEngineerName"
|
||||||
placeholder="请选择认证工程师"
|
placeholder="请选择认证工程师"
|
||||||
readonly
|
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.certifiedEngineerName"
|
||||||
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
v-model="listForm.qualityEngineerName"
|
v-model="listForm.qualityEngineerName"
|
||||||
placeholder="请选择质量工程师"
|
placeholder="请选择质量工程师"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="--"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -82,18 +98,32 @@
|
|||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.certifiedEngineerName"
|
readonly
|
||||||
placeholder="请选择认证工程师"
|
v-model="listForm.certifiedEngineerName"
|
||||||
readonly
|
placeholder="请选择认证工程师"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.qualityEngineerName"
|
readonly
|
||||||
placeholder="请选择质量工程师"
|
v-model="listForm.certifiedEngineerName"
|
||||||
readonly
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="请选择质量工程师"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="--"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -746,6 +776,11 @@ export default {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.input-jump {
|
||||||
|
/deep/.el-input__inner{
|
||||||
|
color: #409EFF;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.demo-drawer-content {
|
.demo-drawer-content {
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
class="input-jump"
|
||||||
v-model="listForm.standNumber"
|
v-model="listForm.standNumber"
|
||||||
placeholder="请输入标准编号"
|
placeholder="请输入标准编号"
|
||||||
readonly
|
readonly
|
||||||
@@ -32,24 +33,39 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
class="input-jump"
|
||||||
v-model="listForm.standName"
|
v-model="listForm.standName"
|
||||||
placeholder="请输入标准名称"
|
placeholder="请输入标准名称"
|
||||||
readonly
|
readonly
|
||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
readonly
|
||||||
v-model="listForm.certifiedEngineerName"
|
v-model="listForm.certifiedEngineerName"
|
||||||
placeholder="请选择认证工程师"
|
placeholder="请选择认证工程师"
|
||||||
readonly
|
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.certifiedEngineerName"
|
||||||
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
v-model="listForm.qualityEngineerName"
|
v-model="listForm.qualityEngineerName"
|
||||||
placeholder="请选择质量工程师"
|
placeholder="请选择质量工程师"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="--"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -82,18 +98,32 @@
|
|||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.certifiedEngineerName"
|
readonly
|
||||||
placeholder="请选择认证工程师"
|
v-model="listForm.certifiedEngineerName"
|
||||||
readonly
|
placeholder="请选择认证工程师"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.qualityEngineerName"
|
readonly
|
||||||
placeholder="请选择质量工程师"
|
v-model="listForm.certifiedEngineerName"
|
||||||
readonly
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="请选择质量工程师"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="--"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -190,10 +220,20 @@
|
|||||||
label="合规">
|
label="合规">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input
|
<el-input
|
||||||
|
v-if="dataList[scope.$index].noCompliance && dataList[scope.$index].noCompliance.length>0
|
||||||
|
|| dataList[scope.$index].countermeasures && dataList[scope.$index].countermeasures.length>0
|
||||||
|
|| dataList[scope.$index].completionTime && dataList[scope.$index].completionTime !== null"
|
||||||
|
disabled
|
||||||
v-model="dataList[scope.$index].complianceReasons"
|
v-model="dataList[scope.$index].complianceReasons"
|
||||||
placeholder="请输入合规原因"
|
placeholder="请输入合规原因"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
v-model="dataList[scope.$index].complianceReasons"
|
||||||
|
placeholder="请输入合规原因"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
@@ -208,10 +248,18 @@
|
|||||||
label="不合规项目">
|
label="不合规项目">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input
|
<el-input
|
||||||
|
v-if="dataList[scope.$index].complianceReasons && dataList[scope.$index].complianceReasons.length>0"
|
||||||
|
disabled
|
||||||
v-model="dataList[scope.$index].noCompliance"
|
v-model="dataList[scope.$index].noCompliance"
|
||||||
placeholder="请输入不合规项目"
|
placeholder="请输入不合规项目"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
v-model="dataList[scope.$index].noCompliance"
|
||||||
|
placeholder="请输入不合规项目"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
@@ -221,22 +269,40 @@
|
|||||||
label="应对措施">
|
label="应对措施">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input
|
<el-input
|
||||||
|
v-if="dataList[scope.$index].complianceReasons && dataList[scope.$index].complianceReasons.length>0"
|
||||||
|
disabled
|
||||||
v-model="dataList[scope.$index].countermeasures"
|
v-model="dataList[scope.$index].countermeasures"
|
||||||
placeholder="请输入应对措施"
|
placeholder="请输入应对措施"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
v-model="dataList[scope.$index].countermeasures"
|
||||||
|
placeholder="请输入应对措施"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="researchCompletionTime"
|
prop="researchCompletionTime"
|
||||||
align="center"
|
align="center"
|
||||||
width="120"
|
width="140"
|
||||||
label="完成时间">
|
label="完成时间">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
|
v-if="dataList[scope.$index].complianceReasons && dataList[scope.$index].complianceReasons.length>0"
|
||||||
|
disabled
|
||||||
v-model="dataList[scope.$index].completionTime"
|
v-model="dataList[scope.$index].completionTime"
|
||||||
type="date"
|
type="date"
|
||||||
placeholder="选择日期">
|
placeholder="请选择日期">
|
||||||
|
</el-date-picker>
|
||||||
|
<el-date-picker
|
||||||
|
v-else
|
||||||
|
class="datePickLen"
|
||||||
|
clearable
|
||||||
|
v-model="dataList[scope.$index].completionTime"
|
||||||
|
type="date"
|
||||||
|
placeholder="请选择日期">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
@@ -252,10 +318,20 @@
|
|||||||
label="合规(具体情况)">
|
label="合规(具体情况)">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input
|
<el-input
|
||||||
|
v-if="dataList[scope.$index].zcNoCompliance && dataList[scope.$index].zcNoCompliance.length>0
|
||||||
|
|| dataList[scope.$index].zcCountermeasures && dataList[scope.$index].zcCountermeasures>0
|
||||||
|
|| dataList[scope.$index].zcCompletionTime && dataList[scope.$index].zcCompletionTime !== null"
|
||||||
|
disabled
|
||||||
v-model="dataList[scope.$index].zcComplianceReasons"
|
v-model="dataList[scope.$index].zcComplianceReasons"
|
||||||
placeholder="请输入合规原因"
|
placeholder="请输入合规原因"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
v-model="dataList[scope.$index].zcComplianceReasons"
|
||||||
|
placeholder="请输入合规原因"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
@@ -269,10 +345,18 @@
|
|||||||
label="不合规项目">
|
label="不合规项目">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input
|
<el-input
|
||||||
|
v-if="dataList[scope.$index].zcComplianceReasons && dataList[scope.$index].zcComplianceReasons.length>0"
|
||||||
|
disabled
|
||||||
v-model="dataList[scope.$index].zcNoCompliance"
|
v-model="dataList[scope.$index].zcNoCompliance"
|
||||||
placeholder="请输入不合规项目"
|
placeholder="请输入不合规项目"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
v-model="dataList[scope.$index].zcNoCompliance"
|
||||||
|
placeholder="请输入不合规项目"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
@@ -282,22 +366,40 @@
|
|||||||
label="应对措施">
|
label="应对措施">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input
|
<el-input
|
||||||
|
v-if="dataList[scope.$index].zcComplianceReasons && dataList[scope.$index].zcComplianceReasons.length>0"
|
||||||
|
disabled
|
||||||
v-model="dataList[scope.$index].zcCountermeasures"
|
v-model="dataList[scope.$index].zcCountermeasures"
|
||||||
placeholder="请输入应对措施"
|
placeholder="请输入应对措施"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
v-model="dataList[scope.$index].zcCountermeasures"
|
||||||
|
placeholder="请输入应对措施"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="productionCompletionTime"
|
prop="productionCompletionTime"
|
||||||
align="center"
|
align="center"
|
||||||
width="120"
|
width="140"
|
||||||
label="完成时间">
|
label="完成时间">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
|
v-if="dataList[scope.$index].zcComplianceReasons && dataList[scope.$index].zcComplianceReasons.length>0"
|
||||||
|
disabled
|
||||||
v-model="dataList[scope.$index].zcCompletionTime"
|
v-model="dataList[scope.$index].zcCompletionTime"
|
||||||
type="date"
|
type="date"
|
||||||
placeholder="选择日期">
|
placeholder="请选择日期">
|
||||||
|
</el-date-picker>
|
||||||
|
<el-date-picker
|
||||||
|
v-else
|
||||||
|
class="datePickLen"
|
||||||
|
clearable
|
||||||
|
v-model="dataList[scope.$index].zcCompletionTime"
|
||||||
|
type="date"
|
||||||
|
placeholder="请选择日期">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
@@ -780,6 +882,16 @@ export default {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.datePickLen {
|
||||||
|
/deep/ .el-icon-circle-close:before {
|
||||||
|
margin-left: -180px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.input-jump {
|
||||||
|
/deep/.el-input__inner{
|
||||||
|
color: #409EFF;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.demo-drawer-content {
|
.demo-drawer-content {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
class="input-jump"
|
||||||
v-model="listForm.standNumber"
|
v-model="listForm.standNumber"
|
||||||
placeholder="请输入标准编号"
|
placeholder="请输入标准编号"
|
||||||
readonly
|
readonly
|
||||||
@@ -32,24 +33,39 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
class="input-jump"
|
||||||
v-model="listForm.standName"
|
v-model="listForm.standName"
|
||||||
placeholder="请输入标准名称"
|
placeholder="请输入标准名称"
|
||||||
readonly
|
readonly
|
||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
readonly
|
||||||
v-model="listForm.certifiedEngineerName"
|
v-model="listForm.certifiedEngineerName"
|
||||||
placeholder="请选择认证工程师"
|
placeholder="请选择认证工程师"
|
||||||
readonly
|
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.certifiedEngineerName"
|
||||||
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
v-model="listForm.qualityEngineerName"
|
v-model="listForm.qualityEngineerName"
|
||||||
placeholder="请选择质量工程师"
|
placeholder="请选择质量工程师"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="--"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -82,18 +98,32 @@
|
|||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.certifiedEngineerName"
|
readonly
|
||||||
placeholder="请选择认证工程师"
|
v-model="listForm.certifiedEngineerName"
|
||||||
readonly
|
placeholder="请选择认证工程师"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.qualityEngineerName"
|
readonly
|
||||||
placeholder="请选择质量工程师"
|
v-model="listForm.certifiedEngineerName"
|
||||||
readonly
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="请选择质量工程师"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="--"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -722,6 +752,11 @@ export default {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.input-jump {
|
||||||
|
/deep/.el-input__inner{
|
||||||
|
color: #409EFF;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.demo-drawer-content {
|
.demo-drawer-content {
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
class="input-jump"
|
||||||
v-model="listForm.standNumber"
|
v-model="listForm.standNumber"
|
||||||
placeholder="请输入标准编号"
|
placeholder="请输入标准编号"
|
||||||
readonly
|
readonly
|
||||||
@@ -32,24 +33,39 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
class="input-jump"
|
||||||
v-model="listForm.standName"
|
v-model="listForm.standName"
|
||||||
placeholder="请输入标准名称"
|
placeholder="请输入标准名称"
|
||||||
readonly
|
readonly
|
||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
readonly
|
||||||
v-model="listForm.certifiedEngineerName"
|
v-model="listForm.certifiedEngineerName"
|
||||||
placeholder="请选择认证工程师"
|
placeholder="请选择认证工程师"
|
||||||
readonly
|
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.certifiedEngineerName"
|
||||||
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
v-model="listForm.qualityEngineerName"
|
v-model="listForm.qualityEngineerName"
|
||||||
placeholder="请选择质量工程师"
|
placeholder="请选择质量工程师"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="--"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -82,18 +98,32 @@
|
|||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.certifiedEngineerName"
|
readonly
|
||||||
placeholder="请选择认证工程师"
|
v-model="listForm.certifiedEngineerName"
|
||||||
readonly
|
placeholder="请选择认证工程师"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.qualityEngineerName"
|
readonly
|
||||||
placeholder="请选择质量工程师"
|
v-model="listForm.certifiedEngineerName"
|
||||||
readonly
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="请选择质量工程师"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="--"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -712,6 +742,11 @@ export default {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.input-jump {
|
||||||
|
/deep/.el-input__inner{
|
||||||
|
color: #409EFF;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.demo-drawer-content {
|
.demo-drawer-content {
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
class="input-jump"
|
||||||
v-model="listForm.standNumber"
|
v-model="listForm.standNumber"
|
||||||
placeholder="请输入标准编号"
|
placeholder="请输入标准编号"
|
||||||
readonly
|
readonly
|
||||||
@@ -32,24 +33,39 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
class="input-jump"
|
||||||
v-model="listForm.standName"
|
v-model="listForm.standName"
|
||||||
placeholder="请输入标准名称"
|
placeholder="请输入标准名称"
|
||||||
readonly
|
readonly
|
||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
readonly
|
||||||
v-model="listForm.certifiedEngineerName"
|
v-model="listForm.certifiedEngineerName"
|
||||||
placeholder="请选择认证工程师"
|
placeholder="请选择认证工程师"
|
||||||
readonly
|
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.certifiedEngineerName"
|
||||||
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
v-model="listForm.qualityEngineerName"
|
v-model="listForm.qualityEngineerName"
|
||||||
placeholder="请选择质量工程师"
|
placeholder="请选择质量工程师"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
readonly
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="--"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -82,18 +98,32 @@
|
|||||||
@click.native="handlePreview(listForm)"
|
@click.native="handlePreview(listForm)"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="认证工程师" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.certifiedEngineerName"
|
readonly
|
||||||
placeholder="请选择认证工程师"
|
v-model="listForm.certifiedEngineerName"
|
||||||
readonly
|
placeholder="请选择认证工程师"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="listForm.qualityEngineerName"
|
readonly
|
||||||
placeholder="请选择质量工程师"
|
v-model="listForm.certifiedEngineerName"
|
||||||
readonly
|
placeholder="--"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="请选择质量工程师"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
||||||
|
<el-input
|
||||||
|
readonly
|
||||||
|
v-model="listForm.qualityEngineerName"
|
||||||
|
placeholder="--"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -708,6 +738,11 @@ export default {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.input-jump {
|
||||||
|
/deep/.el-input__inner{
|
||||||
|
color: #409EFF;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.demo-drawer-content {
|
.demo-drawer-content {
|
||||||
|
|||||||
@@ -132,10 +132,20 @@
|
|||||||
label="合规">
|
label="合规">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input
|
<el-input
|
||||||
|
v-if="scope.row.noCompliance && scope.row.noCompliance.length>0
|
||||||
|
|| scope.row.countermeasures && scope.row.countermeasures.length>0
|
||||||
|
|| scope.row.completionTime && scope.row.completionTime !== null"
|
||||||
|
disabled
|
||||||
v-model="scope.row.complianceReasons"
|
v-model="scope.row.complianceReasons"
|
||||||
placeholder="请输入合规原因"
|
placeholder="请输入合规原因"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
v-model="scope.row.complianceReasons"
|
||||||
|
placeholder="请输入合规原因"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
@@ -150,10 +160,18 @@
|
|||||||
label="不合规项目">
|
label="不合规项目">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input
|
<el-input
|
||||||
|
v-if="scope.row.complianceReasons && scope.row.complianceReasons.length>0"
|
||||||
|
disabled
|
||||||
v-model="scope.row.noCompliance"
|
v-model="scope.row.noCompliance"
|
||||||
placeholder="请输入不合规项目"
|
placeholder="请输入不合规项目"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
v-model="scope.row.noCompliance"
|
||||||
|
placeholder="请输入不合规项目"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
@@ -163,22 +181,40 @@
|
|||||||
label="应对措施">
|
label="应对措施">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input
|
<el-input
|
||||||
|
v-if="scope.row.complianceReasons && scope.row.complianceReasons.length>0"
|
||||||
|
disabled
|
||||||
v-model="scope.row.countermeasures"
|
v-model="scope.row.countermeasures"
|
||||||
placeholder="请输入应对措施"
|
placeholder="请输入应对措施"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
v-model="scope.row.countermeasures"
|
||||||
|
placeholder="请输入应对措施"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="researchCompletionTime"
|
prop="researchCompletionTime"
|
||||||
align="center"
|
align="center"
|
||||||
width="120"
|
width="140"
|
||||||
label="完成时间">
|
label="完成时间">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
|
v-if="scope.row.complianceReasons && scope.row.complianceReasons.length>0"
|
||||||
|
disabled
|
||||||
v-model="scope.row.completionTime"
|
v-model="scope.row.completionTime"
|
||||||
type="date"
|
type="date"
|
||||||
placeholder="选择日期">
|
placeholder="请选择日期">
|
||||||
|
</el-date-picker>
|
||||||
|
<el-date-picker
|
||||||
|
v-else
|
||||||
|
class="datePickLen"
|
||||||
|
clearable
|
||||||
|
v-model="scope.row.completionTime"
|
||||||
|
type="date"
|
||||||
|
placeholder="请选择日期">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
@@ -194,10 +230,20 @@
|
|||||||
label="合规(具体情况)">
|
label="合规(具体情况)">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input
|
<el-input
|
||||||
|
v-if="scope.row.zcNoCompliance && scope.row.zcNoCompliance.length>0
|
||||||
|
|| scope.row.zcCountermeasures && scope.row.zcCountermeasures>0
|
||||||
|
|| scope.row.zcCompletionTime && scope.row.zcCompletionTime !== null"
|
||||||
|
disabled
|
||||||
v-model="scope.row.zcComplianceReasons"
|
v-model="scope.row.zcComplianceReasons"
|
||||||
placeholder="请输入合规原因"
|
placeholder="请输入合规原因"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
v-model="scope.row.zcComplianceReasons"
|
||||||
|
placeholder="请输入合规原因"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
@@ -211,10 +257,18 @@
|
|||||||
label="不合规项目">
|
label="不合规项目">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input
|
<el-input
|
||||||
|
v-if="scope.row.zcComplianceReasons && scope.row.zcComplianceReasons.length>0"
|
||||||
|
disabled
|
||||||
v-model="scope.row.zcNoCompliance"
|
v-model="scope.row.zcNoCompliance"
|
||||||
placeholder="请输入不合规项目"
|
placeholder="请输入不合规项目"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
v-model="scope.row.zcNoCompliance"
|
||||||
|
placeholder="请输入不合规项目"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
@@ -224,22 +278,40 @@
|
|||||||
label="应对措施">
|
label="应对措施">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input
|
<el-input
|
||||||
|
v-if="scope.row.zcComplianceReasons && scope.row.zcComplianceReasons.length>0"
|
||||||
|
disabled
|
||||||
v-model="scope.row.zcCountermeasures"
|
v-model="scope.row.zcCountermeasures"
|
||||||
placeholder="请输入应对措施"
|
placeholder="请输入应对措施"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
|
<el-input
|
||||||
|
v-else
|
||||||
|
v-model="scope.row.zcCountermeasures"
|
||||||
|
placeholder="请输入应对措施"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="productionCompletionTime"
|
prop="productionCompletionTime"
|
||||||
align="center"
|
align="center"
|
||||||
width="120"
|
width="140"
|
||||||
label="完成时间">
|
label="完成时间">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
|
v-if="scope.row.zcComplianceReasons && scope.row.zcComplianceReasons.length>0"
|
||||||
|
disabled
|
||||||
v-model="scope.row.zcCompletionTime"
|
v-model="scope.row.zcCompletionTime"
|
||||||
type="date"
|
type="date"
|
||||||
placeholder="选择日期">
|
placeholder="请选择日期">
|
||||||
|
</el-date-picker>
|
||||||
|
<el-date-picker
|
||||||
|
v-else
|
||||||
|
class="datePickLen"
|
||||||
|
clearable
|
||||||
|
v-model="scope.row.zcCompletionTime"
|
||||||
|
type="date"
|
||||||
|
placeholder="请选择日期">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
@@ -896,6 +968,12 @@ export default {
|
|||||||
.accessStandardsAndRegulations {
|
.accessStandardsAndRegulations {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.datePickLen {
|
||||||
|
/deep/ .el-icon-circle-close:before {
|
||||||
|
margin-left: -180px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.demo-drawer-content {
|
.demo-drawer-content {
|
||||||
|
|||||||
@@ -148,7 +148,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</el-card>
|
</el-card>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="size ? 6 : 8" v-btn-permission="">
|
<el-col :span="size ? 6 : 8" v-btn-permission="'9d3775db9a76f37402e3e49f3e55e77e'">
|
||||||
<el-card shadow="hover">
|
<el-card shadow="hover">
|
||||||
<div class="card-box" @click="handleCreateProcess('11')">
|
<div class="card-box" @click="handleCreateProcess('11')">
|
||||||
<div class="card-top">
|
<div class="card-top">
|
||||||
@@ -166,6 +166,63 @@
|
|||||||
</div>
|
</div>
|
||||||
</el-card>
|
</el-card>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
|
<!-- <!–严逸舟写的分割线–>-->
|
||||||
|
<!-- <el-col :span="size ? 6 : 8" v-btn-permission="">-->
|
||||||
|
<!-- <el-card shadow="hover">-->
|
||||||
|
<!-- <div class="card-box" @click="handleCreateProcess('12')">-->
|
||||||
|
<!-- <div class="card-top">-->
|
||||||
|
<!-- <div class="card-top-left">-->
|
||||||
|
<!-- <img :src="getImg(Math.floor(Math.random() * 6))">-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- <div class="card-top-right">-->
|
||||||
|
<!-- <div class="card-top-right-text">赵开耀的流程</div>-->
|
||||||
|
<!-- <div class="card-top-right-line"></div>-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- <!– <div class="card-bottom">–>-->
|
||||||
|
<!-- <!– 流程简介: 容器默认存在两根轴:水平的主轴(main axis)和垂直的交叉轴(cross axis)。主轴的开始位置(与边框的交叉点)叫做main start,结束位置叫做main end;交叉轴的开始位置叫做cross start,结束位置叫做cross end。–>-->
|
||||||
|
<!-- <!– </div>–>-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- </el-card>-->
|
||||||
|
<!-- </el-col>-->
|
||||||
|
<!-- <el-col :span="size ? 6 : 8" v-btn-permission="">-->
|
||||||
|
<!-- <el-card shadow="hover">-->
|
||||||
|
<!-- <div class="card-box" @click="handleCreateProcess('13')">-->
|
||||||
|
<!-- <div class="card-top">-->
|
||||||
|
<!-- <div class="card-top-left">-->
|
||||||
|
<!-- <img :src="getImg(Math.floor(Math.random() * 6))">-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- <div class="card-top-right">-->
|
||||||
|
<!-- <div class="card-top-right-text">严逸舟的流程</div>-->
|
||||||
|
<!-- <div class="card-top-right-line"></div>-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- <!– <div class="card-bottom">–>-->
|
||||||
|
<!-- <!– 流程简介: 容器默认存在两根轴:水平的主轴(main axis)和垂直的交叉轴(cross axis)。主轴的开始位置(与边框的交叉点)叫做main start,结束位置叫做main end;交叉轴的开始位置叫做cross start,结束位置叫做cross end。–>-->
|
||||||
|
<!-- <!– </div>–>-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- </el-card>-->
|
||||||
|
<!-- </el-col>-->
|
||||||
|
<!-- <el-col :span="size ? 6 : 8" v-btn-permission="">-->
|
||||||
|
<!-- <el-card shadow="hover">-->
|
||||||
|
<!-- <div class="card-box" @click="handleCreateProcess('14')">-->
|
||||||
|
<!-- <div class="card-top">-->
|
||||||
|
<!-- <div class="card-top-left">-->
|
||||||
|
<!-- <img :src="getImg(Math.floor(Math.random() * 6))">-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- <div class="card-top-right">-->
|
||||||
|
<!-- <div class="card-top-right-text">张宇欢的流程</div>-->
|
||||||
|
<!-- <div class="card-top-right-line"></div>-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- <!– <div class="card-bottom">–>-->
|
||||||
|
<!-- <!– 流程简介: 容器默认存在两根轴:水平的主轴(main axis)和垂直的交叉轴(cross axis)。主轴的开始位置(与边框的交叉点)叫做main start,结束位置叫做main end;交叉轴的开始位置叫做cross start,结束位置叫做cross end。–>-->
|
||||||
|
<!-- <!– </div>–>-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- </el-card>-->
|
||||||
|
<!-- </el-col>-->
|
||||||
|
<!-- <!–严逸舟写的分割线–>-->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="zcgllc">
|
<div v-if="zcgllc">
|
||||||
@@ -283,6 +340,24 @@ export default {
|
|||||||
name:'xmqdqrStep1'
|
name:'xmqdqrStep1'
|
||||||
})
|
})
|
||||||
break
|
break
|
||||||
|
case '12':
|
||||||
|
// 赵开耀的流程
|
||||||
|
this.$router.push({
|
||||||
|
name: 'zhaokaiyaoStep1'
|
||||||
|
})
|
||||||
|
break
|
||||||
|
case '13':
|
||||||
|
// 严逸舟的流程
|
||||||
|
this.$router.push({
|
||||||
|
name: 'yanyizhouStep1'
|
||||||
|
})
|
||||||
|
break
|
||||||
|
case '14':
|
||||||
|
// 张宇欢的流程
|
||||||
|
this.$router.push({
|
||||||
|
name: 'zhangyuhuanStep1'
|
||||||
|
})
|
||||||
|
break
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
checkPermission(permissionIdArray) {
|
checkPermission(permissionIdArray) {
|
||||||
|
|||||||
@@ -81,7 +81,7 @@
|
|||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="标准名称" class="search-item">
|
<el-form-item label="标准号/标准名称" class="search-item">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="sarAccessInfoSearch.standName"
|
v-model="sarAccessInfoSearch.standName"
|
||||||
placeholder="请输入"
|
placeholder="请输入"
|
||||||
@@ -605,6 +605,7 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
// isAdvancedSearch: false,
|
||||||
textStatusMap: {},
|
textStatusMap: {},
|
||||||
countryAreaMap: {},
|
countryAreaMap: {},
|
||||||
typeApplicableMap: {},
|
typeApplicableMap: {},
|
||||||
@@ -951,6 +952,20 @@ export default {
|
|||||||
}
|
}
|
||||||
this.selectLawsStands()
|
this.selectLawsStands()
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
// selectMoreBtn() {
|
||||||
|
// this.isAdvancedSearch = true
|
||||||
|
// this.standardFormList.standName = ''
|
||||||
|
// this.standardFormList.typeApplicable = ''
|
||||||
|
// this.standardFormList.nylx = ''
|
||||||
|
// this.standardFormList.zrbm = ''
|
||||||
|
// this.standardFormList.sycpx = ''
|
||||||
|
// this.showTableFlag = false
|
||||||
|
// this.page = 1
|
||||||
|
// this.standardForm.page = 1
|
||||||
|
// this.selectInfoMore()
|
||||||
|
// },
|
||||||
// 法规维护人树
|
// 法规维护人树
|
||||||
getDept() {
|
getDept() {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
|
|||||||
@@ -2872,12 +2872,14 @@ export default {
|
|||||||
this.$set(data, 'showDel', false)
|
this.$set(data, 'showDel', false)
|
||||||
},
|
},
|
||||||
treeClick(treeNode) {
|
treeClick(treeNode) {
|
||||||
|
console.log("hello")
|
||||||
this.selectSarMenu = treeNode
|
this.selectSarMenu = treeNode
|
||||||
this.standCommonlySearch.menuId = treeNode.id
|
this.standCommonlySearch.menuId = treeNode.id
|
||||||
this.sarStandardsSearch.menuId = treeNode.id // 将当前二级菜单的id传回后台做标准的条件查询
|
this.sarStandardsSearch.menuId = treeNode.id // 将当前二级菜单的id传回后台做标准的条件查询
|
||||||
this.sarStandardsSearch.page = 1
|
this.sarStandardsSearch.page = 1
|
||||||
this.standCommonlySearch.page = 1
|
this.standCommonlySearch.page = 1
|
||||||
this.getDomesticStandardTable(this.tableFlag)
|
//搜索后点击属性菜单依然显示搜索条件的数据
|
||||||
|
this.getDomesticStandardTable(this.standCommonlySearch)
|
||||||
},
|
},
|
||||||
// 点击搜索按钮
|
// 点击搜索按钮
|
||||||
searchBtnClick(standCommonlySearch) {
|
searchBtnClick(standCommonlySearch) {
|
||||||
|
|||||||
@@ -192,7 +192,7 @@
|
|||||||
<el-table-column label="" fixed="right" width="50" :resizable="false" label="操作" align="center">
|
<el-table-column label="" fixed="right" width="50" :resizable="false" label="操作" align="center">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div @click.stop style="display: inline-block">
|
<div @click.stop style="display: inline-block">
|
||||||
<el-dropdown trigger="click" @command="handleCommand(scope.$index, localProTableList)">
|
<el-dropdown trigger="click" @command="handleCommand">
|
||||||
<i class="iconfont"></i>
|
<i class="iconfont"></i>
|
||||||
<el-dropdown-menu slot="dropdown">
|
<el-dropdown-menu slot="dropdown">
|
||||||
<el-dropdown-item :command="[scope.row, '查看']" v-btn-permission="'633e82816590af9027dc2fddc562d046'">
|
<el-dropdown-item :command="[scope.row, '查看']" v-btn-permission="'633e82816590af9027dc2fddc562d046'">
|
||||||
@@ -883,7 +883,7 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 更多
|
// 更多
|
||||||
handleCommand(command,index, rows) {
|
handleCommand(command) {
|
||||||
switch (command[1]) {
|
switch (command[1]) {
|
||||||
case "删除":
|
case "删除":
|
||||||
this.handleDelete(command[0]);
|
this.handleDelete(command[0]);
|
||||||
|
|||||||
@@ -68,6 +68,7 @@
|
|||||||
<el-table-column
|
<el-table-column
|
||||||
prop="category"
|
prop="category"
|
||||||
label="标准/政策"
|
label="标准/政策"
|
||||||
|
width="180"
|
||||||
align="center">
|
align="center">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<a class="table-jump" @click.stop="handlePreview(scope.row)">{{ scope.row.category }}</a>
|
<a class="table-jump" @click.stop="handlePreview(scope.row)">{{ scope.row.category }}</a>
|
||||||
|
|||||||
Reference in New Issue
Block a user