fix
pyt
2025-03-25 2a0937e5308ec186afa714ea3b22fda199c97e16
fix
2个文件已修改
26 ■■■■■ 已修改文件
src/api/compensation-standard.js 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/compensation-standard/index.vue 17 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/compensation-standard.js
@@ -8,4 +8,13 @@
  })
}
// 补偿标准修改(批量修改)
export function edit(data) {
  return request({
    url: '/compensate/edit',
    method: 'post',
    data
  })
}
src/views/compensation-standard/index.vue
@@ -284,7 +284,7 @@
        // 2014年前补偿标准表格数据
        standardsBefore2014: [
          {
            area: '罗湖街道、梧桐山镇、东晓街道、大划街道',
            area: '崇阳街道、崇庆街道、羊马街道、大划街道1',
            type: '集体经济组织成员',
            newPrice: '0万元/㎡',
            newPriceNum: 0,
@@ -293,7 +293,7 @@
            isEditing: false
          },
          {
            area: '罗湖街道、梧桐山镇、东晓街道、大划街道',
            area: '崇阳街道、崇庆街道、羊马街道、大划街道',
            type: '非集体经济组织成员',
            newPrice: '0万元/㎡',
            newPriceNum: 0,
@@ -302,7 +302,7 @@
            isEditing: false
          },
          {
            area: '黄贝街道/街道',
            area: '其余镇/街道',
            type: '集体经济组织成员',
            newPrice: '0万元/㎡',
            newPriceNum: 0,
@@ -311,7 +311,7 @@
            isEditing: false
          },
          {
            area: '黄贝街道/街道',
            area: '其余镇/街道',
            type: '非集体经济组织成员',
            newPrice: '0万元/㎡',
            newPriceNum: 0,
@@ -323,7 +323,7 @@
        // 2014年后补偿标准表格数据
        standardsAfter2014: [
          {
            area: '罗湖街道、梧桐山镇、东晓街道、大划街道',
            area: '崇阳街道、崇庆街道、羊马街道、大划街道',
            type: '集体经济组织成员',
            newPrice: '0万元/㎡',
            newPriceNum: 0,
@@ -332,7 +332,7 @@
            isEditing: false
          },
          {
            area: '罗湖街道、梧桐山镇、东晓街道、大划街道',
            area: '崇阳街道、崇庆街道、羊马街道、大划街道',
            type: '非集体经济组织成员',
            newPrice: '0万元/㎡',
            newPriceNum: 0,
@@ -341,7 +341,7 @@
            isEditing: false
          },
          {
            area: '黄贝街道/街道',
            area: '其余镇/街道',
            type: '集体经济组织成员',
            newPrice: '0万元/㎡',
            newPriceNum: 0,
@@ -350,7 +350,7 @@
            isEditing: false
          },
          {
            area: '黄贝街道/街道',
            area: '其余镇/街道',
            type: '非集体经济组织成员',
            newPrice: '0万元/㎡',
            newPriceNum: 0,
@@ -466,6 +466,7 @@
          this.loading = true;
          try {
            const submitData = this.buildSubmitData();
            await edit(submitData);
            this.$message.success('修改成功');
          } catch (error) {