Commit 2b39a498 authored by 沈良进's avatar 沈良进

save

parent f36a661e
...@@ -524,6 +524,11 @@ ...@@ -524,6 +524,11 @@
}}</span> }}</span>
</template> </template>
</el-table-column> --> </el-table-column> -->
<el-table-column label="待收金额" min-width="100">
<template slot-scope="scope">
<span class="fz15 fbold">{{ scope.row.DueInMoney || '-' }}</span>
</template>
</el-table-column>
<el-table-column label="利润" min-width="100"> <el-table-column label="利润" min-width="100">
<template slot-scope="scope"> <template slot-scope="scope">
<span class="fz15 fbold">{{ scope.row.Income-scope.row.CostMoney-scope.row.Refund>0?(scope.row.Income-scope.row.CostMoney-scope.row.Refund).toFixed(2):'-' }}</span> <span class="fz15 fbold">{{ scope.row.Income-scope.row.CostMoney-scope.row.Refund>0?(scope.row.Income-scope.row.CostMoney-scope.row.Refund).toFixed(2):'-' }}</span>
......
...@@ -213,7 +213,6 @@ ...@@ -213,7 +213,6 @@
<div <div
v-if="accountList.length" v-if="accountList.length"
style=" style="
padding: 20px;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
...@@ -255,7 +254,6 @@ ...@@ -255,7 +254,6 @@
:placeholder="$t('fnc.khleixing')" :placeholder="$t('fnc.khleixing')"
class="w135 _border_b_1" class="w135 _border_b_1"
> >
<el-option label="不限" value="" key="0"> </el-option>
<el-option <el-option
v-for="item in ClientTypeList" v-for="item in ClientTypeList"
:label="item.Name" :label="item.Name"
...@@ -501,10 +499,9 @@ export default { ...@@ -501,10 +499,9 @@ export default {
// this.msg.Type= id; // this.msg.Type= id;
// this.addMsg.ObjID=this.$route.query.id || 0; // this.addMsg.ObjID=this.$route.query.id || 0;
// this.addMsg.Type= id; // this.addMsg.Type= id;
this.financeinfo_post_GetClientTypeList();
this.getBank(); this.getBank();
this.getList();
this.changeTitle(); this.changeTitle();
this.financeinfo_post_GetClientTypeList();
}, },
methods: { methods: {
financeinfo_post_GetClientTypeList() { financeinfo_post_GetClientTypeList() {
...@@ -515,6 +512,8 @@ export default { ...@@ -515,6 +512,8 @@ export default {
(res) => { (res) => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.ClientTypeList = res.data.data; this.ClientTypeList = res.data.data;
this.msg.Type = this.ClientTypeList[0].ID
this.getList();
} }
}, },
(err) => {} (err) => {}
...@@ -603,6 +602,10 @@ export default { ...@@ -603,6 +602,10 @@ export default {
this.$message.error(this.$t("visaT.Pleasefillin") + this.nameD); this.$message.error(this.$t("visaT.Pleasefillin") + this.nameD);
return; return;
} }
if (this.addMsg.Type == "") {
this.$message.error(this.$t("visaT.Pleasefillin") + this.nameE);
return;
}
// 查询是否有冲突的账户信息 // 查询是否有冲突的账户信息
this.checkCanAdd(); this.checkCanAdd();
}, },
......
...@@ -139,7 +139,7 @@ ...@@ -139,7 +139,7 @@
</div> </div>
</template> </template>
<script> <script>
import OrderList from './OrderList.vue'; import OrderList from './orderList';
export default { export default {
props:['pagesTitle','dataObj'], props:['pagesTitle','dataObj'],
components: { OrderList }, components: { OrderList },
......
...@@ -571,6 +571,11 @@ ...@@ -571,6 +571,11 @@
<span class="fz15 fbold">{{ scope.row.Refund ? scope.row.Refund : "-" }}</span> <span class="fz15 fbold">{{ scope.row.Refund ? scope.row.Refund : "-" }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="待收金额" min-width="100">
<template slot-scope="scope">
<span class="fz15 fbold">{{ scope.row.DueInMoney || '-' }}</span>
</template>
</el-table-column>
<el-table-column label="利润" min-width="100"> <el-table-column label="利润" min-width="100">
<template slot-scope="scope"> <template slot-scope="scope">
<span class="fz15 fbold">{{ scope.row.Income-scope.row.CostMoney-scope.row.Refund>0?(scope.row.Income-scope.row.CostMoney-scope.row.Refund).toFixed(2):'-' }}</span> <span class="fz15 fbold">{{ scope.row.Income-scope.row.CostMoney-scope.row.Refund>0?(scope.row.Income-scope.row.CostMoney-scope.row.Refund).toFixed(2):'-' }}</span>
......
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