Compare commits

..

No commits in common. "509aa22460f5ccdd7d51074054e258cfc8ea750c" and "d270d23494b47f76e3cb4c9808d011b6b17a025c" have entirely different histories.

28 changed files with 105 additions and 204 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -235,19 +235,6 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="4">
<el-form-item label="负责部门" label-width="80px">
<SelectTree
ref="deptTree_Select"
:clearable="false"
:key="waitFor.DEPARTMENT_ID"
:options="treeDataDepart"
:props="defaultProps"
v-model="waitFor.DEPARTMENT_ID"
placeholder="请选择部门"
style="width: 100%;"/>
</el-form-item>
</el-col>
<el-col :span="4" label-width="80px"> <el-col :span="4" label-width="80px">
<el-form-item> <el-form-item>
<el-button v-waves class="filter-item" type="success" icon="el-icon-refresh" @click="getDevice"> <el-button v-waves class="filter-item" type="success" icon="el-icon-refresh" @click="getDevice">
@ -417,10 +404,8 @@ export default {
POSTNAME: '', POSTNAME: '',
USERNAME: '', USERNAME: '',
varList: [], varList: [],
idListFcS: [], idListFcS: []
DEPARTMENT_ID: ''
}, },
treeDataDepart: [],
pointList: [], pointList: [],
pointCode: '', pointCode: '',
// ------------end // ------------end
@ -546,8 +531,7 @@ export default {
FIRE_DEVICE_TYPE_ID: this.waitFor.FIRE_DEVICE_TYPE_ID, FIRE_DEVICE_TYPE_ID: this.waitFor.FIRE_DEVICE_TYPE_ID,
FIRE_POINT_ID: this.waitFor.FIRE_POINT_ID, FIRE_POINT_ID: this.waitFor.FIRE_POINT_ID,
FIRE_DEVICE_CODE: this.waitFor.FIRE_DEVICE_CODE, FIRE_DEVICE_CODE: this.waitFor.FIRE_DEVICE_CODE,
FIRE_REGION_ID: this.waitFor.FIRE_REGION_ID, FIRE_REGION_ID: this.waitFor.FIRE_REGION_ID
DEPARTMENT_ID: this.waitFor.DEPARTMENT_ID
} }
).then((data) => { ).then((data) => {
this.listLoading = false this.listLoading = false
@ -603,7 +587,6 @@ export default {
this.treeData.forEach((item) => { this.treeData.forEach((item) => {
item.isDisabled = true item.isDisabled = true
}) })
this.treeDataDepart = JSON.parse(data.zTreeNodes)
resolve() resolve()
}).catch((e) => { }).catch((e) => {
}) })
@ -845,7 +828,6 @@ export default {
this.waitFor.FIRE_DEVICE_ID = '' this.waitFor.FIRE_DEVICE_ID = ''
this.waitFor.FIRE_DEVICE_CODE = '' this.waitFor.FIRE_DEVICE_CODE = ''
this.waitFor.FIRE_POINT_NAME = '' this.waitFor.FIRE_POINT_NAME = ''
this.waitFor.DEPARTMENT_ID = ''
this.pointList = [] this.pointList = []
this.getList() this.getList()
this.getDevice() this.getDevice()

View File

@ -489,7 +489,7 @@ export default {
'data_id': '00002', 'data_id': '00002',
'MAP_POINT_NAME': dianweiName, 'MAP_POINT_NAME': dianweiName,
'name': '', 'name': '',
'point_type': '港口', 'point_type': '',
'type': '', 'type': '',
'descr': '', 'descr': '',
'position': { 'position': {

View File

@ -26,13 +26,6 @@
style="width: 100%;"/> style="width: 100%;"/>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="4">
<el-form-item label="是否标点" label-width="110px">
<el-select v-model="IS_PUNCTUATION" clearable placeholder="请选择" style="width: 100%;">
<el-option v-for="item in punctuationStatusList" :key="item.value" :label="item.label" :value="item.value" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="4"> <el-col :span="4">
<el-form-item label-width="10px"> <el-form-item label-width="10px">
<el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery"> <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery">
@ -67,12 +60,6 @@
<el-table-column prop="DEVICE_COUNT" label="点位下消防器材数"/> <el-table-column prop="DEVICE_COUNT" label="点位下消防器材数"/>
<el-table-column prop="DEPARTMENT_NAME" label="负责部门"/> <el-table-column prop="DEPARTMENT_NAME" label="负责部门"/>
<el-table-column prop="USERNAME" label="负责人"/> <el-table-column prop="USERNAME" label="负责人"/>
<el-table-column prop="ISPUNCTUATION" label="是否标点">
<template slot-scope="{row}">
<el-tag v-if="row.ISPUNCTUATION == 0" type="success"></el-tag>
<el-tag v-else type="danger"></el-tag>
</template>
</el-table-column>
<el-table-column label="操作" width="380"> <el-table-column label="操作" width="380">
<template slot-scope="{row}"> <template slot-scope="{row}">
<el-button <el-button
@ -217,18 +204,7 @@ export default {
USER_ID: [{ required: true, message: '请选择负责人', trigger: 'change' }] USER_ID: [{ required: true, message: '请选择负责人', trigger: 'change' }]
}, },
deptTreeData: [], deptTreeData: [],
userList: [], userList: []
punctuationStatusList: [
{
value: 0,
label: '是'
},
{
value: 1,
label: '否'
}
],
IS_PUNCTUATION: ''
} }
}, },
watch: { watch: {
@ -287,8 +263,7 @@ export default {
{ {
FIRE_POINT_NAME: this.FIRE_POINT_NAME, FIRE_POINT_NAME: this.FIRE_POINT_NAME,
FIRE_POINT_CODE: this.FIRE_POINT_CODE, FIRE_POINT_CODE: this.FIRE_POINT_CODE,
DEPARTMENT_ID: this.selectForm.DEPARTMENT_ID, DEPARTMENT_ID: this.selectForm.DEPARTMENT_ID
IS_PUNCTUATION: this.IS_PUNCTUATION
} }
).then((data) => { ).then((data) => {
this.listLoading = false this.listLoading = false
@ -301,7 +276,6 @@ export default {
}, goKeyReset() { }, goKeyReset() {
this.FIRE_POINT_NAME = '' this.FIRE_POINT_NAME = ''
this.FIRE_POINT_CODE = '' this.FIRE_POINT_CODE = ''
this.IS_PUNCTUATION = ''
this.selectForm = { this.selectForm = {
DEPARTMENT_ID: '' DEPARTMENT_ID: ''
} }

View File

@ -1087,7 +1087,6 @@ export default {
const corpId = data.varList[i].CORPINFO_ID const corpId = data.varList[i].CORPINFO_ID
if (corpId === '1e6dbbe16004402f8d2c0e52afd9a676' || if (corpId === '1e6dbbe16004402f8d2c0e52afd9a676' ||
corpId === '3a854eefa7894e06aaa1a2611bca80f6' || corpId === '3a854eefa7894e06aaa1a2611bca80f6' ||
corpId === '5cee11f6152d42e0a08ae38dc6abcfdf' ||
corpId === '020578a4c1f04bc692ee25145c2efbe5' || corpId === '90966974de3c4b83aca6f8fd6432d5c2') { corpId === '020578a4c1f04bc692ee25145c2efbe5' || corpId === '90966974de3c4b83aca6f8fd6432d5c2') {
this.groupCorpList.push(data.varList[i]) this.groupCorpList.push(data.varList[i])
} }

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="shipin"> <div class="shipin">
<div class="block1"> <div class="block1">
<layout-title title="视频定位"/> <layout-title title="视频状态"/>
<div class="options"> <div class="options">
<div class="option"> <div class="option">
<div class="leftimg"/> <div class="leftimg"/>
@ -15,7 +15,7 @@
</div> </div>
</div> </div>
<div class="block2"> <div class="block2">
<layout-title title="重点工程"/> <layout-title title="区域报警数"/>
<div class="options"> <div class="options">
<div v-for="(item,index) in block2OptionsList" :key="index" class="option"> <div v-for="(item,index) in block2OptionsList" :key="index" class="option">
<div class="circular"><img :src="item.img" alt=""></div> <div class="circular"><img :src="item.img" alt=""></div>
@ -26,25 +26,26 @@
</div> </div>
</div> </div>
</div> </div>
<!-- <div class="block3">--> <div class="block3">
<!-- <layout-title title="报警记录"/>--> <layout-title title="报警记录"/>
<!-- <div class="content">--> <div class="content">
<!-- <div class="table">-->
<!-- <div class="tr">--> <div class="table">
<!-- <div class="td">防区</div>--> <div class="tr">
<!-- <div class="td">摄像头名称</div>--> <div class="td">防区</div>
<!-- <div class="td">时间</div>--> <div class="td">摄像头名称</div>
<!-- </div>--> <div class="td">时间</div>
<!-- <div class="scroll">--> </div>
<!-- <div v-for="(item,index) in block3List" :key="index" class="tr">--> <div class="scroll">
<!-- <div class="td line1">{{ item.region }}</div>--> <div v-for="(item,index) in block3List" :key="index" class="tr">
<!-- <div class="td">{{ item.name }}</div>--> <div class="td line1">{{ item.region }}</div>
<!-- <div class="td">{{ item.time }}</div>--> <div class="td">{{ item.name }}</div>
<!-- </div>--> <div class="td">{{ item.time }}</div>
<!-- </div>--> </div>
<!-- </div>--> </div>
<!-- </div>--> </div>
<!-- </div>--> </div>
</div>
</div> </div>
</template> </template>
@ -78,25 +79,17 @@ export default {
{ {
lable: '视频总数', lable: '视频总数',
count: 0 count: 0
},
{
lable: '在线数量',
count: 0
},
{
lable: '离线数量',
count: 0
} }
], ],
block2OptionsList: [ block2OptionsList: [
{ {
img: require('../../../assets/map/gangkou_index/point/ico15.png'), img: require('../../../assets/map/bianjie/img1.png'),
label: '重点工程总数', label: '码头',
count: 0 count: 0
}, },
{ {
img: require('../../../assets/map/gangkou_index/point/ico30.png'), img: require('../../../assets/map/bianjie/img2.png'),
label: '重点工程开工数量', label: '油罐区域',
count: 0 count: 0
} }
], ],
@ -170,70 +163,33 @@ export default {
this.initgetTable() this.initgetTable()
}, },
methods: { methods: {
//
// initCount() {
// requestFN(
// '/map/mapPlatformelectronic/listAll',
// {
// CORPINFO_ID: this.corpInfoId,
// AREA: this.area
// }
// ).then((data) => {
// this.block1OptionsList[0].count = data.allForMap
// })
// },
// //
initCount() { initCount() {
requestFN( requestFN(
'/map/keyProject/listAllLocation', '/map/mapPlatformelectronic/listAll',
{ {
CORPINFO_ID: this.corpInfoId, CORPINFO_ID: this.corpInfoId,
AREA: this.area, AREA: this.area
TYPE: 'VIDEO',
GANGKOU: this.gangkou
} }
).then((data) => { ).then((data) => {
this.block1OptionsList[0].count = data.varList.length this.block1OptionsList[0].count = data.allForMap
data.varList.forEach((item) => {
if (item.ONLINE_STATUS === '0') {
this.block1OptionsList[1].count++
} else {
this.block1OptionsList[2].count++
}
})
}) })
}, },
//
// initgetTable() {
// requestFN(
// '/map/mapPlatformelectronic/listAllByArea',
// {
// CORPINFO_ID: this.corpInfoId,
// AREA: this.area
// }
// ).then((data) => {
// data.varList.forEach(item => {
// if (item.SUOSHUQUYU === '2') {
// this.block2OptionsList[0].count = item.co
// } else if (item.SUOSHUQUYU === '1') {
// this.block2OptionsList[1].count = item.co
// }
// })
// })
// },
// //
initgetTable() { initgetTable() {
requestFN( requestFN(
'/outsourced/listForCount', '/map/mapPlatformelectronic/listAllByArea',
{ {
CORPINFO_ID: this.corpInfoId CORPINFO_ID: this.corpInfoId,
AREA: this.area
} }
).then((data) => { ).then((data) => {
this.block2OptionsList[0].count = data.varList.length
data.varList.forEach(item => { data.varList.forEach(item => {
if (item.STATE == 1) { if (item.SUOSHUQUYU === '2') {
this.block2OptionsList[1].count++ this.block2OptionsList[0].count = item.co
} else if (item.SUOSHUQUYU === '1') {
this.block2OptionsList[1].count = item.co
} }
}) })
}) })

View File

@ -7,9 +7,7 @@
<table class="table-ui"> <table class="table-ui">
<tr> <tr>
<td class="bbg-transparent">视频名称</td> <td class="bbg-transparent">视频名称</td>
<td>{{ pd.VIDEONAME }}</td> <td colspan="3">{{ pd.VIDEONAME }}</td>
<td class="bbg-transparent">在线状态</td>
<td>{{ pd.ONLINE_STATUS }}</td>
</tr> </tr>
<tr> <tr>
<td class="bbg-transparent">所属重点工程</td> <td class="bbg-transparent">所属重点工程</td>

View File

@ -1826,14 +1826,6 @@ export default {
} else { } else {
point.infoname = varList[i].NAME point.infoname = varList[i].NAME
} }
// 线
if (point.icon_type.indexOf('6_1') > -1) {
if (varList[i].ONLINE_STATUS === '0') {
point.icon_type = point.icon_type + '_online'
} else {
point.icon_type = point.icon_type + '_offline'
}
}
points.push(point) points.push(point)
} }
if (this.gangkouActive === '00004' && urlType === 'carPosition') { if (this.gangkouActive === '00004' && urlType === 'carPosition') {

View File

@ -43,8 +43,6 @@ const img5_0 = require('../../../assets/map/gangkou_index/point/ico26.png')
const img6_0 = require('../../../assets/map/gangkou_index/point/ico30.png') const img6_0 = require('../../../assets/map/gangkou_index/point/ico30.png')
const img6_1 = require('../../../assets/map/gangkou_index/point/ico31.png') const img6_1 = require('../../../assets/map/gangkou_index/point/ico31.png')
const img6_1_online = require('../../../assets/map/gangkou_index/point/ico31_online.png')
const img6_1_offline = require('../../../assets/map/gangkou_index/point/ico31_offline.png')
const img7_0 = require('../../../assets/map/gangkou_index/point/ico26.png') const img7_0 = require('../../../assets/map/gangkou_index/point/ico26.png')
@ -63,8 +61,7 @@ const imgMap = {
img6_0, img6_1, img6_0, img6_1,
img7_0, img7_0,
img8_0, img8_1, img8_2, img8_3, img8_0, img8_1, img8_2, img8_3,
cfd_img1_0, cfd_img1_0_1, cfd_img1_0_2, cfd_img1_0_3, cfd_img1_0, cfd_img1_0_1, cfd_img1_0_2, cfd_img1_0_3
img6_1_online, img6_1_offline
} }
export { imgMap } export { imgMap }

View File

@ -7,7 +7,7 @@
<el-form-item label="安全操作规程名称:" prop="REMARKS"> <el-form-item label="安全操作规程名称:" prop="REMARKS">
<el-input v-model="form.REMARKS" style="width: 100%"/> <el-input v-model="form.REMARKS" style="width: 100%"/>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="类型:" prop="TYPES"> <el-form-item label="类型:" prop="TYPES">
<multiple-choice :dynamic-tags.sync="form.TYPES" :labels="typeList" :row-key="key.typeKey" :row-name="key.typeName"/> <multiple-choice :dynamic-tags.sync="form.TYPES" :labels="typeList" :row-key="key.typeKey" :row-name="key.typeName"/>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="国民经济行业类型:" prop="SPECIFICATION_TYPES"> <el-form-item v-if="false" label="国民经济行业类型:" prop="SPECIFICATION_TYPES">

View File

@ -13,7 +13,7 @@
<el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery"> <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery">
搜索 搜索
</el-button> </el-button>
<el-button v-waves v-if="false" class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition">
添加其他搜索条件 添加其他搜索条件
</el-button> </el-button>
<el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage">
@ -47,7 +47,7 @@
align="center"/> align="center"/>
<el-table-column type="index" label="序号" width="50" align="center" /> <el-table-column type="index" label="序号" width="50" align="center" />
<el-table-column align="center" prop="REMARKS" label="安全操作规程名称" /> <el-table-column align="center" prop="REMARKS" label="安全操作规程名称" />
<el-table-column v-if="false" align="center" prop="TYPES" label="类型" > <el-table-column align="center" prop="TYPES" label="类型" >
<template slot-scope="{row}"> <template slot-scope="{row}">
<el-tag <el-tag
v-for="tag in row.TYPES" v-for="tag in row.TYPES"
@ -71,7 +71,7 @@
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column v-if="false" align="center" prop="SPECIFICATION_TYPES" label="国民经济行业类型" width="300px"> <el-table-column align="center" prop="SPECIFICATION_TYPES" label="国民经济行业类型" width="300px">
<template slot-scope="{row}"> <template slot-scope="{row}">
<div v-if="(row.SPECIFICATION_TYPES && row.SPECIFICATION_TYPES.length > 0) && ((!row.CATEGORY_LIST) || (!row.CATEGORY_LIST[0]) || (row.CATEGORY_LIST[0].CATEGORY_ID !== '8051d985a2bc406a83ea9360b64182b2')) "> <div v-if="(row.SPECIFICATION_TYPES && row.SPECIFICATION_TYPES.length > 0) && ((!row.CATEGORY_LIST) || (!row.CATEGORY_LIST[0]) || (row.CATEGORY_LIST[0].CATEGORY_ID !== '8051d985a2bc406a83ea9360b64182b2')) ">
<el-tag <el-tag
@ -88,7 +88,7 @@
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" prop="UPLOAD_TIME" label="上传时间" width="200px"/> <el-table-column align="center" prop="UPLOAD_TIME" label="上传时间" width="90px"/>
<el-table-column v-if="false" :show-overflow-tooltip="true" align="center" prop="UPLOAD_USER_NAME" width="100px" label="数据来源" > <el-table-column v-if="false" :show-overflow-tooltip="true" align="center" prop="UPLOAD_USER_NAME" width="100px" label="数据来源" >
<template slot-scope="{row}"> <template slot-scope="{row}">
{{ '资源库数据' }} {{ '资源库数据' }}

View File

@ -13,7 +13,7 @@
<el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery"> <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery">
搜索 搜索
</el-button> </el-button>
<el-button v-waves v-if="false" class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition">
添加其他搜索条件 添加其他搜索条件
</el-button> </el-button>
<el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage">
@ -48,7 +48,7 @@
/> />
<el-table-column type="index" label="序号" width="50" align="center" /> <el-table-column type="index" label="序号" width="50" align="center" />
<el-table-column align="center" prop="REMARKS" label="安全操作规程名称" /> <el-table-column align="center" prop="REMARKS" label="安全操作规程名称" />
<el-table-column v-if="false" align="center" prop="TYPES" label="类型" > <el-table-column align="center" prop="TYPES" label="类型" >
<template slot-scope="{row}"> <template slot-scope="{row}">
<el-tag <el-tag
v-for="tag in row.TYPES" v-for="tag in row.TYPES"
@ -72,7 +72,7 @@
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column v-if="false" align="center" prop="SPECIFICATION_TYPES" label="国民经济行业类型" width="300px"> <el-table-column align="center" prop="SPECIFICATION_TYPES" label="国民经济行业类型" width="300px">
<template slot-scope="{row}"> <template slot-scope="{row}">
<div v-if="row.SPECIFICATION_TYPES && row.SPECIFICATION_TYPES.length > 0"> <div v-if="row.SPECIFICATION_TYPES && row.SPECIFICATION_TYPES.length > 0">
<el-tag <el-tag
@ -89,7 +89,7 @@
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" prop="UPLOAD_TIME" label="上传时间" width="200px"/> <el-table-column align="center" prop="UPLOAD_TIME" label="上传时间" width="90px"/>
<el-table-column v-if="false" :show-overflow-tooltip="true" align="center" prop="UPLOAD_USER_NAME" width="100px" label="数据来源" > <el-table-column v-if="false" :show-overflow-tooltip="true" align="center" prop="UPLOAD_USER_NAME" width="100px" label="数据来源" >
<template slot-scope="{row}"> <template slot-scope="{row}">
{{ !row.CORP_NAME === '' ? '资源库数据' : row.CORP_NAME }} {{ !row.CORP_NAME === '' ? '资源库数据' : row.CORP_NAME }}

View File

@ -4,7 +4,7 @@
<el-form-item label="安全操作规程名称:" prop="FILE_NAME"> <el-form-item label="安全操作规程名称:" prop="FILE_NAME">
<el-input v-model="form.REMARKS" disabled style="width: 70%"/> <el-input v-model="form.REMARKS" disabled style="width: 70%"/>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="规程属性:" prop="FILE_NAME"> <el-form-item label="规程属性:" prop="FILE_NAME">
<el-tag <el-tag
v-for="tag in form.CATEGORY_LIST" v-for="tag in form.CATEGORY_LIST"
:key="tag.value" :key="tag.value"
@ -13,7 +13,7 @@
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="类型:" prop="FILE_NAME"> <el-form-item label="类型:" prop="FILE_NAME">
<el-tag <el-tag
v-for="tag in form.TYPES" v-for="tag in form.TYPES"
:key="tag.value" :key="tag.value"
@ -22,7 +22,7 @@
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="国民经济行业类型:" prop="FILE_NAME"> <el-form-item v-if="remoteControl.keyOne" label="国民经济行业类型:" prop="FILE_NAME">
<el-tag v-for="tag in form.SPECIFICATION_TYPES" :key="tag.value" :disable-transitions="false" style="margin-right: 10px"> <el-tag v-for="tag in form.SPECIFICATION_TYPES" :key="tag.value" :disable-transitions="false" style="margin-right: 10px">
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>
@ -95,6 +95,7 @@ export default {
this.loading = false this.loading = false
this.form = data.data this.form = data.data
this.form.FILE = [] this.form.FILE = []
this.remoteControl.keyOne = !(this.form.CATEGORY_LIST[0].CATEGORY_ID === '8051d985a2bc406a83ea9360b64182b2')
}).catch((e) => { }).catch((e) => {
this.$message.error(e) this.$message.error(e)
this.loading = false this.loading = false

View File

@ -7,7 +7,7 @@
<el-form-item label="安全管理制度名称:" prop="REMARKS"> <el-form-item label="安全管理制度名称:" prop="REMARKS">
<el-input v-model="form.REMARKS" style="width: 100%"/> <el-input v-model="form.REMARKS" style="width: 100%"/>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="类型:" prop="TYPES"> <el-form-item label="类型:" prop="TYPES">
<multiple-choice :dynamic-tags.sync="form.TYPES" :labels="typeList" :row-key="key.typeKey" :row-name="key.typeName"/> <multiple-choice :dynamic-tags.sync="form.TYPES" :labels="typeList" :row-key="key.typeKey" :row-name="key.typeName"/>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="国民经济行业类型:" prop="SPECIFICATION_TYPES"> <el-form-item v-if="false" label="国民经济行业类型:" prop="SPECIFICATION_TYPES">

View File

@ -13,7 +13,7 @@
<el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery"> <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery">
搜索 搜索
</el-button> </el-button>
<el-button v-waves v-if="false" class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition">
添加其他搜索条件 添加其他搜索条件
</el-button> </el-button>
<el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage">
@ -48,7 +48,7 @@
/> />
<el-table-column type="index" label="序号" width="50" align="center" /> <el-table-column type="index" label="序号" width="50" align="center" />
<el-table-column align="center" prop="REMARKS" label="安全生产管理制度名称" /> <el-table-column align="center" prop="REMARKS" label="安全生产管理制度名称" />
<el-table-column v-if="false" align="center" prop="TYPES" label="类型" > <el-table-column align="center" prop="TYPES" label="类型" >
<template slot-scope="{row}"> <template slot-scope="{row}">
<el-tag <el-tag
v-for="tag in row.TYPES" v-for="tag in row.TYPES"
@ -72,7 +72,7 @@
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column v-if="false" align="center" prop="SPECIFICATION_TYPES" label="国民经济行业类型" width="300px"> <el-table-column align="center" prop="SPECIFICATION_TYPES" label="国民经济行业类型" width="300px">
<template slot-scope="{row}"> <template slot-scope="{row}">
<div v-if="(row.SPECIFICATION_TYPES && row.SPECIFICATION_TYPES.length > 0) && ((!row.CATEGORY_LIST) || (!row.CATEGORY_LIST[0]) || (row.CATEGORY_LIST[0].CATEGORY_ID !== '691346658ed744a1bda2ed3a755f606c')) "> <div v-if="(row.SPECIFICATION_TYPES && row.SPECIFICATION_TYPES.length > 0) && ((!row.CATEGORY_LIST) || (!row.CATEGORY_LIST[0]) || (row.CATEGORY_LIST[0].CATEGORY_ID !== '691346658ed744a1bda2ed3a755f606c')) ">
<el-tag <el-tag
@ -89,7 +89,7 @@
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" prop="UPLOAD_TIME" label="上传时间" width="200px"/> <el-table-column align="center" prop="UPLOAD_TIME" label="上传时间" width="90px"/>
<el-table-column v-if="false" :show-overflow-tooltip="true" align="center" prop="UPLOAD_USER_NAME" width="100px" label="数据来源" > <el-table-column v-if="false" :show-overflow-tooltip="true" align="center" prop="UPLOAD_USER_NAME" width="100px" label="数据来源" >
<template slot-scope="{row}"> <template slot-scope="{row}">
{{ '资源库数据' }} {{ '资源库数据' }}

View File

@ -13,7 +13,7 @@
<el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery"> <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery">
搜索 搜索
</el-button> </el-button>
<el-button v-waves v-if="false" class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition">
添加其他搜索条件 添加其他搜索条件
</el-button> </el-button>
<el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage">
@ -48,7 +48,7 @@
/> />
<el-table-column type="index" label="序号" width="50" align="center" /> <el-table-column type="index" label="序号" width="50" align="center" />
<el-table-column align="center" prop="REMARKS" label="安全生产管理制度名称" /> <el-table-column align="center" prop="REMARKS" label="安全生产管理制度名称" />
<el-table-column v-if="false" align="center" prop="TYPES" label="类型" > <el-table-column align="center" prop="TYPES" label="类型" >
<template slot-scope="{row}"> <template slot-scope="{row}">
<el-tag <el-tag
v-for="tag in row.TYPES" v-for="tag in row.TYPES"
@ -72,7 +72,7 @@
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column v-if="false" align="center" prop="SPECIFICATION_TYPES" label="国民经济行业类型" width="300px"> <el-table-column align="center" prop="SPECIFICATION_TYPES" label="国民经济行业类型" width="300px">
<template slot-scope="{row}"> <template slot-scope="{row}">
<div v-if="row.SPECIFICATION_TYPES && row.SPECIFICATION_TYPES.length > 0"> <div v-if="row.SPECIFICATION_TYPES && row.SPECIFICATION_TYPES.length > 0">
<el-tag <el-tag
@ -89,7 +89,7 @@
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" prop="UPLOAD_TIME" label="上传时间" width="200px"/> <el-table-column align="center" prop="UPLOAD_TIME" label="上传时间" width="90px"/>
<el-table-column v-if="false" :show-overflow-tooltip="true" align="center" prop="UPLOAD_USER_NAME" width="100px" label="数据来源" > <el-table-column v-if="false" :show-overflow-tooltip="true" align="center" prop="UPLOAD_USER_NAME" width="100px" label="数据来源" >
<template slot-scope="{row}"> <template slot-scope="{row}">
{{ !row.CORP_NAME ? '资源库数据' : row.CORP_NAME }} {{ !row.CORP_NAME ? '资源库数据' : row.CORP_NAME }}

View File

@ -4,7 +4,7 @@
<el-form-item label="安全管理制度名称:" prop="FILE_NAME"> <el-form-item label="安全管理制度名称:" prop="FILE_NAME">
<el-input v-model="form.REMARKS" disabled style="width: 70%"/> <el-input v-model="form.REMARKS" disabled style="width: 70%"/>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="规程属性:" prop="FILE_NAME"> <el-form-item label="规程属性:" prop="FILE_NAME">
<el-tag <el-tag
v-for="tag in form.CATEGORY_LIST" v-for="tag in form.CATEGORY_LIST"
:key="tag.value" :key="tag.value"
@ -13,7 +13,7 @@
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="类型:" prop="FILE_NAME"> <el-form-item label="类型:" prop="FILE_NAME">
<el-tag <el-tag
v-for="tag in form.TYPES" v-for="tag in form.TYPES"
:key="tag.value" :key="tag.value"
@ -22,7 +22,7 @@
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="国民经济行业类型:" prop="FILE_NAME"> <el-form-item v-if="remoteControl.keyOne" label="国民经济行业类型:" prop="FILE_NAME">
<el-tag v-for="tag in form.SPECIFICATION_TYPES" :key="tag.value" :disable-transitions="false" style="margin-right: 10px"> <el-tag v-for="tag in form.SPECIFICATION_TYPES" :key="tag.value" :disable-transitions="false" style="margin-right: 10px">
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>
@ -95,6 +95,7 @@ export default {
this.loading = false this.loading = false
this.form = data.data this.form = data.data
this.form.FILE = [] this.form.FILE = []
this.remoteControl.keyOne = !(this.form.CATEGORY_LIST[0].CATEGORY_ID === '691346658ed744a1bda2ed3a755f606c')
}).catch((e) => { }).catch((e) => {
this.$message.error(e) this.$message.error(e)
this.loading = false this.loading = false

View File

@ -7,7 +7,7 @@
<el-form-item label="安全生产责任制名称:" prop="REMARKS"> <el-form-item label="安全生产责任制名称:" prop="REMARKS">
<el-input v-model="form.REMARKS" style="width: 100%"/> <el-input v-model="form.REMARKS" style="width: 100%"/>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="类型:" prop="TYPES"> <el-form-item label="类型:" prop="TYPES">
<multiple-choice :dynamic-tags.sync="form.TYPES" :labels="typeList" :row-key="key.typeKey" :row-name="key.typeName"/> <multiple-choice :dynamic-tags.sync="form.TYPES" :labels="typeList" :row-key="key.typeKey" :row-name="key.typeName"/>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="国民经济行业类型:" prop="SPECIFICATION_TYPES"> <el-form-item v-if="false" label="国民经济行业类型:" prop="SPECIFICATION_TYPES">

View File

@ -13,7 +13,7 @@
<el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery"> <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery">
搜索 搜索
</el-button> </el-button>
<el-button v-waves v-if="false" class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition">
添加其他搜索条件 添加其他搜索条件
</el-button> </el-button>
<el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage">
@ -48,7 +48,7 @@
/> />
<el-table-column type="index" label="序号" width="50" align="center" /> <el-table-column type="index" label="序号" width="50" align="center" />
<el-table-column align="center" prop="REMARKS" label="安全生产责任制名称" /> <el-table-column align="center" prop="REMARKS" label="安全生产责任制名称" />
<el-table-column v-if="false" align="center" prop="TYPES" label="类型" > <el-table-column align="center" prop="TYPES" label="类型" >
<template slot-scope="{row}"> <template slot-scope="{row}">
<el-tag <el-tag
v-for="tag in row.TYPES" v-for="tag in row.TYPES"
@ -72,7 +72,7 @@
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column v-if="false" align="center" prop="SPECIFICATION_TYPES" label="国民经济行业类型" width="300px"> <el-table-column align="center" prop="SPECIFICATION_TYPES" label="国民经济行业类型" width="300px">
<template slot-scope="{row}"> <template slot-scope="{row}">
<div v-if="(row.SPECIFICATION_TYPES && row.SPECIFICATION_TYPES.length > 0) && ((!row.CATEGORY_LIST) || (!row.CATEGORY_LIST[0]) || (row.CATEGORY_LIST[0].CATEGORY_ID !== '7158f688d0f34054a28a9275139298df'))"> <div v-if="(row.SPECIFICATION_TYPES && row.SPECIFICATION_TYPES.length > 0) && ((!row.CATEGORY_LIST) || (!row.CATEGORY_LIST[0]) || (row.CATEGORY_LIST[0].CATEGORY_ID !== '7158f688d0f34054a28a9275139298df'))">
<el-tag <el-tag
@ -89,7 +89,7 @@
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" prop="UPLOAD_TIME" label="上传时间" width="200px"/> <el-table-column align="center" prop="UPLOAD_TIME" label="上传时间" width="90px"/>
<el-table-column v-if="false" :show-overflow-tooltip="true" align="center" prop="UPLOAD_USER_NAME" width="100px" label="数据来源" > <el-table-column v-if="false" :show-overflow-tooltip="true" align="center" prop="UPLOAD_USER_NAME" width="100px" label="数据来源" >
<template slot-scope="{row}"> <template slot-scope="{row}">
{{ !row.CORP_NAME ? '资源库数据' : row.CORP_NAME }} {{ !row.CORP_NAME ? '资源库数据' : row.CORP_NAME }}

View File

@ -13,7 +13,7 @@
<el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery"> <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery">
搜索 搜索
</el-button> </el-button>
<el-button v-waves v-if="false" class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition">
添加其他搜索条件 添加其他搜索条件
</el-button> </el-button>
<el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage">
@ -48,7 +48,7 @@
/> />
<el-table-column type="index" label="序号" width="50" align="center" /> <el-table-column type="index" label="序号" width="50" align="center" />
<el-table-column align="center" prop="REMARKS" label="安全生产管理制度名称" /> <el-table-column align="center" prop="REMARKS" label="安全生产管理制度名称" />
<el-table-column v-if="false" align="center" prop="TYPES" label="类型" > <el-table-column align="center" prop="TYPES" label="类型" >
<template slot-scope="{row}"> <template slot-scope="{row}">
<el-tag <el-tag
v-for="tag in row.TYPES" v-for="tag in row.TYPES"
@ -72,7 +72,7 @@
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column v-if="false" align="center" prop="SPECIFICATION_TYPES" label="国民经济行业类型" width="300px"> <el-table-column align="center" prop="SPECIFICATION_TYPES" label="国民经济行业类型" width="300px">
<template slot-scope="{row}"> <template slot-scope="{row}">
<div v-if="row.SPECIFICATION_TYPES && row.SPECIFICATION_TYPES.length > 0"> <div v-if="row.SPECIFICATION_TYPES && row.SPECIFICATION_TYPES.length > 0">
<el-tag <el-tag
@ -89,7 +89,7 @@
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" prop="UPLOAD_TIME" label="上传时间" width="200px"/> <el-table-column align="center" prop="UPLOAD_TIME" label="上传时间" width="90px"/>
<el-table-column v-if="false" :show-overflow-tooltip="true" align="center" prop="UPLOAD_USER_NAME" width="100px" label="数据来源" > <el-table-column v-if="false" :show-overflow-tooltip="true" align="center" prop="UPLOAD_USER_NAME" width="100px" label="数据来源" >
<template slot-scope="{row}"> <template slot-scope="{row}">
{{ !row.CORP_NAME ? '资源库数据' : row.CORP_NAME }} {{ !row.CORP_NAME ? '资源库数据' : row.CORP_NAME }}

View File

@ -4,7 +4,7 @@
<el-form-item label="安全生产责任制名称:" prop="FILE_NAME"> <el-form-item label="安全生产责任制名称:" prop="FILE_NAME">
<el-input v-model="form.REMARKS" disabled style="width: 70%"/> <el-input v-model="form.REMARKS" disabled style="width: 70%"/>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="规程属性:" prop="FILE_NAME"> <el-form-item label="规程属性:" prop="FILE_NAME">
<el-tag <el-tag
v-for="tag in form.CATEGORY_LIST" v-for="tag in form.CATEGORY_LIST"
:key="tag.value" :key="tag.value"
@ -13,7 +13,7 @@
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="类型:" prop="FILE_NAME"> <el-form-item label="类型:" prop="FILE_NAME">
<el-tag <el-tag
v-for="tag in form.TYPES" v-for="tag in form.TYPES"
:key="tag.value" :key="tag.value"
@ -22,7 +22,7 @@
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="国民经济行业类型:" prop="FILE_NAME"> <el-form-item v-if="remoteControl.keyOne" label="国民经济行业类型:" prop="FILE_NAME">
<el-tag v-for="tag in form.SPECIFICATION_TYPES" :key="tag.value" :disable-transitions="false" style="margin-right: 10px"> <el-tag v-for="tag in form.SPECIFICATION_TYPES" :key="tag.value" :disable-transitions="false" style="margin-right: 10px">
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>
@ -95,6 +95,7 @@ export default {
this.loading = false this.loading = false
this.form = data.data this.form = data.data
this.form.FILE = [] this.form.FILE = []
this.remoteControl.keyOne = !(this.form.CATEGORY_LIST[0].CATEGORY_ID === '7158f688d0f34054a28a9275139298df')
}).catch((e) => { }).catch((e) => {
this.$message.error(e) this.$message.error(e)
this.loading = false this.loading = false

View File

@ -13,7 +13,7 @@
<el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery"> <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery">
搜索 搜索
</el-button> </el-button>
<el-button v-waves v-if="false" class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition">
添加其他搜索条件 添加其他搜索条件
</el-button> </el-button>
<el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage">
@ -40,7 +40,7 @@
highlight-current-row highlight-current-row
@cell-mouse-enter="enterSelectionRows" @cell-mouse-enter="enterSelectionRows"
@cell-mouse-leave="leaveSelectionRows"> @cell-mouse-leave="leaveSelectionRows">
<el-table-column v-if="false" type="expand"> <el-table-column type="expand">
<template slot-scope="props"> <template slot-scope="props">
<div style="text-align: left;padding: 10px;"> <div style="text-align: left;padding: 10px;">
<el-form label-position="left" inline> <el-form label-position="left" inline>
@ -81,7 +81,7 @@
align="center"/> align="center"/>
<el-table-column type="index" label="序号" width="50" align="center" /> <el-table-column type="index" label="序号" width="50" align="center" />
<el-table-column align="center" prop="REMARKS" label="安全操作规程名称" /> <el-table-column align="center" prop="REMARKS" label="安全操作规程名称" />
<el-table-column v-if="false" align="center" prop="TYPES" label="类型" > <el-table-column align="center" prop="TYPES" label="类型" >
<template slot-scope="{row}"> <template slot-scope="{row}">
<el-tag <el-tag
v-for="tag in row.TYPES" v-for="tag in row.TYPES"
@ -93,7 +93,7 @@
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="LABEL" align="center" label="标签" > <el-table-column v-if="false" prop="LABEL" align="center" label="标签" >
<template slot-scope="{row}"> <template slot-scope="{row}">
<el-tag <el-tag
v-for="tag in row.labels" v-for="tag in row.labels"

View File

@ -4,7 +4,7 @@
<el-form-item label="安全操作规程名称:" prop="FILE_NAME"> <el-form-item label="安全操作规程名称:" prop="FILE_NAME">
<el-input v-model="form.REMARKS" disabled style="width: 70%"/> <el-input v-model="form.REMARKS" disabled style="width: 70%"/>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="规程属性:" prop="FILE_NAME"> <el-form-item label="规程属性:" prop="FILE_NAME">
<el-tag <el-tag
v-for="tag in form.CATEGORY_LIST" v-for="tag in form.CATEGORY_LIST"
:key="tag.value" :key="tag.value"
@ -13,7 +13,7 @@
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="类型:" prop="FILE_NAME"> <el-form-item label="类型:" prop="FILE_NAME">
<el-tag <el-tag
v-for="tag in form.TYPES" v-for="tag in form.TYPES"
:key="tag.value" :key="tag.value"
@ -22,7 +22,7 @@
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="国民经济行业类型:" prop="FILE_NAME"> <el-form-item v-if="remoteControl.keyOne" label="国民经济行业类型:" prop="FILE_NAME">
<el-tag v-for="tag in form.SPECIFICATION_TYPES" :key="tag.value" :disable-transitions="false" style="margin-right: 10px"> <el-tag v-for="tag in form.SPECIFICATION_TYPES" :key="tag.value" :disable-transitions="false" style="margin-right: 10px">
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>

View File

@ -13,7 +13,7 @@
<el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery"> <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery">
搜索 搜索
</el-button> </el-button>
<el-button v-waves v-if="false" class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition">
添加其他搜索条件 添加其他搜索条件
</el-button> </el-button>
<el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage">
@ -47,7 +47,7 @@
width="55" width="55"
align="center" align="center"
/> />
<el-table-column v-if="false" type="expand"> <el-table-column type="expand">
<template slot-scope="props"> <template slot-scope="props">
<div style="text-align: left;padding: 10px;"> <div style="text-align: left;padding: 10px;">
<el-form label-position="left" inline> <el-form label-position="left" inline>
@ -82,7 +82,7 @@
</el-table-column> </el-table-column>
<el-table-column type="index" label="序号" width="50" align="center" /> <el-table-column type="index" label="序号" width="50" align="center" />
<el-table-column align="center" prop="REMARKS" label="安全生产管理制度名称" /> <el-table-column align="center" prop="REMARKS" label="安全生产管理制度名称" />
<el-table-column v-if="false" align="center" prop="TYPES" label="类型" > <el-table-column align="center" prop="TYPES" label="类型" >
<template slot-scope="{row}"> <template slot-scope="{row}">
<el-tag <el-tag
v-for="tag in row.TYPES" v-for="tag in row.TYPES"
@ -94,7 +94,7 @@
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="LABEL" align="center" label="标签" > <el-table-column v-if="false" prop="LABEL" align="center" label="标签" >
<template slot-scope="{row}"> <template slot-scope="{row}">
<el-tag <el-tag
v-for="tag in row.labels" v-for="tag in row.labels"

View File

@ -4,7 +4,7 @@
<el-form-item label="安全管理制度名称:" prop="FILE_NAME"> <el-form-item label="安全管理制度名称:" prop="FILE_NAME">
<el-input v-model="form.REMARKS" disabled style="width: 70%"/> <el-input v-model="form.REMARKS" disabled style="width: 70%"/>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="规程属性:" prop="FILE_NAME"> <el-form-item label="规程属性:" prop="FILE_NAME">
<el-tag <el-tag
v-for="tag in form.CATEGORY_LIST" v-for="tag in form.CATEGORY_LIST"
:key="tag.value" :key="tag.value"
@ -13,7 +13,7 @@
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="类型:" prop="FILE_NAME"> <el-form-item label="类型:" prop="FILE_NAME">
<el-tag <el-tag
v-for="tag in form.TYPES" v-for="tag in form.TYPES"
:key="tag.value" :key="tag.value"
@ -22,7 +22,7 @@
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="国民经济行业类型:" prop="FILE_NAME"> <el-form-item v-if="remoteControl.keyOne" label="国民经济行业类型:" prop="FILE_NAME">
<el-tag v-for="tag in form.SPECIFICATION_TYPES" :key="tag.value" :disable-transitions="false" style="margin-right: 10px"> <el-tag v-for="tag in form.SPECIFICATION_TYPES" :key="tag.value" :disable-transitions="false" style="margin-right: 10px">
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>

View File

@ -13,7 +13,7 @@
<el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery"> <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery">
搜索 搜索
</el-button> </el-button>
<el-button v-waves v-if="false" class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="addCondition">
添加其他搜索条件 添加其他搜索条件
</el-button> </el-button>
<el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage"> <el-button v-waves class="filter-item" type="success" icon="el-icon-magic-stick" @click="clearMessage">
@ -47,7 +47,7 @@
width="55" width="55"
align="center" align="center"
/> />
<el-table-column v-if="false" type="expand"> <el-table-column type="expand">
<template slot-scope="props"> <template slot-scope="props">
<div style="text-align: left;padding: 10px;"> <div style="text-align: left;padding: 10px;">
<el-form label-position="left" inline> <el-form label-position="left" inline>
@ -82,7 +82,7 @@
</el-table-column> </el-table-column>
<el-table-column type="index" label="序号" width="50" align="center" /> <el-table-column type="index" label="序号" width="50" align="center" />
<el-table-column align="center" prop="REMARKS" label="安全生产责任制名称" /> <el-table-column align="center" prop="REMARKS" label="安全生产责任制名称" />
<el-table-column v-if="false" align="center" prop="TYPES" label="类型" > <el-table-column align="center" prop="TYPES" label="类型" >
<template slot-scope="{row}"> <template slot-scope="{row}">
<el-tag <el-tag
v-for="tag in row.TYPES" v-for="tag in row.TYPES"
@ -94,7 +94,7 @@
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" prop="LABEL" label="标签" > <el-table-column v-if="false" align="center" prop="LABEL" label="标签" >
<template slot-scope="{row}"> <template slot-scope="{row}">
<el-tag <el-tag
v-for="tag in row.labels" v-for="tag in row.labels"
@ -132,10 +132,10 @@
<el-table-column label="操作" align="center" width="200px"> <el-table-column label="操作" align="center" width="200px">
<template slot-scope="{row}"> <template slot-scope="{row}">
<el-row> <el-row>
<el-col :span="12"> <el-col :span="14">
<el-button v-show="!row.LOCKTOOL" type="primary" icon="el-icon-edit" size="mini" @click="handleExport(row)"></el-button> <el-button v-show="!row.LOCKTOOL" type="primary" icon="el-icon-edit" size="mini" @click="handleExport(row)"></el-button>
</el-col> </el-col>
<el-col :span="12"> <el-col :span="10">
<el-button type="primary" icon="el-icon-edit" size="mini" @click="getInformation(row)"></el-button> <el-button type="primary" icon="el-icon-edit" size="mini" @click="getInformation(row)"></el-button>
</el-col> </el-col>
</el-row> </el-row>

View File

@ -4,7 +4,7 @@
<el-form-item label="安全生产责任制名称:" prop="FILE_NAME"> <el-form-item label="安全生产责任制名称:" prop="FILE_NAME">
<el-input v-model="form.REMARKS" disabled style="width: 70%"/> <el-input v-model="form.REMARKS" disabled style="width: 70%"/>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="规程属性:" prop="FILE_NAME"> <el-form-item label="规程属性:" prop="FILE_NAME">
<el-tag <el-tag
v-for="tag in form.CATEGORY_LIST" v-for="tag in form.CATEGORY_LIST"
:key="tag.value" :key="tag.value"
@ -13,7 +13,7 @@
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="类型:" prop="FILE_NAME"> <el-form-item label="类型:" prop="FILE_NAME">
<el-tag <el-tag
v-for="tag in form.TYPES" v-for="tag in form.TYPES"
:key="tag.value" :key="tag.value"
@ -22,7 +22,7 @@
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>
</el-form-item> </el-form-item>
<el-form-item v-if="false" label="国民经济行业类型:" prop="FILE_NAME"> <el-form-item v-if="remoteControl.keyOne" label="国民经济行业类型:" prop="FILE_NAME">
<el-tag v-for="tag in form.SPECIFICATION_TYPES" :key="tag.value" :disable-transitions="false" style="margin-right: 10px"> <el-tag v-for="tag in form.SPECIFICATION_TYPES" :key="tag.value" :disable-transitions="false" style="margin-right: 10px">
{{ tag.CATEGORY_NAME }} {{ tag.CATEGORY_NAME }}
</el-tag> </el-tag>