md
This commit is contained in:
parent
479f3a5303
commit
44e8630301
@ -9,6 +9,14 @@ export function listEmisSettleSubBill(query) {
|
||||
})
|
||||
}
|
||||
|
||||
export function listEmisCanInvoiceSettleSubBill(query) {
|
||||
return request({
|
||||
url: '/emis/emisSettleSubBill/listCanInvoice',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
export function getQueryStatInfoMap(query) {
|
||||
return request({
|
||||
url: '/emis/emisSettleSubBill/getQueryStatInfoMap',
|
||||
|
||||
@ -72,14 +72,14 @@
|
||||
|
||||
</div>
|
||||
|
||||
<div style="margin-bottom:20px">
|
||||
<!-- <div style="margin-bottom:20px">
|
||||
<div style="font-weight:500;margin-bottom:20px">
|
||||
子账单列表:
|
||||
</div>
|
||||
<div>
|
||||
<SubBillList :settleBillNo="settleBillNo"> </SubBillList>
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
@ -198,7 +198,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {listEmisSettleSubBill} from "@/api/emis/emisSettleSubBill";
|
||||
import {listEmisSettleSubBill,listEmisCanInvoiceSettleSubBill} from "@/api/emis/emisSettleSubBill";
|
||||
import { addEmisSettleInvoiceRecord } from "@/api/emis/emisSettleInvoiceRecord";
|
||||
import CustomerInvoiceInfoPicker from '@/views/emis/EmisBaseTools/CustomerInvoiceInfoPicker.vue';
|
||||
import { parseTime,genJsSeqNo } from "@/utils/custom";
|
||||
@ -315,7 +315,7 @@ export default {
|
||||
}
|
||||
|
||||
// 查询子账单
|
||||
let res=await listEmisSettleSubBill(qParam);
|
||||
let res=await listEmisCanInvoiceSettleSubBill(qParam);
|
||||
console.log("===>=res==>",res)
|
||||
if(res.code==200){
|
||||
res.rows.forEach(itemSubBill=>{
|
||||
@ -352,7 +352,7 @@ export default {
|
||||
}
|
||||
|
||||
// 查询子账单
|
||||
let res=await listEmisSettleSubBill(qParam);
|
||||
let res=await listEmisCanInvoiceSettleSubBill(qParam);
|
||||
console.log("===>=res==>",res)
|
||||
if(res.code==200){
|
||||
res.rows.forEach(itemSubBill=>{
|
||||
|
||||
@ -31,9 +31,9 @@
|
||||
<el-tag type="success" v-if="scope.row.settleType == '1'">现金收款</el-tag>
|
||||
<el-tag type="success" v-if="scope.row.settleType == '2'">月结收款</el-tag>
|
||||
</span>
|
||||
<span v-if="scope.row.recType == '1'">
|
||||
<el-tag type="success" v-if="scope.row.settleType == '1'">现金退款</el-tag>
|
||||
<el-tag type="success" v-if="scope.row.settleType == '2'">月结退款</el-tag>
|
||||
<span v-if="scope.row.recType == '2'">
|
||||
<el-tag type="danger" v-if="scope.row.settleType == '1'">现金退款</el-tag>
|
||||
<el-tag type="danger" v-if="scope.row.settleType == '2'">月结退款</el-tag>
|
||||
</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user