| | |
| | | <el-col :span="6" style="padding: 0 10px"> |
| | | <el-select v-model="queryParams.Comparator2" placeholder="请选择" @change="riqiChange" |
| | | class="ForFilteringSchemes"> |
| | | <span v-for="(item, index) in btList" :key="index"> |
| | | <el-option :label="item.field" :value="item.field" v-if="!item.hide"></el-option> |
| | | </span> |
| | | <el-option v-for="(item, index) in comparatorList" :key="index" :label="item.label" |
| | | :value="item.value"></el-option> |
| | | </el-select> |
| | | </el-col> |
| | | <el-col :span="11"> |
| | |
| | | <el-col :span="7"> |
| | | <el-select v-model="queryParams.ColName" placeholder="请选择" @change="riqiChange" |
| | | class="ForFilteringSchemes"> |
| | | <el-option v-for="(item, index) in btList" :key="index" :label="item.field" |
| | | :value="item.field"></el-option> |
| | | <span v-for="(item, index) in btList" :key="index"> |
| | | <el-option :label="item.field" :value="item.field" v-if="!item.hide"></el-option> |
| | | </span> |
| | | </el-select> |
| | | </el-col> |
| | | <el-col :span="6" style="padding: 0 10px"> |
| | |
| | | if (this.pageSize == 0) { |
| | | this.pageSize = 50; |
| | | } |
| | | if (this.openPage && this.propsHOrgID) { |
| | | if (this.openPage && this.propsHOrgID && this.queryParams.HOrgID == "") { |
| | | this.queryParams.HOrgID = this.propsHOrgID |
| | | } |
| | | // this.queryParams.HOrgID = 100038 |
| | |
| | | if (this.sTime && this.eTime) { |
| | | this.sWhere += " and CONVERT(varchar(100),日期, 23) >= '" + this.sTime + "'"; |
| | | this.sWhere += " and CONVERT(varchar(100),日期, 23) <= '" + this.eTime + "'"; |
| | | } |
| | | if (this.queryParams.HOrgID) { |
| | | this.sWhere += " and HOrgID = '" + this.queryParams.HOrgID + "'"; |
| | | } |
| | | let Organization = this.organizationList.find( |
| | | (e) => e.ID == this.queryParams.HOrgID |
| | |
| | | this.rowForm = selection[0]; |
| | | } |
| | | this.selRowList = selection |
| | | if (this.openPage) { |
| | | this.$emit('deptEmit', this.selRowList, 12) |
| | | } |
| | | }, |
| | | //打开侧边搜索弹窗 |
| | | handleSearch() { |
| | |
| | | } |
| | | |
| | | if (this.queryParams.HBillNo) { |
| | | this.sWhere += " and 单据号 like '%" + this.queryParams.HNumber + "%'"; |
| | | this.sWhere += " and 单据号 like '%" + this.queryParams.HBillNo + "%'"; |
| | | } |
| | | |
| | | if (this.queryParams.HProjectNumber) { |
| | | this.sWhere += " and 项目编码 like '%" + this.queryParams.HProjectNumber + "%'"; |
| | | } |