|
|
|
|
@ -29,7 +29,7 @@
|
|
|
|
|
v-model="query.problemSourcesCode" |
|
|
|
|
placeholder="问题来源1" |
|
|
|
|
> |
|
|
|
|
<el-option label="现场督察" value="16"/> |
|
|
|
|
<el-option label="现场督察" value="13"/> |
|
|
|
|
</el-select> |
|
|
|
|
</el-col> |
|
|
|
|
|
|
|
|
|
@ -957,7 +957,7 @@ const query = ref({
|
|
|
|
|
size: 10, |
|
|
|
|
responderKey: "name", |
|
|
|
|
blameKey: "name", |
|
|
|
|
problemSourcesCode: '16', |
|
|
|
|
problemSourcesCode: '13', |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const list = ref([]); |
|
|
|
|
@ -967,7 +967,7 @@ const loading = ref(true);
|
|
|
|
|
|
|
|
|
|
function getList() { |
|
|
|
|
// 强制设置业务类别和问题来源的固定值 |
|
|
|
|
query.value.problemSourcesCode = '16'; |
|
|
|
|
query.value.problemSourcesCode = '13'; |
|
|
|
|
loading.value = true; |
|
|
|
|
listNegative(query.value).then((data) => { |
|
|
|
|
list.value = data.records; |
|
|
|
|
@ -995,7 +995,7 @@ function reset() {
|
|
|
|
|
size: 10, |
|
|
|
|
responderKey: "name", |
|
|
|
|
blameKey: "name", |
|
|
|
|
problemSourcesCode: '16', |
|
|
|
|
problemSourcesCode: '13', |
|
|
|
|
}; |
|
|
|
|
tableRef.value.clearSort(); |
|
|
|
|
getList(); |
|
|
|
|
@ -1025,7 +1025,7 @@ async function updateQuery() {
|
|
|
|
|
query.value.processingStatus = ['signing', 'processing', 'approval']; |
|
|
|
|
} |
|
|
|
|
// 确保业务类别和问题来源的固定值 |
|
|
|
|
query.value.problemSourcesCode = '16'; |
|
|
|
|
query.value.problemSourcesCode = '13'; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
onMounted(() => { |
|
|
|
|
|