Commit 393388db authored by 华国豪's avatar 华国豪 🙄

领队用款

parent 609c6993
...@@ -384,7 +384,7 @@ ...@@ -384,7 +384,7 @@
<td>{{item.TCNUMS}}</td> <td>{{item.TCNUMS}}</td>
<td> <td>
<span v-if="item.LeaderGetPrice>0">{{moneyFormat(item.LeaderGetPrice)}}</span> <span v-if="item.LeaderGetPrice>0">{{moneyFormat(item.LeaderGetPrice)}}</span>
<el-input v-else class="w300" type="number" v-model="LeaderGetPrice"></el-input> <el-input v-else class="w300" type="number" v-model="item.LeaderGetPrice"></el-input>
</td> </td>
<td width="80" class="_zhidan"> <td width="80" class="_zhidan">
<input type="button" v-if="isUpdate=='true'" value="制单" class="normalBtn" @click="goZhiDan(item)" /> <input type="button" v-if="isUpdate=='true'" value="制单" class="normalBtn" @click="goZhiDan(item)" />
...@@ -650,7 +650,7 @@ ...@@ -650,7 +650,7 @@
SourceID: 0, SourceID: 0,
TCIDList: TCIDARR, TCIDList: TCIDARR,
CostType: 56, CostType: 56,
Money: this.LeaderGetPrice, Money: obj.LeaderGetPrice,
} }
this.$router.push({ this.$router.push({
name: 'ChoiceAddFinancialDocuments', name: 'ChoiceAddFinancialDocuments',
...@@ -799,7 +799,10 @@ ...@@ -799,7 +799,10 @@
getNav(){ getNav(){
this.apipost('dmcstatistics_post_GetHotelStaticsByTCIDs',{TCIDs:this.$route.query.id},res=>{ this.apipost('dmcstatistics_post_GetHotelStaticsByTCIDs',{TCIDs:this.$route.query.id},res=>{
if(res.data.resultCode==1){ if(res.data.resultCode==1){
this.nav=res.data.data let nav = res.data.data
nav.forEach(x=>{
nav.LeaderGetPrice = 0;
})
}else{ }else{
this.$message.error(res.data.message) this.$message.error(res.data.message)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment