|
@@ -280,6 +280,7 @@
|
|
|
show-overflow-tooltip
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
+ {{scope.row.new_sale_price}}
|
|
|
<div v-if="table_type === 'add'">
|
|
|
<digital-input
|
|
|
:values="scope.row.new_sale_price"
|
|
@@ -570,6 +571,8 @@ export default {
|
|
|
);
|
|
|
}
|
|
|
});
|
|
|
+
|
|
|
+
|
|
|
this.plan_show.feedback.map((e) => {
|
|
|
e.origin_num = e.num;
|
|
|
e.time_price = "";
|
|
@@ -577,14 +580,16 @@ export default {
|
|
|
return e;
|
|
|
});
|
|
|
|
|
|
- console.log(this.plan_show);
|
|
|
+ // this.$nextTick(() => this.$forceUpdate())
|
|
|
+
|
|
|
+ console.log(this.plan_show)
|
|
|
+
|
|
|
setTimeout(() => {
|
|
|
- this.plan_show.feedback.forEach((a, index) => {
|
|
|
- a.time_price = new Date().valueOf();
|
|
|
- a.time_num = new Date().valueOf();
|
|
|
- this.$set(this.plan_show.feedback, index, this.plan_show.feedback[index]);
|
|
|
- });
|
|
|
- console.log(this.plan_show);
|
|
|
+ // this.plan_show.feedback.forEach((a, index) => {
|
|
|
+ // a.time_price = new Date().valueOf();
|
|
|
+ // a.time_num = new Date().valueOf();
|
|
|
+ // this.$set(this.plan_show.feedback, index, this.plan_show.feedback[index]);
|
|
|
+ // });
|
|
|
}, 100);
|
|
|
},
|
|
|
|