| @@ -152,6 +152,47 @@ | |||||
| </el-select> | </el-select> | ||||
| </div> | </div> | ||||
| <div class="div-lab"> | |||||
| <!-- 默认全部 --> | |||||
| <div class="label">是否违禁:</div> | |||||
| <el-select | |||||
| v-model="searchForm.taboo" | |||||
| placeholder="请选择" | |||||
| class="div-inp" | |||||
| filterable | |||||
| clearable | |||||
| > | |||||
| <el-option | |||||
| v-for="item in options11" | |||||
| :key="item.value" | |||||
| :label="item.label" | |||||
| :value="item.value" | |||||
| > | |||||
| </el-option> | |||||
| </el-select> | |||||
| </div> | |||||
| <div class="div-lab"> | |||||
| <!-- 默认全部 --> | |||||
| <div class="label">是否加精:</div> | |||||
| <el-select | |||||
| v-model="searchForm.zfal" | |||||
| placeholder="请选择" | |||||
| class="div-inp" | |||||
| filterable | |||||
| clearable | |||||
| > | |||||
| <el-option | |||||
| v-for="item in options12" | |||||
| :key="item.value" | |||||
| :label="item.label" | |||||
| :value="item.value" | |||||
| > | |||||
| </el-option> | |||||
| </el-select> | |||||
| </div> | |||||
| <div class="div-lab"> | <div class="div-lab"> | ||||
| <div class="label">接待时长:</div> | <div class="label">接待时长:</div> | ||||
| <el-select | <el-select | ||||
| @@ -248,6 +289,12 @@ | |||||
| <!-- <el-table-column prop="address" label="禁忌执行率" align="center"> | <!-- <el-table-column prop="address" label="禁忌执行率" align="center"> | ||||
| </el-table-column> --> | </el-table-column> --> | ||||
| <!-- scope --> | <!-- scope --> | ||||
| <el-table-column prop="taboo" label="是否违禁" align="center"> | |||||
| <template slot-scope="{ row }"> {{ row.taboo==0?'否':'是' }} </template> | |||||
| </el-table-column> | |||||
| <el-table-column prop="zfal" label="是否加精" align="center"> | |||||
| <template slot-scope="{ row }"> {{ row.zfal==0?'已加精':'未加精' }} </template> | |||||
| </el-table-column> | |||||
| <el-table-column label="操作" align="center" width="200" fixed="right"> | <el-table-column label="操作" align="center" width="200" fixed="right"> | ||||
| <template slot-scope="{ row }"> | <template slot-scope="{ row }"> | ||||
| <el-button type="text" v-if="rec_index_look" @click="Receivedetailsabout(row)">查看</el-button> | <el-button type="text" v-if="rec_index_look" @click="Receivedetailsabout(row)">查看</el-button> | ||||
| @@ -348,6 +395,26 @@ export default { | |||||
| label: "未标记", | label: "未标记", | ||||
| }, | }, | ||||
| ], | ], | ||||
| options11: [ | |||||
| { | |||||
| value: "0", | |||||
| label: "否", | |||||
| }, | |||||
| { | |||||
| value: "1", | |||||
| label: "是", | |||||
| }, | |||||
| ], | |||||
| options12: [ | |||||
| { | |||||
| value: "0", | |||||
| label: "已加精", | |||||
| }, | |||||
| { | |||||
| value: "1", | |||||
| label: "未加精", | |||||
| }, | |||||
| ], | |||||
| currentPage: 1, | currentPage: 1, | ||||
| size: 10, | size: 10, | ||||
| total: 10, | total: 10, | ||||
| @@ -368,6 +435,8 @@ export default { | |||||
| houseType: "", | houseType: "", | ||||
| dateType: "0", | dateType: "0", | ||||
| projectId: "", | projectId: "", | ||||
| taboo:'', | |||||
| zfal:'' | |||||
| }, | }, | ||||
| }; | }; | ||||
| }, | }, | ||||
| @@ -432,6 +501,8 @@ export default { | |||||
| endDate: "", | endDate: "", | ||||
| houseType: "", | houseType: "", | ||||
| dateType: "0", | dateType: "0", | ||||
| taboo:'', | |||||
| zfal:'', | |||||
| // projectId: this.houseList[0].id, | // projectId: this.houseList[0].id, | ||||
| projectId: | projectId: | ||||
| this.orgType == 3 | this.orgType == 3 | ||||