|
|
@@ -9,7 +9,7 @@
|
|
|
<block v-for="(item, index) in searchList" :key="index">
|
|
|
<view style="margin-bottom:28upx;" @click="addData(item)">
|
|
|
<view>编号 {{item.orderSn}}</view>
|
|
|
- <view>时间 {{item.entryTime.substr(5,11)}}</view>
|
|
|
+ <view>时间 {{item.entryTime.substr(2,14)}}</view>
|
|
|
<view>金额 ¥{{item.actPrice}}</view>
|
|
|
</view>
|
|
|
</block>
|
|
|
@@ -211,7 +211,7 @@ export default {
|
|
|
that.searchList = [];
|
|
|
return false
|
|
|
}
|
|
|
- getDebtList({id:this.option.id,shortNo:e}).then(res=>{
|
|
|
+ getDebtList({id:this.option.id,shortOrderSn:e}).then(res=>{
|
|
|
if(res.code == 1){
|
|
|
if (res.data.list && !this.$util.isEmpty(res.data.list)) {
|
|
|
that.searchList = res.data.list
|