|
|
@@ -25,7 +25,7 @@ |
|
|
|
<van-row> |
|
|
|
<van-col :span="24">姓名</van-col> |
|
|
|
</van-row> |
|
|
|
<van-row v-for="(item,index) in applicationList" :key="index"> |
|
|
|
<van-row v-for="(item,index) in applicationList" :key="index" @click.prevent ="viewItem(item.id)"> |
|
|
|
<van-col :span="24">{{item.workerName}}</van-col> |
|
|
|
</van-row> |
|
|
|
<div class="name_bg"></div> |
|
|
@@ -41,7 +41,7 @@ |
|
|
|
<van-col :span="5">工日值</van-col> |
|
|
|
<van-col :span="4">金额(元)</van-col> |
|
|
|
</van-row> |
|
|
|
<van-row v-for="(item,index) in applicationList" :key="index"> |
|
|
|
<van-row v-for="(item,index) in applicationList" :key="index" @click="viewItem(item.id)"> |
|
|
|
<van-col :span="5">{{item.workReason}}</van-col> |
|
|
|
<van-col :span="5">{{item.workerNote}}</van-col> |
|
|
|
<van-col :span="5">{{item.workNum}}</van-col> |
|
|
@@ -104,7 +104,7 @@ |
|
|
|
getList(){ |
|
|
|
var _this = this; |
|
|
|
setTimeout(() => { |
|
|
|
console.log(_this.queryParams) |
|
|
|
//console.log(_this.queryParams) |
|
|
|
listOddjob(_this.queryParams).then(response => { |
|
|
|
_this.listLength = response.total; |
|
|
|
_this.applicationList = response.rows; |
|
|
@@ -119,6 +119,15 @@ |
|
|
|
}); |
|
|
|
}, 1000); |
|
|
|
}, |
|
|
|
viewItem(id){ |
|
|
|
this.$router.push({ |
|
|
|
path: "/sunVillage_info/list_tourists_registration_detail", |
|
|
|
query: { |
|
|
|
id: id, |
|
|
|
intent: 'view', |
|
|
|
}, |
|
|
|
}).catch(() => {}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
} |
|
|
|
</script> |
|
|
@@ -378,6 +387,7 @@ |
|
|
|
height: 100%; |
|
|
|
position: absolute; |
|
|
|
top: 0; |
|
|
|
pointer-events: none; |
|
|
|
} |
|
|
|
.name_icon{ |
|
|
|
position: absolute; |
|
|
|