Commit afd5a54f by 宋毅

tj

parent 71e4ec44
...@@ -236,7 +236,7 @@ ...@@ -236,7 +236,7 @@
<!-- <span style="margin-right:30px;text-align: center;color: #03004C;">官费总额:<i <!-- <span style="margin-right:30px;text-align: center;color: #03004C;">官费总额:<i
style="color:#E50778;font-style: normal;">¥{{form.totalPublicExpense}}</i></span> --> style="color:#E50778;font-style: normal;">¥{{form.totalPublicExpense}}</i></span> -->
<span style="margin-right:30px;text-align: center;color: #03004C;font-weight: 700;">应付总额:<i <span style="margin-right:30px;text-align: center;color: #03004C;font-weight: 700;">应付总额:<i
style="color:#E50778;font-style: normal;font-size: 24px;">¥{{totalPrices?totalPrices:\'0.00\'}}</i></span> style="color:#E50778;font-style: normal;font-size: 24px;">¥{{form.totalSum?form.totalSum:\'0.00\'}}</i></span>
<el-button type="primary" style="padding:8px 20px;width:150px; background: rgb(81, 210, 183);width: 170px;border-radius:0;color:#fff;border:0;" <el-button type="primary" style="padding:8px 20px;width:150px; background: rgb(81, 210, 183);width: 170px;border-radius:0;color:#fff;border:0;"
@click="submitForm(\'form\')">下一步</el-button> @click="submitForm(\'form\')">下一步</el-button>
</div> </div>
......
...@@ -364,7 +364,7 @@ ...@@ -364,7 +364,7 @@
watch: { watch: {
nclOne: { nclOne: {
handler(newVal, oldVal){ handler(newVal, oldVal){
this.totalPrices = (newVal.length * 300).toFixed(2); this.form.totalSum = (newVal.length * this.form.totalPrices).toFixed(2);
if (newVal.length > 0) { if (newVal.length > 0) {
if (newVal.length > 1) { if (newVal.length > 1) {
this.$refs.tree.setChecked(newVal[1], false); this.$refs.tree.setChecked(newVal[1], false);
...@@ -469,6 +469,7 @@ ...@@ -469,6 +469,7 @@
this.$root.loading = false; this.$root.loading = false;
console.log(d, "cccccccccccccccccc"); console.log(d, "cccccccccccccccccc");
if (d.status == 0) { if (d.status == 0) {
this.form.totalPrices = d.data[0].proPrice;
this.dataList = d.data; this.dataList = d.data;
this.dataList.map((item, index) => { this.dataList.map((item, index) => {
console.log(item.productDesc); console.log(item.productDesc);
......
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