月结客户额度和临时月结额度查询条件参数调整

This commit is contained in:
wuteng 2025-07-22 15:36:07 +08:00
parent 8333758a89
commit 182b4759b2

View File

@ -9,7 +9,7 @@
style="width: 100%;" style="width: 100%;"
:disabled="disabled" :disabled="disabled"
@change="onChange"> @change="onChange">
<el-option v-for="item in optionItems" :key="item.custNo" :label="item.custName" :value="item.custNo" ></el-option> <el-option v-for="item in optionItems" :key="item.customerCode" :label="item.custName" :value="item.customerCode" ></el-option>
</el-select> </el-select>
<!-- item.custNo+'-'+ --> <!-- item.custNo+'-'+ -->
</template> </template>
@ -101,6 +101,7 @@
this.bakOptionItems=[]; this.bakOptionItems=[];
this.optionItems=[]; this.optionItems=[];
listSimpleEmisMonthpayAccount(queryParams).then(response => { listSimpleEmisMonthpayAccount(queryParams).then(response => {
console.log('response',response.rows);
this.loading = false; this.loading = false;
this.bakOptionItems = response.rows; this.bakOptionItems = response.rows;
this.optionItems =this.bakOptionItems; this.optionItems =this.bakOptionItems;