|
@@ -18,13 +18,21 @@
|
|
|
<div class="right_content">
|
|
|
<el-form :inline="true" :model="form" class="demo-form-inline">
|
|
|
<el-row :gutter="20">
|
|
|
- <el-col :span="20">
|
|
|
+ <el-col :span="16">
|
|
|
<div class="grid-content bg-purple">
|
|
|
<el-form-item label="事项名称">
|
|
|
<el-input v-model="form.name" placeholder="" clearable></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="责任部门">
|
|
|
- <el-input v-model="form.operationUnit" placeholder="" clearable></el-input>
|
|
|
+<!-- <el-input v-model="form.operationUnit" placeholder="" clearable></el-input>-->
|
|
|
+ <el-select v-model="form.operationUnit" placeholder="请选择">
|
|
|
+ <el-option
|
|
|
+ v-for="item in operationUnitList"
|
|
|
+ :key="item.label"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="类型">
|
|
|
<el-select v-model="form.commitType" placeholder="请选择">
|
|
@@ -39,7 +47,7 @@
|
|
|
</div>
|
|
|
</el-col>
|
|
|
|
|
|
- <el-col :span="4"><div class="grid-content bg-purple">
|
|
|
+ <el-col :span="8"><div class="grid-content bg-purple" style="float: right">
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" class="role_button" role_button_code="8f55b710-6f34-4722-9666-582f8f04ad01" @click="onSubmitSearch">查询</el-button>
|
|
|
<el-button class="role_button" role_button_code="4a2fbabd-45db-4408-8268-b3dbd5617b2a" type="primary" @click="downloadModel()">导入模板</el-button>
|
|
@@ -340,6 +348,7 @@ export default {
|
|
|
total_unit:'住建委',
|
|
|
totalItem:0,
|
|
|
totalSituation:0,
|
|
|
+ operationUnitList:[],
|
|
|
commitTypeList:[
|
|
|
{
|
|
|
label:'全部',
|
|
@@ -1007,10 +1016,38 @@ export default {
|
|
|
ZJWself.tableHeight = window.innerHeight - self.$refs.Table.$el.offsetTop - 150;
|
|
|
}
|
|
|
});
|
|
|
+ this.getOperationUnitList();
|
|
|
// this.autoRoll();
|
|
|
// this.autoChange();
|
|
|
},
|
|
|
methods:{
|
|
|
+ getOperationUnitList(){
|
|
|
+ this.$request({
|
|
|
+ url:'/YWTBApi/queryResponsibleDepartment',
|
|
|
+ method:'post',
|
|
|
+ data:{
|
|
|
+ "appkey":localStorage.getItem("ywtb_userkeycode")
|
|
|
+ }
|
|
|
+ }).then(response => {
|
|
|
+ this.loadInfo ='';
|
|
|
+ let useData= []
|
|
|
+ let dataArr = response.data.msg[0].Rows;
|
|
|
+ useData.push(
|
|
|
+ {
|
|
|
+ label:'全部',
|
|
|
+ value: '',
|
|
|
+ }
|
|
|
+ )
|
|
|
+ for(let i=0;i<dataArr.length;i++){
|
|
|
+ let tempdata = {
|
|
|
+ label:dataArr[i].RESPONSIBLE_DEPARTMENT,
|
|
|
+ value: dataArr[i].RESPONSIBLE_DEPARTMENT,
|
|
|
+ }
|
|
|
+ useData.push(tempdata);
|
|
|
+ }
|
|
|
+ this.operationUnitList = useData;
|
|
|
+ })
|
|
|
+ },
|
|
|
uploadError (response, file, fileList) {
|
|
|
this.loading=false;
|
|
|
console.log('上传失败,请重试!',response, file, fileList)
|
|
@@ -1422,10 +1459,12 @@ export default {
|
|
|
justify-content: space-between;
|
|
|
@media screen and (max-height: 980px) {
|
|
|
background: url("../../../assets/imgs/带手指低.png") no-repeat;
|
|
|
+ background-size: 100% 100% !important;
|
|
|
}
|
|
|
|
|
|
@media screen and (min-height: 980px) {
|
|
|
background: url("../../../assets/imgs/带手指高.png") no-repeat;
|
|
|
+ background-size: 100% 100% !important;
|
|
|
}
|
|
|
background-size: 100% !important;
|
|
|
|