zuozhengqing
2023-10-18 98b8153d3e2f2f39c1f0f8ee4d1633fb46668d41
销售明细单-收款计划表格数据回显
2个文件已修改
10 ■■■■ 已修改文件
src/views/other/payment/collectionPlan/AddCollectionPlan.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/other/payment/collectionPlan/index.vue 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/other/payment/collectionPlan/AddCollectionPlan.vue
@@ -142,7 +142,7 @@
        </div>
        <div class="btn-view">
          <el-button type="primary" size="small" @click="saveClick">保存</el-button>
          <el-button size="small" @click="editConfig.visible = false">取消</el-button>
          <el-button size="small" @click="droppedClick">取消</el-button>
        </div>
      </div>
    </el-dialog>
@@ -247,6 +247,10 @@
        }
      }
    },
    droppedClick(){
      this.editConfig.visible = false
      this.$parent.getData()
    },
    // 计算计划总额
    sumTotalAmount() {
      this.planAmount = 0
src/views/other/payment/collectionPlan/index.vue
@@ -178,8 +178,10 @@
          if (res.code === 200) {
            if (res.data.data && res.data.data.length > 0) {
              const list = res.data.data.map((item) => {
                item.client_name=this.addConfig.client_name
                item.number=item.term
                return {
                  ...item
                  ...item,
                }
              })
              this.tableList.tableInfomation = list || []