fix: BUG修改
This commit is contained in:
parent
a7d2486f0b
commit
7cb889e459
@ -103,7 +103,17 @@
|
||||
</div>
|
||||
<!-- 来源 -->
|
||||
<!-- @click="openDialogDetail(item)" -->
|
||||
<div class="title">{{ $t('message.sixComplete.carDense.from') + ':' }}{{ item.alarmDesc }}</div>
|
||||
<div class="title">
|
||||
<!-- {{ $t('message.sixComplete.carDense.from') + ':' }}{{ item.alarmDesc }} -->
|
||||
<el-tooltip
|
||||
class="item"
|
||||
effect="dark"
|
||||
:content="item.alarmDesc"
|
||||
placement="top-start"
|
||||
>
|
||||
<span>{{ $t('message.sixComplete.carDense.from') + ':' }}{{ item.alarmDesc }}</span>
|
||||
</el-tooltip>
|
||||
</div>
|
||||
<!-- 去处置 -->
|
||||
<div class="toDisposeOf pushBtn" @click="pushAlarm(item)">
|
||||
<el-button type="primary" size="small">违章推送</el-button>
|
||||
|
||||
@ -109,7 +109,17 @@
|
||||
<div class="status-style" :class="item.handleResult?'result-style':'no-result-style'">{{item.handleResult?'已处置':'未处置'}}</div>
|
||||
</div>
|
||||
<!-- 来源 -->
|
||||
<div class="title" @click="openDialogDetail(item)">{{ $t('message.sixComplete.carDense.from') + ':' }}{{ item.alarmDesc }}</div>
|
||||
<div class="title" @click="openDialogDetail(item)">
|
||||
<!-- {{ $t('message.sixComplete.carDense.from') + ':' }}{{ item.alarmDesc }} -->
|
||||
<el-tooltip
|
||||
class="item"
|
||||
effect="dark"
|
||||
:content="item.alarmDesc"
|
||||
placement="top-start"
|
||||
>
|
||||
<span>{{ $t('message.sixComplete.carDense.from') + ':' }}{{ item.alarmDesc }}</span>
|
||||
</el-tooltip>
|
||||
</div>
|
||||
<!-- 去处置 -->
|
||||
<div class="toDisposeOf" @click="openDialog(item)" v-if="!item.handleResult">
|
||||
<el-button v-permission="{key: 'ai_disposition', menuPath: '/project/aiAnalysis/warningList'}" type="primary" size="small">去处置</el-button>
|
||||
|
||||
@ -28,7 +28,20 @@
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item> -->
|
||||
<el-form-item>
|
||||
|
||||
<el-form-item label="单位类型">
|
||||
<!-- 筛选 -->
|
||||
<el-select v-model="screenStr" class="screen" placeholder="请选择" clearable>
|
||||
<el-option
|
||||
v-for="(item) in screen"
|
||||
:key="item.id"
|
||||
:label="item.name"
|
||||
:value="item.id"
|
||||
>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="姓名">
|
||||
<!-- 请输入姓名 -->
|
||||
<el-input
|
||||
style="display: inline-block"
|
||||
@ -56,16 +69,6 @@
|
||||
<el-button type="primary" @click="add">{{
|
||||
$t("message.videoManage.add")
|
||||
}}</el-button>
|
||||
<!-- 筛选 -->
|
||||
<el-select v-model="screenStr" class="screen" placeholder="请选择筛选模块" @change="handleCommand">
|
||||
<el-option
|
||||
v-for="(item) in screen"
|
||||
:key="item.id"
|
||||
:label="item.name"
|
||||
:value="item.id"
|
||||
>
|
||||
</el-option>
|
||||
</el-select>
|
||||
<!-- <el-dropdown class="screen" size="medium" @command="handleCommand">
|
||||
<el-button type="success" plain>
|
||||
{{$t("message.videoManage.screen")}}
|
||||
@ -495,7 +498,7 @@ export default {
|
||||
externalAccount: "",
|
||||
},
|
||||
screen:[
|
||||
{id:0,name:" "},
|
||||
// {id:0,name:" "},
|
||||
{id:1,name:"专业分包"},
|
||||
{id:2,name:"设备分包"},
|
||||
{id:3,name:"材料分包"},
|
||||
@ -973,21 +976,10 @@ export default {
|
||||
this.screenStr = ""
|
||||
this.getList();
|
||||
},
|
||||
// 实现筛选
|
||||
handleCommand(command){
|
||||
getProjectChilderSystemUserListApi({
|
||||
projectSn: this.$store.state.projectSn,
|
||||
enterpriseTypeId:command,
|
||||
}).then((result)=>{
|
||||
if(result.success){
|
||||
this.List = result.result;
|
||||
// console.log('筛选列表',result);
|
||||
}
|
||||
})
|
||||
},
|
||||
getList() {
|
||||
getProjectChilderSystemUserListApi({
|
||||
projectSn: this.$store.state.projectSn,
|
||||
enterpriseTypeId:this.screenStr,
|
||||
workerName: this.workerName,
|
||||
}).then((result) => {
|
||||
if (result.success) {
|
||||
|
||||
@ -58,13 +58,14 @@
|
||||
</vue-scroll>
|
||||
</div>
|
||||
<div v-if="activeIndex == '2'" class="content_wrap">
|
||||
<!-- <el-button
|
||||
<el-button
|
||||
class="addQualificationBtn"
|
||||
type="primary"
|
||||
size="medium"
|
||||
@click="addBtn(1)"
|
||||
v-permission="{key: 'hzdw_add_qualifications', menuPath: '/project/summary/cooperationUnit'}"
|
||||
>新增</el-button
|
||||
> -->
|
||||
>
|
||||
<el-table
|
||||
:data="qualificationList"
|
||||
stripe
|
||||
|
||||
@ -474,7 +474,7 @@ export default {
|
||||
color: "#268dff",
|
||||
label: {
|
||||
show: true, //开启显示
|
||||
position: 'right', //在上方显示
|
||||
position: 'top', //在上方显示
|
||||
formatter: function (val) {
|
||||
if (val.value !== 0) {
|
||||
return val.value;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user