LAPTOP-FO2T5SIU\35838 6 months ago
parent
commit
f7a86e490c

+ 4 - 2
src/static/utils/constant.js

@@ -1,8 +1,10 @@
 // 服务端地址
 // const BASE_URI = process.env.VUE_APP_WEB // 利用环境变量
-// const BASE_URI = '/webServer' // 代理模式代理地址
+const BASE_URI = '/webServer' // 代理模式代理地址
 // const BASE_URI = 'https://www.idea-co-sf.com/settleDownApi'
-const BASE_URI = 'http://10.1.4.70/settleDownApi' // 正式
+// const BASE_URI = 'http://10.1.4.70/settleDownApi' // 正式内网
+// const BASE_URI = 'http://112.25.69.225:8008/settleDownApi' // 正式外网
+
 
 const WEB_URL = 'https://2.21.138.147:8080/lifeline' // 正式
 

+ 1 - 1
src/views/parkAssets/component/uploadCost.vue

@@ -39,7 +39,7 @@
                 accept=".xlsx"
                 action="#"
               >
-                <el-button class="mtmb16" size="small" style="margin-top: 0;height: 33px" type="primary">上传文件</el-button>
+                <el-button class="mtmb16" size="small" style="margin-top: 0;height: 33px" type="primary">新增上传</el-button>
                 <div slot="file" slot-scope="{file}">
                   <a :href="file.url">{{ file.name }}</a>
                   <span class="el-upload-list__item-actions">

+ 22 - 1
src/views/parkAssets/parkRoom/index.vue

@@ -657,7 +657,6 @@ export default {
             const _this = this
             this.$refs.houseForm.validate(valid => {
                 if (valid) {
-                    _this.loadingFlag = true
                     const ids = this.houseForm.findids
                     if (ids != null && ids != [] && ids != '') {
                         this.houseForm.groupId = ids[0]
@@ -667,6 +666,28 @@ export default {
                     const extraData = {
                     }
                     const postData = Object.assign({}, this.houseForm, extraData)
+                    if (!postData.groupId) {
+                        this.$message({
+                            message: '请选择小区',
+                            type: 'warning'
+                        })
+                        return
+                    }
+                    if (!postData.discId) {
+                        this.$message({
+                            message: '请选择分期',
+                            type: 'warning'
+                        })
+                        return
+                    }
+                    if (!postData.buildId) {
+                        this.$message({
+                            message: '请选择楼栋',
+                            type: 'warning'
+                        })
+                        return
+                    }
+                    _this.loadingFlag = true
                     this.baseRequest(this.urlStr, postData).then((res) => {
                         this.houseForm = {}
                         this.dialogVisible = false

+ 22 - 0
src/views/signingManagement/contractManagement/contractAdd.vue

@@ -250,6 +250,28 @@
             <!--                </el-form-item>-->
             <!--              </el-col>-->
             <!--            </el-row>-->
+            <el-row>
+              <el-col :span="5" class="col-txt"><span>房款存入账号开户行</span></el-col>
+              <el-col :span="18" class="col-input">
+                <el-form-item>
+                    <el-autocomplete
+                        class="inline-input"
+                        v-model="form.bankName"
+                        :fetch-suggestions="querySearch"
+                        placeholder="请输入内容"
+                        @select="handleSelect"
+                    ></el-autocomplete>
+                </el-form-item>
+              </el-col>
+            </el-row>
+            <el-row>
+              <el-col :span="5" class="col-txt"><span>房款存入账号</span></el-col>
+              <el-col :span="18" class="col-input">
+                <el-form-item>
+                  <el-input v-model="form.bankNumber" />
+                </el-form-item>
+              </el-col>
+            </el-row>
             <el-row>
               <el-divider />
             </el-row>