MrShi
2024-12-06 0574b9145e131043eb2f3c8867ef3aea4ab3a86e
改bug
已修改4个文件
12 ■■■■■ 文件已修改
admin/.env.test 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/contract/components/contractEdit.vue 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/finance/components/bullEdit.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/finance/components/details.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/.env.test
@@ -7,7 +7,7 @@
# VUE_APP_API_URL  = 'http://192.168.0.163:10010/'
# 萍姐
VUE_APP_API_URL  = 'http://192.168.0.105:10010/'
VUE_APP_API_URL  = 'http://192.168.0.108:10010/'
# 测试服务
# VUE_APP_API_URL  = 'https://dmtest.ahapp.net/gateway_interface'
admin/src/views/contract/components/contractEdit.vue
@@ -843,6 +843,8 @@
        this.$emit('close')
      } else {
        this.activeTabs = 0
        this.zlList = []
        this.wyList = []
      }
    }
  }
admin/src/views/finance/components/bullEdit.vue
@@ -219,7 +219,7 @@
      this.$refs.selectHouse.open('选择房源', { contractId: this.form.contractId, type: 0 })
    },
    getCompanyList () {
      companyList({})
      companyList({ type: 2, status: 0 })
        .then(res => {
          this.comparyList = res
        })
admin/src/views/finance/components/details.vue
@@ -7,7 +7,7 @@
                <el-tag type="success" v-if="info.status === 0">开启</el-tag>
                <el-tag type="info" v-if="info.status === 1">关闭</el-tag>
            </div>
            <el-button type="danger" v-if="info.status === 0" @click="closeDW()">关闭流水</el-button>
            <el-button type="danger" v-if="info.status !== 1 || !['3','4'].includes(info.contractStatus)" @click="closeDW()">关闭流水</el-button>
        </div>
        <div class="line"></div>
        <div class="main">
@@ -225,13 +225,13 @@
      tabsClick(val) {
        this.activeTabs = val
      },
      closeDW (id) {
      closeDW () {
        this.$confirm('确认关闭此流水吗?', '提示', {
          confirmButtonText: '确定',
          cancelButtonText: '取消',
          type: 'warning'
        }).then(() => {
          close(id)
          close(this.info.id)
            .then(res => {
              this.getDetails()
            })