复查人筛选监理单位的人
This commit is contained in:
parent
a7c1947d6a
commit
a5f8ec11e6
@ -10,6 +10,7 @@ export default {
|
|||||||
focus: '聚焦',
|
focus: '聚焦',
|
||||||
aperture: '光圈',
|
aperture: '光圈',
|
||||||
add: '新增',
|
add: '新增',
|
||||||
|
screen:'筛选',
|
||||||
configAccount: '配置服务器',
|
configAccount: '配置服务器',
|
||||||
configPlayMode: '配置播放模式',
|
configPlayMode: '配置播放模式',
|
||||||
syncDev: '同步设备',
|
syncDev: '同步设备',
|
||||||
|
|||||||
@ -44,19 +44,7 @@
|
|||||||
<el-button type="primary" plain @click="query">{{
|
<el-button type="primary" plain @click="query">{{
|
||||||
$t("message.alarmWarning.query")
|
$t("message.alarmWarning.query")
|
||||||
}}</el-button>
|
}}</el-button>
|
||||||
<!-- 筛选 -->
|
|
||||||
<!-- <el-dropdown>
|
|
||||||
<el-button type="primary">
|
|
||||||
筛选<i class="el-icon-arrow-down el-icon--right"></i>
|
|
||||||
</el-button>
|
|
||||||
<el-dropdown-menu slot="dropdown">
|
|
||||||
<el-dropdown-item>黄金糕</el-dropdown-item>
|
|
||||||
<el-dropdown-item>狮子头</el-dropdown-item>
|
|
||||||
<el-dropdown-item>螺蛳粉</el-dropdown-item>
|
|
||||||
<el-dropdown-item>双皮奶</el-dropdown-item>
|
|
||||||
<el-dropdown-item>蚵仔煎</el-dropdown-item>
|
|
||||||
</el-dropdown-menu>
|
|
||||||
</el-dropdown> -->
|
|
||||||
<!-- <el-button type="primary" info @click="filter">{{
|
<!-- <el-button type="primary" info @click="filter">{{
|
||||||
$t("message.alarmWarning.query")
|
$t("message.alarmWarning.query")
|
||||||
}}</el-button> -->
|
}}</el-button> -->
|
||||||
@ -68,6 +56,15 @@
|
|||||||
<el-button type="primary" @click="add">{{
|
<el-button type="primary" @click="add">{{
|
||||||
$t("message.videoManage.add")
|
$t("message.videoManage.add")
|
||||||
}}</el-button>
|
}}</el-button>
|
||||||
|
<!-- 筛选 -->
|
||||||
|
<el-dropdown class="screen" size="medium" @command="handleCommand">
|
||||||
|
<el-button type="success" plain>
|
||||||
|
{{$t("message.videoManage.screen")}}
|
||||||
|
</el-button>
|
||||||
|
<el-dropdown-menu slot="dropdown">
|
||||||
|
<el-dropdown-item v-for="(item) in screen" :key="item.id" :command="item.id">{{item.name}}</el-dropdown-item>
|
||||||
|
</el-dropdown-menu>
|
||||||
|
</el-dropdown>
|
||||||
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
@ -474,6 +471,20 @@ export default {
|
|||||||
userId: "",
|
userId: "",
|
||||||
externalAccount: "",
|
externalAccount: "",
|
||||||
},
|
},
|
||||||
|
screen:[
|
||||||
|
{id:1,name:"专业分包"},
|
||||||
|
{id:2,name:"设备分包"},
|
||||||
|
{id:3,name:"材料分包"},
|
||||||
|
{id:4,name:"后勤服务"},
|
||||||
|
{id:5,name:"特殊设备"},
|
||||||
|
{id:6,name:"劳务分包"},
|
||||||
|
{id:7,name:"监理单位"},
|
||||||
|
{id:8,name:"建设单位"},
|
||||||
|
{id:9,name:"总承包单位"},
|
||||||
|
{id:10,name:"勘查单位"},
|
||||||
|
{id:11,name:"设计单位"},
|
||||||
|
{id:12,name:"其他"},
|
||||||
|
],
|
||||||
formRules: {
|
formRules: {
|
||||||
account: [
|
account: [
|
||||||
{
|
{
|
||||||
@ -926,6 +937,18 @@ export default {
|
|||||||
this.workerName = "";
|
this.workerName = "";
|
||||||
this.getList();
|
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() {
|
getList() {
|
||||||
getProjectChilderSystemUserListApi({
|
getProjectChilderSystemUserListApi({
|
||||||
projectSn: this.$store.state.projectSn,
|
projectSn: this.$store.state.projectSn,
|
||||||
@ -1006,4 +1029,7 @@ export default {
|
|||||||
/deep/.el-select-dropdown__item.hover,.el-select-dropdown__item.hover, .el-select-dropdown__item:hover{
|
/deep/.el-select-dropdown__item.hover,.el-select-dropdown__item.hover, .el-select-dropdown__item:hover{
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
.screen{
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user