修改清单的提示

This commit is contained in:
yanyizhou
2021-08-20 10:09:34 +08:00
parent 4d7e95ed64
commit 05fc5466f2
2 changed files with 456 additions and 421 deletions
@@ -1360,10 +1360,11 @@ export default {
loading: 'loadData' loading: 'loadData'
}, res => { }, res => {
if (res.ok) { if (res.ok) {
this.$message.success('修改成功')
this.$router.push({ this.$router.push({
name: 'AccessStandardsAndRegulations' name: 'AccessStandardsAndRegulations'
}) })
}else { } else {
this.$message.error('已存在此国家/地区清单,修改失败') this.$message.error('已存在此国家/地区清单,修改失败')
} }
}, e => { }, e => {
@@ -6,7 +6,8 @@
<el-divider content-position="left">基础信息</el-divider> <el-divider content-position="left">基础信息</el-divider>
<div class="search-area"> <div class="search-area">
<div class="left"> <div class="left">
<el-form inline :model="sarAccessEO" ref="sarAccessForm" class="label-input-form" :rules="sarAccessEORules" label-width="80px"> <el-form inline :model="sarAccessEO" ref="sarAccessForm" class="label-input-form" :rules="sarAccessEORules"
label-width="80px">
<el-form-item label="清单名称" prop="detailedListName" class="search-item"> <el-form-item label="清单名称" prop="detailedListName" class="search-item">
<el-input v-model="sarAccessEO.detailedListName" :disabled="disabledFlag" placeholder="请输入"></el-input> <el-input v-model="sarAccessEO.detailedListName" :disabled="disabledFlag" placeholder="请输入"></el-input>
</el-form-item> </el-form-item>
@@ -97,7 +98,8 @@
<el-button <el-button
class="common-button-default" class="common-button-default"
size="small" size="small"
@click="clearSearchLaws">清空</el-button> @click="clearSearchLaws">清空
</el-button>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" class="common-button-primary" size="mini" @click="selectMoreBtn"> <el-button type="primary" class="common-button-primary" size="mini" @click="selectMoreBtn">
@@ -166,18 +168,21 @@
<div class="action-bar"> <div class="action-bar">
<el-button <el-button
class="common-button-default" class="common-button-default"
size="mini" @click="addSarAccess">添加</el-button> size="mini" @click="addSarAccess">添加
</el-button>
<el-button <el-button
class="common-button-default" class="common-button-default"
v-if="showTableFlag" v-if="showTableFlag"
size="mini" @click="isShowTable" size="mini" @click="isShowTable"
>{{$t('m.showAddDataList')}}</el-button> >{{ $t('m.showAddDataList') }}
</el-button>
<el-button <el-button
class="common-button-default" class="common-button-default"
v-if="!showTableFlag" v-if="!showTableFlag"
size="mini" size="mini"
@click="isShowTable" @click="isShowTable"
>{{$t('m.hideAddDataList')}}</el-button> >{{ $t('m.hideAddDataList') }}
</el-button>
</div> </div>
<div class="standards-drawer-table standards-drawer-table-one" v-if="!showTableFlag"> <div class="standards-drawer-table standards-drawer-table-one" v-if="!showTableFlag">
<el-table <el-table
@@ -271,7 +276,7 @@
</el-table> </el-table>
<pagination :page="drawerPage" :total="drawerTotal" @pageChange="drawerPageChange" <pagination :page="drawerPage" :total="drawerTotal" @pageChange="drawerPageChange"
@pageSizeChange="drawerPageSizeChange"></pagination> @pageSizeChange="drawerPageSizeChange"></pagination>
<loading :loading="dataLoading">{{$t('m.dataAcquisition')}}</loading> <loading :loading="dataLoading">{{ $t('m.dataAcquisition') }}</loading>
</div> </div>
</div> </div>
<!--清单条目--> <!--清单条目-->
@@ -282,12 +287,14 @@
class="common-button-default export-button" class="common-button-default export-button"
size="mini" @click="exportAccessInfo('apart')" size="mini" @click="exportAccessInfo('apart')"
v-btn-permission="''" v-btn-permission="''"
><i class="iconfont">&#xe6e9;</i>导出</el-button> ><i class="iconfont">&#xe6e9;</i>导出
</el-button>
<el-button <el-button
class="common-button-default delete-button" class="common-button-default delete-button"
size="mini" @click="deleteSelectSarAccessInfo" size="mini" @click="deleteSelectSarAccessInfo"
v-btn-permission="''" v-btn-permission="''"
><i class="iconfont">&#xe61b;</i>删除</el-button> ><i class="iconfont">&#xe61b;</i>删除
</el-button>
</div> </div>
<el-table <el-table
:data="sarAccessInfoList" :data="sarAccessInfoList"
@@ -366,7 +373,7 @@
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="scope.row.zccssrqgj === null || scope.row.zccssrqgj === ''"> <span v-if="scope.row.zccssrqgj === null || scope.row.zccssrqgj === ''">
</span> </span>
<span v-else>{{ scope.row.zccssrqgj.slice(0,10) }}</span> <span v-else>{{ scope.row.zccssrqgj.slice(0, 10) }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
@@ -378,7 +385,7 @@
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="scope.row.xcxssrqgj === null || scope.row.xcxssrqgj === ''"> <span v-if="scope.row.xcxssrqgj === null || scope.row.xcxssrqgj === ''">
</span> </span>
<span v-else>{{ scope.row.xcxssrqgj.slice(0,10) }}</span> <span v-else>{{ scope.row.xcxssrqgj.slice(0, 10) }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
@@ -430,26 +437,33 @@
type="primary" type="primary"
size="small" @click="moveUp(scope.$index, scope.row)" size="small" @click="moveUp(scope.$index, scope.row)"
v-if="!disabledFlag" v-if="!disabledFlag"
>上移</el-button> >上移
</el-button>
<el-button <el-button
class="common-button-default" class="common-button-default"
type="danger" type="danger"
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>
<el-button <el-button
size="small" size="small"
@click="editTghisRow(scope.row)" @click="editTghisRow(scope.row)"
class="common-button-default" class="common-button-default"
type="warning" type="warning"
>编辑</el-button> >编辑
</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
</div> </div>
<div class="footer"> <div class="footer">
<el-button class="common-button-primary" icon="el-icon-check" size="mini" type="primary" @click="saveSarAccess" v-if="!disabledFlag" :loading="loadData">{{$t('m.submit')}}</el-button> <el-button class="common-button-primary" icon="el-icon-check" size="mini" type="primary" @click="saveSarAccess"
<el-button class="common-button-default" icon="el-icon-close" size="mini" @click="backCancal" v-if="!disabledFlag">{{$t('m.cancel')}}</el-button> v-if="!disabledFlag" :loading="loadData">{{ $t('m.submit') }}
</el-button>
<el-button class="common-button-default" icon="el-icon-close" size="mini" @click="backCancal"
v-if="!disabledFlag">{{ $t('m.cancel') }}
</el-button>
</div> </div>
<el-dialog :visible.sync="exportTestItemNameFlag" title="导出文件" width="300px"> <el-dialog :visible.sync="exportTestItemNameFlag" title="导出文件" width="300px">
<el-form :inline="true" class="label-input-form search-area"> <el-form :inline="true" class="label-input-form search-area">
@@ -459,7 +473,8 @@
</el-form> </el-form>
<span slot="footer" class="demo-drawer-footer"> <span slot="footer" class="demo-drawer-footer">
<el-button class="common-button-default" size="mini" icon="el-icon-close" @click="cancal">取消</el-button> <el-button class="common-button-default" size="mini" icon="el-icon-close" @click="cancal">取消</el-button>
<el-button type="primary" size="mini" class="common-button-primary" icon="el-icon-check" @click="exportTestItem">提交</el-button> <el-button type="primary" size="mini" class="common-button-primary" icon="el-icon-check"
@click="exportTestItem">提交</el-button>
</span> </span>
</el-dialog> </el-dialog>
<!--导入模态框--> <!--导入模态框-->
@@ -551,14 +566,16 @@
size="mini" size="mini"
icon="el-icon-check" icon="el-icon-check"
@click="saveInfo" @click="saveInfo"
>提交</el-button >提交
</el-button
> >
<el-button <el-button
size="mini" size="mini"
icon="el-icon-close" icon="el-icon-close"
class="common-button-default" class="common-button-default"
@click="cancelInfo" @click="cancelInfo"
>取消</el-button >取消
</el-button
> >
</div> </div>
</el-drawer> </el-drawer>
@@ -579,14 +596,15 @@ import CustomSelectArray from '@/components/CustomFormComponents/SelectArray'
import TreePopover from '@/components/CustomFormComponents/TreePopover' import TreePopover from '@/components/CustomFormComponents/TreePopover'
import CustomOrg from '@/components/CustomFormComponents/OrgTree' import CustomOrg from '@/components/CustomFormComponents/OrgTree'
import CustomEopDatePick from '@/components/CustomFormComponents/DatePickerWithText' import CustomEopDatePick from '@/components/CustomFormComponents/DatePickerWithText'
import CustomDatePickWithText ,{ formatText }from '@/components/CustomFormComponents/DatePickerGroupWithText' import CustomDatePickWithText, {formatText} from '@/components/CustomFormComponents/DatePickerGroupWithText'
import CustomSVPPS from '@/components/CustomFormComponents/SVPPS' import CustomSVPPS from '@/components/CustomFormComponents/SVPPS'
import CustomInputForPolicy from '@/components/CustomFormComponents/InputForPolicy' import CustomInputForPolicy from '@/components/CustomFormComponents/InputForPolicy'
import CustomRoleTree from '@/components/CustomFormComponents/roleTree' import CustomRoleTree from '@/components/CustomFormComponents/roleTree'
import stand from "../../../config/pages/attributeCustom/components/stand"; import stand from "../../../config/pages/attributeCustom/components/stand";
import { mapGetters } from 'vuex' import {mapGetters} from 'vuex'
import {interfaceUrl} from "@/sysConfig"; import {interfaceUrl} from "@/sysConfig";
import {dicTypeData, StandardsInfoPage} from "@/api/unqualProcess" import {dicTypeData, StandardsInfoPage} from "@/api/unqualProcess"
export default { export default {
name: 'OtherAddEit', name: 'OtherAddEit',
components: { components: {
@@ -609,10 +627,10 @@ export default {
CustomInputForPolicy, CustomInputForPolicy,
CustomRoleTree CustomRoleTree
}, },
data () { data() {
return { return {
textStatusMap: {}, textStatusMap: {},
selectSearch : [], selectSearch: [],
// 新增、编辑 基础信息字段 // 新增、编辑 基础信息字段
sarAccessEO: { sarAccessEO: {
id: '', id: '',
@@ -637,7 +655,7 @@ export default {
editRowData: { editRowData: {
id: '', id: '',
standName: '', standName: '',
standSortShow:'', standSortShow: '',
standEnName: '', standEnName: '',
typeApplicable: '', typeApplicable: '',
syrz: '', syrz: '',
@@ -900,31 +918,31 @@ export default {
// {validator: this.verify.checkSpecialCharacter, trigger: 'blur'} gaoyan 2018-11-07 客户提到特殊符号校验问题 // {validator: this.verify.checkSpecialCharacter, trigger: 'blur'} gaoyan 2018-11-07 客户提到特殊符号校验问题
], ],
lawsNumber: [ lawsNumber: [
{ required: true, message: '政策编号不能为空', trigger: 'change' }, {required: true, message: '政策编号不能为空', trigger: 'change'},
{ type: 'string', max: 100, message: '政策编号不能超过100个字符', trigger: 'change' }, {type: 'string', max: 100, message: '政策编号不能超过100个字符', trigger: 'change'},
{type: 'string', validator: this.verify.validateStandardItem, trigger: 'change'} {type: 'string', validator: this.verify.validateStandardItem, trigger: 'change'}
], ],
lawsName: [ lawsName: [
{ required: true, message: '中文名称不能为空', trigger: 'blur' }, {required: true, message: '中文名称不能为空', trigger: 'blur'},
{ type: 'string', max: 500, message: '中文名称不能超过500个字符', trigger: 'change' } {type: 'string', max: 500, message: '中文名称不能超过500个字符', trigger: 'change'}
], ],
lawsEnName: [ lawsEnName: [
{ required: true, message: '英文名称不能为空', trigger: 'change' }, {required: true, message: '英文名称不能为空', trigger: 'change'},
{ type: 'string', max: 1000, message: '英文名称不能超过1000个字符', trigger: 'change' } {type: 'string', max: 1000, message: '英文名称不能超过1000个字符', trigger: 'change'}
// { validator: this.verify.valiateEnName, trigger: 'blur' } // { validator: this.verify.valiateEnName, trigger: 'blur' }
], ],
lawsState: [ lawsState: [
{ required: true, message: '文本状态不能为空', trigger: 'change' } {required: true, message: '文本状态不能为空', trigger: 'change'}
], ],
countryArea: [ countryArea: [
{ required: true, message: '适用区域不能为空', trigger: 'change' } {required: true, message: '适用区域不能为空', trigger: 'change'}
], ],
replaceLawsNum: [ replaceLawsNum: [
{ required: true, message: '代替政策编号不能为空', trigger: 'change' }, {required: true, message: '代替政策编号不能为空', trigger: 'change'},
{ type: 'string', validator: this.verify.validateStandardItem, trigger: 'blur' } {type: 'string', validator: this.verify.validateStandardItem, trigger: 'blur'}
], ],
issueTime: [ issueTime: [
{ required: true, message: '发布日期不能为空', trigger: 'change' } {required: true, message: '发布日期不能为空', trigger: 'change'}
] ]
}, },
formFieldListData: [], // 存储从接口取过来的原始数据 formFieldListData: [], // 存储从接口取过来的原始数据
@@ -950,13 +968,13 @@ export default {
}, },
methods: { methods: {
// 高级检索 // 高级检索
selectMoreBtn () { selectMoreBtn() {
this.showSelectBox = !this.showSelectBox this.showSelectBox = !this.showSelectBox
this.showTableFlag = false this.showTableFlag = false
this.selectLawsStands() this.selectLawsStands()
}, },
// 法规维护人树 // 法规维护人树
getDept () { getDept() {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
let url = 'sys/org/getTree' let url = 'sys/org/getTree'
this.$http.get(url, {}, { this.$http.get(url, {}, {
@@ -986,11 +1004,11 @@ export default {
}) })
}, },
// 删除上传的文件 // 删除上传的文件
delFileInfo (file, fileList) { delFileInfo(file, fileList) {
this.fileInfoList = fileList this.fileInfoList = fileList
}, },
// 上传文件成功回调 // 上传文件成功回调
uploadBackSuccess (res, file, fileList) { uploadBackSuccess(res, file, fileList) {
if (res.ok) { if (res.ok) {
this.fileInfoList = fileList this.fileInfoList = fileList
this.fileInfoList[this.fileInfoList.length - 1].id = res.data.id this.fileInfoList[this.fileInfoList.length - 1].id = res.data.id
@@ -1001,20 +1019,20 @@ export default {
} }
}, },
// 相关附件 上传之前钩子 // 相关附件 上传之前钩子
beforeUpload (file) { beforeUpload(file) {
var filename = file.name var filename = file.name
var index1 = filename.lastIndexOf('.') var index1 = filename.lastIndexOf('.')
var index2 = filename.length var index2 = filename.length
var fileSuffix = filename.substring(index1, index2) var fileSuffix = filename.substring(index1, index2)
// const fileSuffix = file.name.split('.')[1] // 后缀名 // const fileSuffix = file.name.split('.')[1] // 后缀名
//把后缀转大写 //把后缀转大写
if(fileSuffix !== undefined && fileSuffix !== null){ if (fileSuffix !== undefined && fileSuffix !== null) {
fileSuffix = fileSuffix.toUpperCase() fileSuffix = fileSuffix.toUpperCase()
} }
// 判断上传文件格式 // 判断上传文件格式
if (fileSuffix === '.PDF' || fileSuffix === '.DOC' || fileSuffix === '.DOCX' || fileSuffix === '.PPT' if (fileSuffix === '.PDF' || fileSuffix === '.DOC' || fileSuffix === '.DOCX' || fileSuffix === '.PPT'
|| fileSuffix === '.PPTX'|| fileSuffix === '.XLS'|| fileSuffix === '.XLSX' || fileSuffix === '.PPTX' || fileSuffix === '.XLS' || fileSuffix === '.XLSX'
|| fileSuffix === '.PNG'|| fileSuffix === '.JPG'|| fileSuffix === '.JPEG') { || fileSuffix === '.PNG' || fileSuffix === '.JPG' || fileSuffix === '.JPEG') {
return true return true
} else { } else {
this.$message.error('文件' + file.name + '格式不正确,请上传pdf、doc、docx、ppt、pptx、xls、xlsx、png、jpg、jpeg等文件') this.$message.error('文件' + file.name + '格式不正确,请上传pdf、doc、docx、ppt、pptx、xls、xlsx、png、jpg、jpeg等文件')
@@ -1027,24 +1045,24 @@ export default {
} }
return true return true
}, },
moreSearch () { moreSearch() {
this.selectLawsStands() this.selectLawsStands()
this.moreSearchShow = !this.moreSearchShow this.moreSearchShow = !this.moreSearchShow
this.moreSearchBtn = !this.moreSearchBtn this.moreSearchBtn = !this.moreSearchBtn
}, },
// 点击显示隐藏数据列表 按钮事件 // 点击显示隐藏数据列表 按钮事件
isShowTable () { isShowTable() {
this.selectLawsStands() this.selectLawsStands()
this.showTableFlag = !this.showTableFlag this.showTableFlag = !this.showTableFlag
this.selectedAccInfoSearchList = [] // 清空 this.selectedAccInfoSearchList = [] // 清空
}, },
// 点数据搜索 查询按钮 事件 // 点数据搜索 查询按钮 事件
searchLawsStands () { searchLawsStands() {
this.showTableFlag = false this.showTableFlag = false
this.selectLawsStands() this.selectLawsStands()
}, },
// 点击清空查询条件 按钮事件 // 点击清空查询条件 按钮事件
clearSearchLaws () { clearSearchLaws() {
this.sarAccessInfoSearch.standName = '' this.sarAccessInfoSearch.standName = ''
this.sarAccessInfo.standName = '' this.sarAccessInfo.standName = ''
this.sarAccessInfo.standNumber = '' this.sarAccessInfo.standNumber = ''
@@ -1057,14 +1075,14 @@ export default {
this.selectLawsStands() this.selectLawsStands()
}, },
// 数据来源change事件 // 数据来源change事件
dataSourceChange (val) { dataSourceChange(val) {
this.isListType = val === 'TEMP' this.isListType = val === 'TEMP'
this.sarAccessInfoSearch.advanceSearchVOStr = '' this.sarAccessInfoSearch.advanceSearchVOStr = ''
// 国内标准法规可查字段 // 国内标准法规可查字段
if (val === 'INLAND_STAND'){ if (val === 'INLAND_STAND') {
this.selectLawsStands() this.selectLawsStands()
// 海外标准法规可查字段 // 海外标准法规可查字段
}else if (val === 'FOREIGN_STAND'){ } else if (val === 'FOREIGN_STAND') {
this.selectLawsStands() this.selectLawsStands()
// 国内外政策可查字段 // 国内外政策可查字段
} }
@@ -1073,7 +1091,7 @@ export default {
* 点击数据搜索 添加按钮事件 * 点击数据搜索 添加按钮事件
* 判断是否添加重复数据 * 判断是否添加重复数据
*/ */
addSarAccess () { addSarAccess() {
//判断是否是清单类型 //判断是否是清单类型
if (this.selectedAccInfoSearchList.length > 0) { if (this.selectedAccInfoSearchList.length > 0) {
// 追加字段 // 追加字段
@@ -1082,12 +1100,12 @@ export default {
addList = this.sarAccessInfoList.findIndex(items => { addList = this.sarAccessInfoList.findIndex(items => {
return items.id === item.id return items.id === item.id
}) })
if(addList > -1){ if (addList > -1) {
// this.$refs.accessTypeSelect.clearSelection() // this.$refs.accessTypeSelect.clearSelection()
this.$refs.entryTable.clearSelection() this.$refs.entryTable.clearSelection()
this.$refs.searchTable.clearSelection() this.$refs.searchTable.clearSelection()
this.$message.warning('请勿添加重复数据') this.$message.warning('请勿添加重复数据')
} else{ } else {
this.sarAccessInfoList.push(item) this.sarAccessInfoList.push(item)
// this.$refs.accessTypeSelect.clearSelection() // this.$refs.accessTypeSelect.clearSelection()
this.$refs.entryTable.clearSelection() this.$refs.entryTable.clearSelection()
@@ -1102,7 +1120,7 @@ export default {
} }
}, },
// 上移 事件 // 上移 事件
moveUp (index, row) { moveUp(index, row) {
if (index === 0) { if (index === 0) {
this.$message({ this.$message({
message: '已经是列表中第一个素材!', message: '已经是列表中第一个素材!',
@@ -1114,7 +1132,7 @@ export default {
this.$set(this.sarAccessInfoList, index, temp) this.$set(this.sarAccessInfoList, index, temp)
} }
}, },
moveDown (index) { moveDown(index) {
if (index === (this.sarAccessInfoList.length - 1)) { if (index === (this.sarAccessInfoList.length - 1)) {
this.$message({ this.$message({
message: '已经是列表中最后一个素材!', message: '已经是列表中最后一个素材!',
@@ -1143,21 +1161,21 @@ export default {
this.drawerEdit = false this.drawerEdit = false
}, },
// 点击清单条目导入按钮事件 // 点击清单条目导入按钮事件
importmodalFlags () { importmodalFlags() {
this.importmodalFlag = true this.importmodalFlag = true
this.$nextTick(() => { this.$nextTick(() => {
this.$refs['importfile'].clearFiles() this.$refs['importfile'].clearFiles()
}) })
}, },
// 点击 模板下载 按钮事件 // 点击 模板下载 按钮事件
uploadImportModal () { uploadImportModal() {
window.open('/api/lawss/sarSarAccess/exportTemplate?fileName=标准法规清单导入模板.xlsx') window.open('/api/lawss/sarSarAccess/exportTemplate?fileName=标准法规清单导入模板.xlsx')
}, },
/** /**
* 点击清单条目 删除按钮 事件 * 点击清单条目 删除按钮 事件
* 删除不想添加的AccessInfo信息 * 删除不想添加的AccessInfo信息
*/ */
deleteSelectSarAccessInfo () { deleteSelectSarAccessInfo() {
if (this.sarAccessInfoListArry.length > 0) { if (this.sarAccessInfoListArry.length > 0) {
this.$confirm('确认删除选中数据?', '确认删除', { this.$confirm('确认删除选中数据?', '确认删除', {
confirmButtonText: '确定', confirmButtonText: '确定',
@@ -1179,26 +1197,27 @@ export default {
}) })
this.sarAccessInfoListArry = [] this.sarAccessInfoListArry = []
this.$refs.entryTable.clearSelection() this.$refs.entryTable.clearSelection()
}).catch(() => {}) }).catch(() => {
})
} else { } else {
this.$message.error('请选择需要删除的清单条目!') this.$message.error('请选择需要删除的清单条目!')
} }
}, },
// 清单条目 table select事件 // 清单条目 table select事件
sarAccessInfoSelect (selectData) { sarAccessInfoSelect(selectData) {
this.sarAccessInfoListArry = [] this.sarAccessInfoListArry = []
for (let i = 0; i < selectData.length; i++) { for (let i = 0; i < selectData.length; i++) {
this.sarAccessInfoListArry.push(selectData[i].id); this.sarAccessInfoListArry.push(selectData[i].id);
} }
}, },
// 点击取消按钮 返回事件 // 点击取消按钮 返回事件
backCancal () { backCancal() {
this.$router.push({ this.$router.push({
name: 'AccessStandardsAndRegulations' name: 'AccessStandardsAndRegulations'
}) })
}, },
// 提交按钮 事件 // 提交按钮 事件
saveSarAccess () { saveSarAccess() {
this.$refs['sarAccessForm'].validate((valid) => { this.$refs['sarAccessForm'].validate((valid) => {
if (valid) { if (valid) {
let rowlist = [] let rowlist = []
@@ -1209,17 +1228,17 @@ export default {
rowlist.push(this.sarAccessInfoList[i].id) rowlist.push(this.sarAccessInfoList[i].id)
if (this.sarAccessInfoList[i].ssrq === null) { if (this.sarAccessInfoList[i].ssrq === null) {
rowlist1.push(this.sarAccessInfoList[i].ssrq = '-') rowlist1.push(this.sarAccessInfoList[i].ssrq = '-')
}else { } else {
rowlist1.push(this.sarAccessInfoList[i].ssrq.toString()) rowlist1.push(this.sarAccessInfoList[i].ssrq.toString())
} }
if (this.sarAccessInfoList[i].xcxssrqgj === null) { if (this.sarAccessInfoList[i].xcxssrqgj === null) {
rowlist3.push(this.sarAccessInfoList[i].xcxssrqgj = '-') rowlist3.push(this.sarAccessInfoList[i].xcxssrqgj = '-')
}else { } else {
rowlist3.push(this.sarAccessInfoList[i].xcxssrqgj.toString()) rowlist3.push(this.sarAccessInfoList[i].xcxssrqgj.toString())
} }
if (this.sarAccessInfoList[i].zccssrqgj === null) { if (this.sarAccessInfoList[i].zccssrqgj === null) {
rowlist2.push(this.sarAccessInfoList[i].zccssrqgj = '-') rowlist2.push(this.sarAccessInfoList[i].zccssrqgj = '-')
}else { } else {
rowlist2.push(this.sarAccessInfoList[i].zccssrqgj.toString()) rowlist2.push(this.sarAccessInfoList[i].zccssrqgj.toString())
} }
} }
@@ -1290,16 +1309,17 @@ export default {
}, res => { }, res => {
if (res.ok) { if (res.ok) {
this.isNext = true this.isNext = true
this.$message.success('修改成功')
this.$router.push({ this.$router.push({
name: 'AccessStandardsAndRegulations' name: 'AccessStandardsAndRegulations'
}) })
}else { } else {
this.$message.error('已存在此车型类别清单,修改失败') this.$message.error('已存在此车型类别清单,修改失败')
} }
}, e => { }, e => {
}) })
} }
}else { } else {
this.$message.error('请检查表单是否填写正确') this.$message.error('请检查表单是否填写正确')
} }
}) })
@@ -1400,7 +1420,7 @@ export default {
if (item.zrbm !== null || item.zrbm !== "") { if (item.zrbm !== null || item.zrbm !== "") {
let k = (item.zrbm || "").split(',') let k = (item.zrbm || "").split(',')
for (let i in this.zrbmOptions) { for (let i in this.zrbmOptions) {
for (let m = 0; m< k.length; m++) { for (let m = 0; m < k.length; m++) {
if (this.zrbmOptions[i].value === k[m]) { if (this.zrbmOptions[i].value === k[m]) {
k[m] = this.zrbmOptions[i].label k[m] = this.zrbmOptions[i].label
} }
@@ -1412,7 +1432,7 @@ export default {
if (item.nylx !== null) { if (item.nylx !== null) {
let k = (item.nylx || "").split(',') let k = (item.nylx || "").split(',')
for (let i in this.categoryOptions) { for (let i in this.categoryOptions) {
for (let m = 0; m< k.length; m++) { for (let m = 0; m < k.length; m++) {
if (this.categoryOptions[i].value === k[m]) { if (this.categoryOptions[i].value === k[m]) {
k[m] = this.categoryOptions[i].label k[m] = this.categoryOptions[i].label
} }
@@ -1424,7 +1444,7 @@ export default {
if (item.typeApplicable !== null) { if (item.typeApplicable !== null) {
let k = (item.typeApplicable || "").split(',') let k = (item.typeApplicable || "").split(',')
for (let i in this.CycxOptions) { for (let i in this.CycxOptions) {
for (let m = 0; m< k.length; m++) { for (let m = 0; m < k.length; m++) {
if (this.CycxOptions[i].value === k[m]) { if (this.CycxOptions[i].value === k[m]) {
k[m] = this.CycxOptions[i].label k[m] = this.CycxOptions[i].label
} }
@@ -1436,7 +1456,7 @@ export default {
if (item.sycpx !== null) { if (item.sycpx !== null) {
let k = (item.sycpx || "").split(',') let k = (item.sycpx || "").split(',')
for (let i in this.sycpxOptions) { for (let i in this.sycpxOptions) {
for (let m = 0; m< k.length; m++) { for (let m = 0; m < k.length; m++) {
if (this.sycpxOptions[i].value === k[m]) { if (this.sycpxOptions[i].value === k[m]) {
k[m] = this.sycpxOptions[i].label k[m] = this.sycpxOptions[i].label
} }
@@ -1448,7 +1468,7 @@ export default {
if (item.syrz !== null) { if (item.syrz !== null) {
let k = (item.syrz || "").split(',') let k = (item.syrz || "").split(',')
for (let i in this.syrzOptions) { for (let i in this.syrzOptions) {
for (let m = 0; m< k.length; m++) { for (let m = 0; m < k.length; m++) {
if (this.syrzOptions[i].value === k[m]) { if (this.syrzOptions[i].value === k[m]) {
k[m] = this.syrzOptions[i].label k[m] = this.syrzOptions[i].label
} }
@@ -1473,7 +1493,7 @@ export default {
this.$set(item, 'cycvppscn', '') this.$set(item, 'cycvppscn', '')
this.$set(item, 'kccvppsbm', '') this.$set(item, 'kccvppsbm', '')
this.$set(item, 'kccvppscn', '') this.$set(item, 'kccvppscn', '')
}else { } else {
this.$set(item, 'zccssrqgj', item.attrInfoMap.ZCCSSRQ) this.$set(item, 'zccssrqgj', item.attrInfoMap.ZCCSSRQ)
this.$set(item, 'xcxssrqgj', item.attrInfoMap.XCXSSRQ) this.$set(item, 'xcxssrqgj', item.attrInfoMap.XCXSSRQ)
this.$set(item, 'ssrq', item.attrInfoMap.SSRQ) this.$set(item, 'ssrq', item.attrInfoMap.SSRQ)
@@ -1490,7 +1510,7 @@ export default {
}, },
// 查询数据搜索 table 数据 // 查询数据搜索 table 数据
pageInfo() { pageInfo() {
StandardsInfoPage(this.sarAccessInfoSearch).then(res =>{ StandardsInfoPage(this.sarAccessInfoSearch).then(res => {
this.sarAccessInfoSearchList = res.data.list this.sarAccessInfoSearchList = res.data.list
this.sarAccessInfoSearchList.forEach(item => { this.sarAccessInfoSearchList.forEach(item => {
if (item.standYear === null) { if (item.standYear === null) {
@@ -1506,7 +1526,7 @@ export default {
}) })
}, },
// 查询按钮 // 查询按钮
selectLawsStands () { selectLawsStands() {
if (this.sarAccessInfoSearch.dataSource === 'INLAND_STAND') { if (this.sarAccessInfoSearch.dataSource === 'INLAND_STAND') {
this.sarAccessInfoSearch.standType = 'INLAND' this.sarAccessInfoSearch.standType = 'INLAND'
this.pageInfo() this.pageInfo()
@@ -1517,7 +1537,7 @@ export default {
}, },
/** 高级查询查询按钮*/ /** 高级查询查询按钮*/
selectPage() { selectPage() {
StandardsInfoPage(this.sarAccessInfo).then(res =>{ StandardsInfoPage(this.sarAccessInfo).then(res => {
this.sarAccessInfoSearchList = res.data.list this.sarAccessInfoSearchList = res.data.list
this.sarAccessInfoSearchList.forEach(item => { this.sarAccessInfoSearchList.forEach(item => {
if (item.standYear === null) { if (item.standYear === null) {
@@ -1543,11 +1563,11 @@ export default {
} }
}, },
// 数据搜索table判断checked状态 // 数据搜索table判断checked状态
selectable (row) { selectable(row) {
return row.isRelateAccess === '1' return row.isRelateAccess === '1'
}, },
// 数据搜索 table select事件 // 数据搜索 table select事件
sarAccessInfoSearchSelect (val) { sarAccessInfoSearchSelect(val) {
this.selectedAccInfoSearchList = val this.selectedAccInfoSearchList = val
this.selectedAccInfoSearchList.forEach(item => { this.selectedAccInfoSearchList.forEach(item => {
this.addWord(item) this.addWord(item)
@@ -1555,32 +1575,32 @@ export default {
this.changeText(this.selectedAccInfoSearchList) this.changeText(this.selectedAccInfoSearchList)
}, },
// 数据搜索 清单类型 table select事件 // 数据搜索 清单类型 table select事件
accessSarTypeSelect (selectData) { accessSarTypeSelect(selectData) {
this.accessSarTypeList = selectData this.accessSarTypeList = selectData
}, },
// 数据搜索table分页页码改变回调 // 数据搜索table分页页码改变回调
drawerPageChange (page) { drawerPageChange(page) {
this.drawerPage = page this.drawerPage = page
this.sarAccessInfoSearch.page = this.drawerPage this.sarAccessInfoSearch.page = this.drawerPage
this.selectLawsStands() this.selectLawsStands()
}, },
// 数据搜索table分页条数改变回调 // 数据搜索table分页条数改变回调
drawerPageSizeChange () { drawerPageSizeChange() {
this.sarAccessInfoSearch.pageSize = this.$store.getters.userInfo.configContent this.sarAccessInfoSearch.pageSize = this.$store.getters.userInfo.configContent
this.selectLawsStands() this.selectLawsStands()
}, },
// 点击 导出、全部导出按钮事件 // 点击 导出、全部导出按钮事件
exportAccessInfo (type) { exportAccessInfo(type) {
if (this.sarAccessInfoListArry.length > 0) { if (this.sarAccessInfoListArry.length > 0) {
this.exportTestItemNameFlag = true this.exportTestItemNameFlag = true
this.exportName = '' this.exportName = ''
}else { } else {
this.$message.warning('请选择数据进行导出') this.$message.warning('请选择数据进行导出')
} }
}, },
// 导出确定功能 // 导出确定功能
exportTestItem () { exportTestItem() {
let exportNames = this.exportName let exportNames = this.exportName
let exportList = [] let exportList = []
if (this.sarAccessInfoListArry.length > 0) { if (this.sarAccessInfoListArry.length > 0) {
@@ -1593,7 +1613,7 @@ export default {
for (var accessInfo in exportList) { for (var accessInfo in exportList) {
accIdAndrestype.push(exportList[accessInfo].id) accIdAndrestype.push(exportList[accessInfo].id)
} }
const exportURL = interfaceUrl + 'sarLawsAttrDetailedList/sar-laws-attr-detailed-list/ExportLawsById?'+ '&exportType=apart'+ '&ids=' + accIdAndrestype.join(',')+ '&exportName=' + this.exportName const exportURL = interfaceUrl + 'sarLawsAttrDetailedList/sar-laws-attr-detailed-list/ExportLawsById?' + '&exportType=apart' + '&ids=' + accIdAndrestype.join(',') + '&exportName=' + this.exportName
window.open(exportURL) window.open(exportURL)
// window.location.href = '/api/lawss/sarSarAccessInfo/exportSarSarAccessInfo?idAndSartypeList=' + accIdAndrestype.join(',') + '&exportType=apart' + '&exportName=' + exportNames // window.location.href = '/api/lawss/sarSarAccessInfo/exportSarSarAccessInfo?idAndSartypeList=' + accIdAndrestype.join(',') + '&exportType=apart' + '&exportName=' + exportNames
this.$message.success('导出信息成功') this.$message.success('导出信息成功')
@@ -1603,11 +1623,11 @@ export default {
this.exportTestItemNameFlag = false this.exportTestItemNameFlag = false
}, },
// 导出取消按钮关闭模态、置空 // 导出取消按钮关闭模态、置空
cancal () { cancal() {
this.exportTestItemNameFlag = false this.exportTestItemNameFlag = false
}, },
// 导入 beforeUpload 事件 // 导入 beforeUpload 事件
handleFormatbeforeUpload (file) { handleFormatbeforeUpload(file) {
let filename = file.name let filename = file.name
let index1 = filename.lastIndexOf('.') let index1 = filename.lastIndexOf('.')
let index2 = filename.length let index2 = filename.length
@@ -1625,7 +1645,7 @@ export default {
return true return true
}, },
// 导入成功事件 // 导入成功事件
importFileSuccess (response, file, fileList) { importFileSuccess(response, file, fileList) {
var a var a
var b = '' var b = ''
if (response.data) { if (response.data) {
@@ -1672,7 +1692,7 @@ export default {
} }
}, },
// 点击清单条目 新增按钮 事件 // 点击清单条目 新增按钮 事件
addEntry () { addEntry() {
this.editAddType = 1 this.editAddType = 1
this.addEditTitle = '新增' this.addEditTitle = '新增'
this.isDisabled = false this.isDisabled = false
@@ -1685,13 +1705,13 @@ export default {
this.addEntryForm.authObjId = '' this.addEntryForm.authObjId = ''
this.addEntryForm.proEssessUserId = '' this.addEntryForm.proEssessUserId = ''
this.addEntryForm.sarType = 'TEMP' this.addEntryForm.sarType = 'TEMP'
this.addEntryForm.attrField='' this.addEntryForm.attrField = ''
this.$nextTick(() => { this.$nextTick(() => {
this.$refs['addEntryForm'].resetFields() this.$refs['addEntryForm'].resetFields()
}) })
}, },
// 请求部门结构树 // 请求部门结构树
getOrgTreeSource () { getOrgTreeSource() {
this.$http.get('sys/org/getTree', {}, {_this: this}, this.$http.get('sys/org/getTree', {}, {_this: this},
res => { res => {
if (res.ok) { if (res.ok) {
@@ -1714,7 +1734,7 @@ export default {
}) })
}, },
// 新增提交事件 // 新增提交事件
saveOrUpdateStands () { saveOrUpdateStands() {
this.isSubmit = true this.isSubmit = true
this.$refs['addEntryForm'].validate((valid) => { this.$refs['addEntryForm'].validate((valid) => {
if (valid) { if (valid) {
@@ -1768,7 +1788,8 @@ export default {
this.isSubmit = false this.isSubmit = false
this.$message.warning('标准编号已存在') this.$message.warning('标准编号已存在')
} }
}, e => {}) }, e => {
})
} else { } else {
this.isSubmit = false this.isSubmit = false
this.$message({ this.$message({
@@ -1779,7 +1800,7 @@ export default {
}) })
}, },
// 标准号验证 // 标准号验证
validateStandNumber (standinfo) { validateStandNumber(standinfo) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
let obj = JSON.parse(JSON.stringify(standinfo)) let obj = JSON.parse(JSON.stringify(standinfo))
this.$http.post('lawss/sarStandardsInfo/validateStandNumber', obj, { this.$http.post('lawss/sarStandardsInfo/validateStandNumber', obj, {
@@ -1796,20 +1817,20 @@ export default {
}) })
}, },
// 表单清空 // 表单清空
resetForm () { resetForm() {
this.isSubmit = false this.isSubmit = false
this.$refs['addEntryForm'].resetFields() this.$refs['addEntryForm'].resetFields()
}, },
/** /**
* 获取新增弹框的表单 * 获取新增弹框的表单
*/ */
getAddFormFieldList (ruKu) { getAddFormFieldList(ruKu) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
this.$http.get('lawss/sarStandAttrDetails/list', {}, {_this: this}, this.$http.get('lawss/sarStandAttrDetails/list', {}, {_this: this},
res => { res => {
if (res.ok) { if (res.ok) {
// const { data: { STAND: data } } = res // const { data: { STAND: data } } = res
const { data = {} } = res const {data = {}} = res
this.formFieldListData = data[ruKu] || [] this.formFieldListData = data[ruKu] || []
// this.resolveFormFieldList() // this.resolveFormFieldList()
resolve() resolve()
@@ -1819,7 +1840,7 @@ export default {
}) })
}) })
}, },
resolveFormFieldList (isEdit) { resolveFormFieldList(isEdit) {
const data = this.formFieldListData const data = this.formFieldListData
this.formFieldList = data.map((item) => { this.formFieldList = data.map((item) => {
// FO 法规 // FO 法规
@@ -1846,7 +1867,7 @@ export default {
/** /**
* 展示位置 * 展示位置
*/ */
queryDisplayLocation (accessType) { queryDisplayLocation(accessType) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
let sarType = accessType === 'INLAND_STAND' ? 'STAND' : accessType === 'FOREIGN_STAND' ? 'INLAND_STAND' : 'FOREIGN_LAWS' let sarType = accessType === 'INLAND_STAND' ? 'STAND' : accessType === 'FOREIGN_STAND' ? 'INLAND_STAND' : 'FOREIGN_LAWS'
this.$http.get('lawssBase/utArea/getAreaList', { this.$http.get('lawssBase/utArea/getAreaList', {
@@ -1862,7 +1883,7 @@ export default {
}) })
}, },
// 点击查看 // 点击查看
handlePreview (data) { handlePreview(data) {
let routerName = data.standType === 'FOREIGN_LAWS' ? 'OtherLawsDetails' : 'OtherStandardDetails' let routerName = data.standType === 'FOREIGN_LAWS' ? 'OtherLawsDetails' : 'OtherStandardDetails'
let routeUrl = this.$router.resolve({ let routeUrl = this.$router.resolve({
name: routerName, name: routerName,
@@ -1874,7 +1895,7 @@ export default {
window.open(routeUrl.href, '_blank') window.open(routeUrl.href, '_blank')
}, },
// 请求上传的文件信息 // 请求上传的文件信息
getFileInfo () { getFileInfo() {
this.$http.get('att/attFile/getMultiFileInfos', { this.$http.get('att/attFile/getMultiFileInfos', {
fileIds: this.$route.query.fileIds fileIds: this.$route.query.fileIds
}, { }, {
@@ -1895,7 +1916,7 @@ export default {
}) })
}, },
// 获取工作组信息下拉框信息 // 获取工作组信息下拉框信息
getGzzOption () { getGzzOption() {
this.$http.get('lawss/sarGroupMenu/queryGroup', '', { this.$http.get('lawss/sarGroupMenu/queryGroup', '', {
_this: this _this: this
}, res => { }, res => {
@@ -1912,7 +1933,7 @@ export default {
}) })
}, },
// 新增、编辑标准时验证标准编号是否重复 // 新增、编辑标准时验证标准编号是否重复
validCode (rule, value, callback) { validCode(rule, value, callback) {
let find = 0 let find = 0
this.sarAccessInfoList.map(item => { this.sarAccessInfoList.map(item => {
if (item.code === value) { if (item.code === value) {
@@ -1927,7 +1948,7 @@ export default {
callback() callback()
}, },
// 新增、编辑项目评估角色change事件 // 新增、编辑项目评估角色change事件
roleListChange (val) { roleListChange(val) {
this.ROLELIST.map(item => { this.ROLELIST.map(item => {
if (item.value === val) { if (item.value === val) {
this.addEntryForm.proEssessUser = item.label this.addEntryForm.proEssessUser = item.label
@@ -1935,7 +1956,7 @@ export default {
}) })
}, },
// 表格回显要求类型 // 表格回显要求类型
getAskType (val) { getAskType(val) {
let askTypeName = '' let askTypeName = ''
this.accessSarTypeOptions.map(item => { this.accessSarTypeOptions.map(item => {
if (item.value === val) { if (item.value === val) {
@@ -1945,7 +1966,7 @@ export default {
return askTypeName return askTypeName
}, },
// 表格回显监管类型 // 表格回显监管类型
getAskNature (val) { getAskNature(val) {
if (!val) { if (!val) {
val = '' val = ''
} }
@@ -1955,7 +1976,7 @@ export default {
return askTypeName.join(',') return askTypeName.join(',')
}, },
onChecked () { onChecked() {
this.sarStandardsInfoEO.FO = '' this.sarStandardsInfoEO.FO = ''
this.sarStandardsInfoEO.XMPGJS = '' this.sarStandardsInfoEO.XMPGJS = ''
}, },
@@ -1986,7 +2007,7 @@ export default {
}) })
}, },
// 将文本状态的id与name对应 // 将文本状态的id与name对应
setMap(data){ setMap(data) {
data.forEach(item => { data.forEach(item => {
this.$set(this.textStatusMap, item.value, item.label) this.$set(this.textStatusMap, item.value, item.label)
}) })
@@ -2001,7 +2022,7 @@ export default {
}, },
watch: { watch: {
// 监听 清单类型 // 监听 清单类型
isListType (newVal, oldVal) { isListType(newVal, oldVal) {
this.sarAccessInfoSearchList = [] this.sarAccessInfoSearchList = []
this.sarAccessInfoSearch.page = 1 this.sarAccessInfoSearch.page = 1
this.drawerTotal = 0 this.drawerTotal = 0
@@ -2012,8 +2033,8 @@ export default {
computed: { computed: {
...mapGetters(['getAccessStandardRegRow']), ...mapGetters(['getAccessStandardRegRow']),
}, },
mounted () { mounted() {
this.zqaId =this.$route.query.id; this.zqaId = this.$route.query.id;
this.page = this.$route.query.page this.page = this.$route.query.page
this.Size = this.$route.query.Size this.Size = this.$route.query.Size
//this.getData() //this.getData()
@@ -2079,40 +2100,46 @@ export default {
} }
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
.list-of-standards-and-regulations-details{ .list-of-standards-and-regulations-details {
height: calc(~'100% - 50px'); height: calc(~'100% - 50px');
background: #ffffff; background: #ffffff;
overflow-y: auto; overflow-y: auto;
.basic-information{
& > .search-area{ .basic-information {
& > .left{ & > .search-area {
& > .left {
width: 100%; width: 100%;
} }
} }
} }
.basic-information, .data-search, .list-entry{
.basic-information, .data-search, .list-entry {
padding-top: 0.1px; padding-top: 0.1px;
background: #ffffff; background: #ffffff;
.el-divider{
.el-divider__text{ .el-divider {
.el-divider__text {
color: #409EFF; color: #409EFF;
font-size: 16px; font-size: 16px;
} }
} }
} }
.data-search{
.standards-drawer-table-one{ .data-search {
.standards-drawer-table-one {
position: relative; position: relative;
padding: 0 10px; padding: 0 10px;
height: 356px; height: 356px;
} }
} }
.list-entry{
.el-tabs{ .list-entry {
.el-tabs {
padding: 0 10px; padding: 0 10px;
} }
} }
.footer{
.footer {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
padding: 0 10px; padding: 0 10px;
@@ -2123,32 +2150,39 @@ export default {
text-align: right; text-align: right;
} }
} }
.labelBox { .labelBox {
/deep/ .el-form-item__label { /deep/ .el-form-item__label {
padding-right: 5px; padding-right: 5px;
padding-left: 23px; padding-left: 23px;
} }
} }
.labelBox1 { .labelBox1 {
/deep/ .el-form-item__label { /deep/ .el-form-item__label {
padding-right: 5px; padding-right: 5px;
} }
} }
.un-select { .un-select {
user-select: none; user-select: none;
} }
::v-deep .el-drawer__header{
&>span:first-child{ ::v-deep .el-drawer__header {
outline: none!important; & > span:first-child {
outline: none !important;
} }
} }
::v-deep .el-drawer{
outline: none!important; ::v-deep .el-drawer {
outline: none !important;
} }
/deep/.wx-resolve {
/deep/ .wx-resolve {
.el-select__tags { .el-select__tags {
padding: 4px; padding: 4px;
} }
.el-tag { .el-tag {
margin: 2px; margin: 2px;
} }