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

领队用款

parent 609c6993
......@@ -384,7 +384,7 @@
<td>{{item.TCNUMS}}</td>
<td>
<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 width="80" class="_zhidan">
<input type="button" v-if="isUpdate=='true'" value="制单" class="normalBtn" @click="goZhiDan(item)" />
......@@ -650,7 +650,7 @@
SourceID: 0,
TCIDList: TCIDARR,
CostType: 56,
Money: this.LeaderGetPrice,
Money: obj.LeaderGetPrice,
}
this.$router.push({
name: 'ChoiceAddFinancialDocuments',
......@@ -799,7 +799,10 @@
getNav(){
this.apipost('dmcstatistics_post_GetHotelStaticsByTCIDs',{TCIDs:this.$route.query.id},res=>{
if(res.data.resultCode==1){
this.nav=res.data.data
let nav = res.data.data
nav.forEach(x=>{
nav.LeaderGetPrice = 0;
})
}else{
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