snow 2 years ago
parent
commit
41931e80c7

+ 13 - 0
src/views/purchaseIn/workbench/index.vue

@@ -56,6 +56,19 @@
                     {{ item.original_price }}元/{{ item.num }}{{ unit }}</span
                   >
                 </li>
+
+                <li class="fl item-li">
+                  <span class="label">公司编码:</span>
+                  <span class="label-main">
+                    {{item.companyNo}}
+                  </span>
+                </li>
+                <li class="fl item-li">
+                  <span class="label">公司名称:</span>
+                  <span class="label-main">
+                    {{item.companyName}}
+                  </span>
+                </li>
               </ul>
             </div>
             <div class="no-data">暂无数据!</div>

+ 12 - 7
src/views/sellOut/project/components/setPlan.vue

@@ -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);
     },