Commit 7812ff2b authored by 沈良进's avatar 沈良进
parents 321fd00e 4e2986cb
...@@ -94,12 +94,12 @@ ...@@ -94,12 +94,12 @@
<li> <li>
<em>订单号</em> <em>订单号</em>
<el-input maxlength="50" v-model="msg.OrderId" class="permiss-input w200" <el-input maxlength="50" v-model="msg.OrderId" class="permiss-input w200"
@keyup.native.enter="handleCurrentChange(1)" :placeholder="$t('pub.pleaseImport')"></el-input> @change="handleCurrentChange(1)" :placeholder="$t('pub.pleaseImport')"></el-input>
</li> </li>
<li> <li>
<em>团号</em> <em>团号</em>
<el-input maxlength="50" v-model="msg.TCNUM" class="permiss-input w200" <el-input maxlength="50" v-model="msg.TCNUM" class="permiss-input w200"
@keyup.native.enter="handleCurrentChange(1)" :placeholder="$t('pub.pleaseImport')"></el-input> @change="handleCurrentChange(1)" :placeholder="$t('pub.pleaseImport')"></el-input>
</li> </li>
<li> <li>
<em>订单类型</em> <em>订单类型</em>
...@@ -338,7 +338,8 @@ ...@@ -338,7 +338,8 @@
let data = [{ let data = [{
path: "", path: "",
OrderId: row.OrderId, OrderId: row.OrderId,
Type: '' Type: '',
PeriodId: this.msg.PeriodId
}] }]
let href let href
let url = this.domainManager().crmRoutingUrl; let url = this.domainManager().crmRoutingUrl;
...@@ -410,6 +411,7 @@ ...@@ -410,6 +411,7 @@
name: name, name: name,
query: { query: {
OrderId: row.OrderId, OrderId: row.OrderId,
PeriodId: this.msg.PeriodId,
blank: "y", blank: "y",
} }
}); });
......
...@@ -27,7 +27,6 @@ ...@@ -27,7 +27,6 @@
<span class="fz15 fbold"> <span class="fz15 fbold">
<!-- {{objNew.commissionCurrency?objNew.commissionCurrency:objNew.CurrencyName!='人民币'?objNew.CurrencyName:'¥'}} --> <!-- {{objNew.commissionCurrency?objNew.commissionCurrency:objNew.CurrencyName!='人民币'?objNew.CurrencyName:'¥'}} -->
{{ objNew.commissionMoney?moneyFormat(objNew.commissionMoney):objNew.SellCommission }} {{ objNew.commissionMoney?moneyFormat(objNew.commissionMoney):objNew.SellCommission }}
{{objNew.commissionCurrency?objNew.commissionCurrency:''}}
</span> </span>
</span> </span>
<el-dialog width="1000px" title="提成详情" :visible.sync="outerVisible" center> <el-dialog width="1000px" title="提成详情" :visible.sync="outerVisible" center>
...@@ -141,6 +140,7 @@ ...@@ -141,6 +140,7 @@
objNew: { objNew: {
handler(val, oldVal) { handler(val, oldVal) {
this.msg.OrderId = val.id?val.id:val.OrderId this.msg.OrderId = val.id?val.id:val.OrderId
this.msg.PeriodId = this.$route.query.PeriodId?this.$route.query.PeriodId:-1
}, },
deep: true, deep: true,
immediate: true immediate: true
......
...@@ -1716,7 +1716,7 @@ ...@@ -1716,7 +1716,7 @@
<p v-if="item.tradeWay == 1">{{ item.platformOrder }}</p> <p v-if="item.tradeWay == 1">{{ item.platformOrder }}</p>
<p v-if="item.commissionMoney" style="color: red"> <p v-if="item.commissionMoney" style="color: red">
<span style="float: left;">{{ $t("salesModule.Commission") }}</span> <span style="float: left;">{{ $t("salesModule.Commission") }}</span>
<commissionDialog :objNew="item"></commissionDialog> <commissionDialog :objNew="item"></commissionDialog>{{item.commissionCurrency}}
<!-- {{ item.commissionMoney }} {{item.commissionCurrency}} --> <!-- {{ item.commissionMoney }} {{item.commissionCurrency}} -->
</p> </p>
<p v-else-if="item.latestCommissionMoney" style="color: red"> <p v-else-if="item.latestCommissionMoney" style="color: red">
......
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