| | |
| | | :value="item.text" |
| | | :key="index"/> |
| | | </el-select> |
| | | 许可证有效状态: |
| | | <el-select |
| | | v-model.trim="queryForm.licenseValid" |
| | | placeholder="请选择许可证有效状态" |
| | | style="width:13%;"> |
| | | <el-option |
| | | v-for="item in licenseValidList" |
| | | :label="item.text" |
| | | :value="item.id" |
| | | :key="item.id"/> |
| | | </el-select> |
| | | <!-- <el-button class="filter-item" style="margin-left: 15px;" type="primary" icon="el-icon-refresh"--> |
| | | <!-- @click="refreshHandle">立即更新--> |
| | | <!-- </el-button>--> |
| | |
| | | committeeList:[], |
| | | checkTypeList:[], |
| | | dateRange:[], |
| | | licenseValidList:[{id:1,text:'有效'},{id:0, text:'无效'}], |
| | | isSupervision : Cookies.get('isSupervision'), |
| | | queryForm: { |
| | | name: '', |
| | |
| | | endDate:'', |
| | | province:'', |
| | | city:'', |
| | | |
| | | |
| | | area:'', |
| | | town:'', |
| | | community:'', |
| | | enterpriseType:'', |
| | | licenseValid:1, |
| | | }, |
| | | totalRow:{'enterpriseName':"总计",'stockNum':0} |
| | | } |
| | |
| | | params['sort'] = _this.sort; |
| | | params['order'] = _this.order; |
| | | params['operator'] = Cookies.get('userName') ; |
| | | params['licenseValid'] = Cookies.get('userName') ; |
| | | for (const i in _this.queryForm) { |
| | | if (_this.queryForm[i] != undefined && _this.queryForm[i].toString() !== '') { |
| | | params[i] = _this.queryForm[i] |
| | | } |
| | | } |
| | | _this.listLoading = true; |
| | | enterpriseStockList(params).then(response => { |