Shannon_mu 3 gadi atpakaļ
vecāks
revīzija
90ebab7a1c
27 mainītis faili ar 205 papildinājumiem un 199 dzēšanām
  1. 2 2
      operationSupport/src/components/common/alertModal.vue
  2. 66 63
      operationSupport/src/views/businessManagement/contractManagement/stepPage/add.vue
  3. 3 3
      operationSupport/src/views/businessManagement/contractManagement/stepPage/details.vue
  4. 2 27
      operationSupport/src/views/businessManagement/contractManagement/stepPage/firstStep.vue
  5. 90 62
      operationSupport/src/views/businessManagement/contractManagement/stepPage/stepTwo.vue
  6. 2 2
      operationSupport/src/views/businessManagement/opportunityManagement/index.vue
  7. 3 3
      operationSupport/src/views/businessManagement/opportunityManagement/setpPage/add.vue
  8. 1 1
      operationSupport/src/views/businessManagement/opportunityManagement/setpPage/details.vue
  9. 2 2
      operationSupport/src/views/communityoperation/advertisingManagement/index.vue
  10. 1 1
      operationSupport/src/views/flow/communityTree.vue
  11. 1 1
      operationSupport/src/views/flow/popups/AddOrEdit.vue
  12. 2 2
      operationSupport/src/views/parkingLotAdministration/pageJump/partitionManagement.vue
  13. 1 1
      operationSupport/src/views/payService/systemSetup/stepPage/communityTree.vue
  14. 1 1
      operationSupport/src/views/payService/systemSetup/stepPage/gateSetup.vue
  15. 1 1
      operationSupport/src/views/payService/systemSetup/stepPage/paymentSetup.vue
  16. 1 1
      operationSupport/src/views/payService/systemSetup/stepPage/valveSetup.vue
  17. 1 1
      operationSupport/src/views/propertyManagement/common/upImage.vue
  18. 1 1
      operationSupport/src/views/propertyManagement/index.vue
  19. 2 2
      operationSupport/src/views/propertyManagement/inform.vue
  20. 5 5
      operationSupport/src/views/propertyManagement/neighbor.vue
  21. 4 4
      operationSupport/src/views/propertyManagement/stepPage/indexEdit.vue
  22. 4 4
      operationSupport/src/views/propertyManagement/stepPage/informAdd.vue
  23. 1 1
      operationSupport/src/views/propertyManagement/style.scss
  24. 1 1
      operationSupport/src/views/workOrders/index.vue
  25. 1 1
      operationSupport/src/views/workOrders/records.vue
  26. 5 5
      operationSupport/src/views/workbench/index.vue
  27. 1 1
      operationSupport/src/views/workbench/style.scss

+ 2 - 2
operationSupport/src/components/common/alertModal.vue

@@ -111,11 +111,11 @@ export default {
         },
         previousStep(id) {
             const component = this.$refs[id];
-            component.previousStep && component.previousStep();
+            component.previousStep && component.previousStep(id);
         },
         nextStep(id) {
             const component = this.$refs[id];
-            component.nextStep && component.nextStep();
+            component.nextStep && component.nextStep(id);
         }
     },
     created() {

+ 66 - 63
operationSupport/src/views/businessManagement/contractManagement/stepPage/add.vue

@@ -1,6 +1,5 @@
 <template>
     <div>
-        <el-form ref="form" :model="formData" :rules="formRules" label-width="90px"></el-form>
         <div class="steps">
             <div class="steps-item active">
                 <div class="circularText"><span>1</span></div>
@@ -17,15 +16,16 @@
                 <div>收款计划</div>
             </div>
         </div>
-        <first-step v-if="showIndex == 0" ref="firststepRef"></first-step>
-        <step-two ref="steptwoRef" v-else-if="showIndex == 1"></step-two>
-        <last-step v-else></last-step>
+        <first-step v-show="showIndex == 0" ref="firststepRef"></first-step>
+        <step-two ref="steptwoRef" v-show="showIndex == 1"></step-two>
+        <last-step v-show="showIndex == 2"></last-step>
     </div>
 </template>
 <script >
 import firstStep from './firstStep.vue';
 import stepTwo from './stepTwo.vue';
 import lastStep from './lastStep.vue';
+import { Promise } from 'q';
 
 export default {
     props: ['params'],
@@ -153,26 +153,22 @@ export default {
             });
             installData.contractHouseDtoList = installObj;
 
-            this.$refs.form.validate((valid) => {
-                if (valid) {
-                    var loading = this.$loading();
-                    this.$http
-                        .post(`/sc-community/contract/${this.params.todo == 'add' ? 'add' : 'edit'}`, installData)
-                        .then(({ status, msg }) => {
-                            if (status == 0) {
-                                this.$message.success(msg);
-                                this.params.callback();
-                                this.$emit('close');
-                            } else {
-                                this.$message.error(msg);
-                            }
-                            loading.close();
-                        })
-                        .catch(() => {
-                            loading.close();
-                        });
-                }
-            });
+            var loading = this.$loading();
+            this.$http
+                .post(`/sc-community/contract/${this.params.todo == 'add' ? 'add' : 'edit'}`, installData)
+                .then(({ status, msg }) => {
+                    if (status == 0) {
+                        this.$message.success(msg);
+                        this.params.callback();
+                        this.$emit('close');
+                    } else {
+                        this.$message.error(msg);
+                    }
+                    loading.close();
+                })
+                .catch(() => {
+                    loading.close();
+                });
         },
         findDetali(id) {
             this.$http
@@ -209,52 +205,59 @@ export default {
                 this.relationTable = res;
             });
         },
-        nextStep() {
+
+        modePop(id) {
+            let indexs = null;
+            this.$store.getters['getPopups'].map((item, index) => {
+                if (item.id == id) {
+                    indexs = index;
+                }
+            });
+            return indexs;
+        },
+        nextStep(id) {
+            let thisPopArr = this.$store.getters['getPopups'];
+            let thisPop = thisPopArr[this.modePop(id)];
             // 0  取消 下一步 ,1 取消 上一步 下一步 ,2 确认 取消 上一步
-            if (this.$store.getters['getPopups'][0].showIndex == 0) {
+            if (thisPop.showIndex == 0) {
                 this.$refs.firststepRef.$refs.form.validate((valid) => {
                     if (valid) {
-                        this.$store.getters['getPopups'][0].showIndex++;
-                        this.showIndex++;
-                        this.$store.getters['getPopups'][0].nextStepButton = true;
-                        this.$store.getters['getPopups'][0].previousStepButton = true;
-                        this.$store.getters['getPopups'][0].showConfirmButton = true;
+                        thisPop.showIndex++;
+                        thisPop.nextStepButton = true;
+                        thisPop.previousStepButton = true;
+                        thisPop.showConfirmButton = true;
+                        this.showIndex = thisPop.showIndex;
                     }
                 });
-            } else if (this.$store.getters['getPopups'][0].showIndex == 1) {
-                this.$store.getters['getPopups'][0].showIndex++;
-                this.showIndex++;
-                this.$refs.steptwoRef.getList();
-                // 第二流程 下一步
-                this.$store.getters['getPopups'][0].nextStepButton = false;
-                this.$store.getters['getPopups'][0].showConfirmButton = false;
-                this.$store.getters['getPopups'][0].previousStepButton = true;
-            } 
-
-            // if (this.$store.getters['getPopups'][0].showIndex == 1) {
-            //     this.$store.getters['getPopups'][0].nextStepButton = true;
-            //     this.$store.getters['getPopups'][0].previousStepButton = true;
-            //     this.$store.getters['getPopups'][0].showConfirmButton = true;
-            // } else if (this.$store.getters['getPopups'][0].showIndex == 2) {
-            //     this.$refs.steptwoRef.getList();
-            //     // 第二流程 下一步
-            //     this.$store.getters['getPopups'][0].nextStepButton = false;
-            //     this.$store.getters['getPopups'][0].showConfirmButton = false;
-            //     this.$store.getters['getPopups'][0].previousStepButton = true;
-            // }
+            } else if (thisPop.showIndex == 1) {
+                new Promise((resolve) => {
+                    this.$refs.steptwoRef.chanIndexSumit(resolve);
+                }).then(() => {
+                    thisPop.showIndex++;
+                    this.$refs.steptwoRef.getList();
+                    // 第二流程 下一步
+                    thisPop.nextStepButton = false;
+                    thisPop.showConfirmButton = false;
+                    thisPop.previousStepButton = true;
+                    this.showIndex = thisPop.showIndex;
+                });
+            }
         },
-        previousStep() {
-            this.$store.getters['getPopups'][0].showIndex--;
-            this.showIndex--;
-            if (this.$store.getters['getPopups'][0].showIndex == 0) {
-                this.$store.getters['getPopups'][0].nextStepButton = true;
-                this.$store.getters['getPopups'][0].previousStepButton = false;
-                this.$store.getters['getPopups'][0].showConfirmButton = true;
-            } else if (this.$store.getters['getPopups'][0].showIndex == 1) {
-                this.$store.getters['getPopups'][0].nextStepButton = true;
-                this.$store.getters['getPopups'][0].previousStepButton = true;
-                this.$store.getters['getPopups'][0].showConfirmButton = true;
+        previousStep(id) {
+            let thisPopArr = this.$store.getters['getPopups'];
+            let thisPop = thisPopArr[this.modePop(id)];
+
+            thisPop.showIndex--;
+            if (thisPop.showIndex == 0) {
+                thisPop.nextStepButton = true;
+                thisPop.previousStepButton = false;
+                thisPop.showConfirmButton = true;
+            } else if (thisPop.showIndex == 1) {
+                thisPop.nextStepButton = true;
+                thisPop.previousStepButton = true;
+                thisPop.showConfirmButton = true;
             }
+            this.showIndex = thisPop.showIndex;
         },
         randomPassword() {
             let sun = 15;

+ 3 - 3
operationSupport/src/views/businessManagement/contractManagement/stepPage/details.vue

@@ -161,11 +161,11 @@ export default {
                 .catch(() => {});
         },
         ruleText(val) {
+            let newVal = '';
             if (!!val) {
-                let res = /###/;
-                val.replace(res, '至');
-                return val;
+                newVal = val.replace(/###/, '至');
             }
+            return newVal;
         }
     },
     created() {

+ 2 - 27
operationSupport/src/views/businessManagement/contractManagement/stepPage/firstStep.vue

@@ -81,7 +81,7 @@
             <el-table-column prop="floorNumber" label="楼层"> </el-table-column>
             <el-table-column prop="roomNumber" label="房间号"> </el-table-column>
             <el-table-column prop="buildingTypeDict" label="房屋类型"> </el-table-column>
-            <el-table-column prop="buildingArea" label="建筑面积">
+            <el-table-column label="建筑面积">
                 <template slot-scope="scope">{{
                     !!scope.row.buildingArea ? scope.row.buildingArea + '㎡' : '-'
                 }}</template></el-table-column
@@ -113,38 +113,13 @@
                 ></el-date-picker> </el-form-item
         ></el-col>
         <div class="formContent-item_title">合同附件</div>
-        <el-form-item label="合同附件"> <bz-upload :className="true"  :uploadArr="$parent.pictureArr" :limit="1"></bz-upload> </el-form-item>
+        <el-form-item label="合同附件"> <bz-upload :className="true" :uploadArr="$parent.pictureArr" :limit="1"></bz-upload> </el-form-item>
     </el-form>
 </template>
 <script>
 export default {
     data() {
         return {
-            formData: {
-                filePath: '',
-                contractType: 0,
-                customerType: 1,
-                communityId: '',
-                signTime: '',
-                startTime: '',
-                endTime: '',
-                customerName: '',
-                customerPhone: '',
-                customerAddress: ''
-            },
-            times: [],
-            pictureArr: [],
-            relationTable: {},
-
-            //社区
-            communityArr: [],
-            //社区树
-            communityTree: [],
-            //楼栋树
-            communityTreeArr: [],
-            //楼栋ids
-            communityTreeIds: [],
-            tableArr: [],
             defaultProps: {
                 multiple: true,
                 // emitPath: false,

+ 90 - 62
operationSupport/src/views/businessManagement/contractManagement/stepPage/stepTwo.vue

@@ -1,5 +1,5 @@
 <template>
-    <el-form ref="form" :model="$parent.formData" :rules="$parent.formRules" label-width="90px">
+    <div>
         <div class="formContent-item_title">房屋信息</div>
 
         <el-table :data="$parent.tableArr" style="width: 100%" class="mrbt20">
@@ -15,67 +15,73 @@
                 }}</template></el-table-column
             >
         </el-table>
-        <div v-for="(item, index) in $parent.idsObj" :key="index">
-            <el-form-item label="租金规则" :rules="rulesFun('租金规则', item.ruleId)">
-                <el-select v-model="item.ruleId" placeholder="请选择租金规则" clearable @change="ruleIdChange(index, item.ruleId)">
-                    <el-option v-for="(item, index) in tegyArr" :key="index" :label="item.chargeName" :value="item.id"></el-option>
-                </el-select>
-            </el-form-item>
-            <el-table :data="item.thisArr" style="width: 100%" class="mrbt20">
-                <el-table-column prop="chargeName" label="费用名称"> </el-table-column>
-                <el-table-column label="计费方式">
-                    <template slot-scope="scope">
-                        <span v-if="scope.row.chargeMode === 1">固定收费 </span>
-                        <span v-if="scope.row.chargeMode === 2">价格*面积收费</span>
-                        <span v-if="scope.row.chargeMode === 3">阶梯计费 </span>
-                        <span v-if="scope.row.chargeMode === 4">单价*用量</span>
-                    </template>
-                </el-table-column>
-                <el-table-column label="单价"> </el-table-column>
-                <el-table-column label="月租金">
-                    <template slot-scope="scope">
-                        {{ scope.row.chargePrice }}
-                    </template>
-                </el-table-column>
-                <el-table-column prop="roomNumber" label="计费周期">
-                    <template slot-scope="scope"> {{ scope.row.chargeCycle || 0 }} 个月 </template>
-                </el-table-column>
-                <el-table-column prop="buildingTypeDict" label="滞纳金标准">
-                    <template slot-scope="scope"> 欠费{{ scope.row.arrearsDays }}天后,收{{ scope.row.lateFee || 0 }} ‰滞纳金 </template>
-                </el-table-column>
-                <el-table-column prop="buildingArea" label="递增规则">
-                    <template slot-scope="scope">
-                        {{ scope.row.increasingYear }}年后,每年递增 {{ scope.row.increasingPercentage || 0 }} %
-                    </template></el-table-column
+        <el-form ref="form" :rules="$parent.idsObjRules" label-width="90px">
+            <div v-for="(item, index) in $parent.idsObj" :key="index">
+                <el-col :span="12">
+                    <el-form-item label="租金规则" :rules="rulesFun('租金规则', item.ruleId)">
+                        <el-select v-model="item.ruleId" placeholder="请选择租金规则" clearable @change="ruleIdChange(index, item.ruleId)">
+                            <el-option v-for="(item, index) in tegyArr" :key="index" :label="item.chargeName" :value="item.id"></el-option>
+                        </el-select>
+                    </el-form-item>
+                </el-col>
+                <el-table :data="item.thisArr" style="width: 100%; clear: both" class="mrbt20">
+                    <el-table-column prop="chargeName" label="费用名称"> </el-table-column>
+                    <el-table-column label="计费方式">
+                        <template slot-scope="scope">
+                            <span v-if="scope.row.chargeMode === 1">固定收费 </span>
+                            <span v-if="scope.row.chargeMode === 2">价格*面积收费</span>
+                            <span v-if="scope.row.chargeMode === 3">阶梯计费 </span>
+                            <span v-if="scope.row.chargeMode === 4">单价*用量</span>
+                        </template>
+                    </el-table-column>
+                    <el-table-column label="单价"> </el-table-column>
+                    <el-table-column label="月租金">
+                        <template slot-scope="scope">
+                            {{ scope.row.chargePrice }}
+                        </template>
+                    </el-table-column>
+                    <el-table-column prop="roomNumber" label="计费周期">
+                        <template slot-scope="scope"> {{ scope.row.chargeCycle || 0 }} 个月 </template>
+                    </el-table-column>
+                    <el-table-column prop="buildingTypeDict" label="滞纳金标准">
+                        <template slot-scope="scope">
+                            欠费{{ scope.row.arrearsDays }}天后,收{{ scope.row.lateFee || 0 }} ‰滞纳金
+                        </template>
+                    </el-table-column>
+                    <el-table-column prop="buildingArea" label="递增规则">
+                        <template slot-scope="scope">
+                            {{ scope.row.increasingYear }}年后,每年递增 {{ scope.row.increasingPercentage || 0 }} %
+                        </template></el-table-column
+                    >
+                </el-table>
+                <el-col :span="13">
+                    <el-form-item label="免租期">
+                        <el-date-picker
+                            v-model="item.timesTwo"
+                            class="timeWidth"
+                            value-format="yyyy-MM"
+                            type="monthrange"
+                            range-separator="至"
+                            start-placeholder="开始月份"
+                            end-placeholder="结束月份"
+                            @change="effectiveDateToggle(item, item.timesTwo)"
+                            :editable="false"
+                        ></el-date-picker>
+                    </el-form-item>
+                </el-col>
+                <el-col :span="12"
+                    ><el-form-item label="租赁保证金">
+                        <el-input v-model="item.earnestMoney" placeholder="请输入租赁保证金"></el-input> </el-form-item
+                ></el-col>
+                <el-col :span="12"
+                    ><el-form-item label="租赁保证金是否抵扣第一期租金:" label-width="220px">
+                        <el-radio v-model="item.enable" :label="1">是</el-radio>
+                        <el-radio v-model="item.enable" :label="2">否</el-radio>
+                    </el-form-item></el-col
                 >
-            </el-table>
-            <el-col :span="13">
-                <el-form-item label="免租期">
-                    <el-date-picker
-                        v-model="item.timesTwo"
-                        class="timeWidth"
-                        value-format="yyyy-MM-dd"
-                        type="daterange"
-                        range-separator="至"
-                        start-placeholder="开始日期"
-                        end-placeholder="结束日期"
-                        @change="effectiveDateToggle(item, item.timesTwo)"
-                        :editable="false"
-                    ></el-date-picker>
-                </el-form-item>
-            </el-col>
-            <el-col :span="12"
-                ><el-form-item label="租赁保证金">
-                    <el-input v-model="item.earnestMoney" placeholder="请输入租赁保证金"></el-input> </el-form-item
-            ></el-col>
-            <el-col :span="12"
-                ><el-form-item label="租赁保证金是否抵扣第一期租金:" label-width="220px">
-                    <el-radio v-model="item.enable" :label="1">是</el-radio>
-                    <el-radio v-model="item.enable" :label="2">否</el-radio>
-                </el-form-item></el-col
-            >
-        </div>
-    </el-form>
+            </div>
+        </el-form>
+    </div>
 </template>
 <script>
 export default {
@@ -83,7 +89,7 @@ export default {
         return {
             times: [],
             tegyArr: [],
-            formRules: {}
+            thisRule: []
         };
     },
     methods: {
@@ -105,6 +111,11 @@ export default {
             item.freeTime = `${!!val ? val[0] + '###' : ''}${!!val ? val[1] : ''}`;
         },
         ruleIdChange(index, id) {
+            if (!!id) {
+                this.thisRule.splice(index, 0, 0);
+            } else {
+                this.thisRule[index] = 1;
+            }
             this.tegyArr.map((item) => {
                 if (item.id == id) {
                     this.$parent.idsObj[index].thisArr = [item];
@@ -150,6 +161,23 @@ export default {
                     this.tegyArr = data.list;
                 })
                 .catch(function () {});
+        },
+        chanIndexSumit(resolve) {
+            if (!!this.thisRule.length) {
+                let len = 0;
+                this.thisRule.map((item) => {
+                    if (item == 0) {
+                        len++;
+                    }
+                });
+                if (this.$parent.tableArr.length == len) {
+                    resolve && resolve();
+                } else {
+                    this.$message.info('请选择完规则项');
+                }
+            } else {
+                this.$message.info('请选择规则项');
+            }
         }
     },
     created() {

+ 2 - 2
operationSupport/src/views/businessManagement/opportunityManagement/index.vue

@@ -146,7 +146,7 @@ export default {
     };
   },
   created () {
-    this.mixins_dataUrl = '/sc-community-web/business/page';
+    this.mixins_dataUrl = '/sc-community/business/page';
     this.mixins_query = {};
     this.mixins_search();
     this.getUserList();
@@ -203,7 +203,7 @@ export default {
       });
     },
     exportExcel () {
-      this.__exportExcel('/sc-community-web/business/excel', this.mixins_query);
+      this.__exportExcel('/sc-community/business/excel', this.mixins_query);
     },
     getUserList () {
       this.$http.get('/sc-user-center/user/findUserList').then(({ data, status, msg }) => {

+ 3 - 3
operationSupport/src/views/businessManagement/opportunityManagement/setpPage/add.vue

@@ -408,9 +408,9 @@ export default {
       console.log('this.formData.intentionLevel', this.formData.intentionLevel);
       this.$refs.formData.validate((valid) => {
         if (valid) {
-          let url = '/sc-community-web/business/add';
+          let url = '/sc-community/business/add';
           if (this.params.todo == 'edit') {
-            url = '/sc-community-web/business/edit';
+            url = '/sc-community/business/edit';
           }
           let houseIds = [];
           this.timePeriod.map((item) => {
@@ -530,7 +530,7 @@ export default {
     });
     if (this.params.todo == 'edit') {
       console.log(this.params.data);
-      let url = `/sc-community-web/business/find/${this.params.data}`;
+      let url = `/sc-community/business/find/${this.params.data}`;
       this.$http.get(url).then(({ status, msg, data }) => {
         if (status == 0) {
           this.close();

+ 1 - 1
operationSupport/src/views/businessManagement/opportunityManagement/setpPage/details.vue

@@ -129,7 +129,7 @@ export default {
   methods: {
     getDatali (id) {
       this.$http
-        .get('/sc-community-web/business/find/' + id)
+        .get('/sc-community/business/find/' + id)
         .then(({ data, msg, status }) => {
           if (status == 0) {
             this.thisItem = data;

+ 2 - 2
operationSupport/src/views/communityoperation/advertisingManagement/index.vue

@@ -165,7 +165,7 @@ export default {
         deluserbyidFn(id) {
             this.$msgBox(`删除`, '删除后将无法恢复,请问是否继续?')
                 .then(() => {
-                    this.$http.post(`/sc-community-web/advertising/delete/${id}`).then(({ status, data, msg }) => {
+                    this.$http.post(`/sc-community/advertising/delete/${id}`).then(({ status, data, msg }) => {
                         if (0 === status) {
                             this.$message({
                                 type: 'success',
@@ -199,7 +199,7 @@ export default {
         Scrap(id) {
             this.$msgBox(`是否确定终止对应的广告?`, '广告终止后无法在移动端播放')
                 .then(() => {
-                    this.$http.post(`/sc-community-web/advertising/expiry/${id}`).then(({ status, data, msg }) => {
+                    this.$http.post(`/sc-community/advertising/expiry/${id}`).then(({ status, data, msg }) => {
                         if (0 === status) {
                             this.$message({
                                 type: 'success',

+ 1 - 1
operationSupport/src/views/flow/communityTree.vue

@@ -38,7 +38,7 @@ export default {
     },
     methods: {
         getOrgTreeList() {
-            this.$http.get('/sc-community-web/assets/community/list').then(({ status, data, msg }) => {
+            this.$http.get('/sc-community/assets/community/list').then(({ status, data, msg }) => {
                 if (status === 0 && data) {
                     this.organList = data;
                     this.$nextTick().then(() => {

+ 1 - 1
operationSupport/src/views/flow/popups/AddOrEdit.vue

@@ -88,7 +88,7 @@ export default {
     },
     methods: {
         getOrgTreeList() {
-            this.$http.get('/sc-community-web/assets/community/list').then(({ status, data, msg }) => {
+            this.$http.get('/sc-community/assets/community/list').then(({ status, data, msg }) => {
                 if (status === 0 && data) {
                     this.organList = data;
                     // this.$nextTick().then(() => {

+ 2 - 2
operationSupport/src/views/parkingLotAdministration/pageJump/partitionManagement.vue

@@ -121,7 +121,7 @@ export default {
         deleteOne(ids) {
             this.$msgBox(`刪除`, '删除后将无法恢复,请问是否继续?')
                 .then(() => {
-                    this.$http.post('/sc-community-web/assets/garage/area/delete', [ids]).then(({ status }) => {
+                    this.$http.post('/sc-community/assets/garage/area/delete', [ids]).then(({ status }) => {
                         if (0 === status) {
                             this.$message({
                                 type: 'success',
@@ -152,7 +152,7 @@ export default {
             });
             this.$msgBox(`删除`, '删除后将无法恢复,请问是否继续?')
                 .then((_) => {
-                    this.$http.post('/sc-community-web/assets/garage/area/delete', ids).then(({ status, data, msg }) => {
+                    this.$http.post('/sc-community/assets/garage/area/delete', ids).then(({ status, data, msg }) => {
                         if (0 === status) {
                             this.$message({
                                 type: 'success',

+ 1 - 1
operationSupport/src/views/payService/systemSetup/stepPage/communityTree.vue

@@ -38,7 +38,7 @@ export default {
     },
     methods: {
         getOrgTreeList() {
-            this.$http.get('/sc-community-web/assets/community/list').then(({ status, data, msg }) => {
+            this.$http.get('/sc-community/assets/community/list').then(({ status, data, msg }) => {
                 if (status === 0 && data) {
                     this.organList = data;
                     this.$nextTick().then(() => {

+ 1 - 1
operationSupport/src/views/payService/systemSetup/stepPage/gateSetup.vue

@@ -77,7 +77,7 @@ export default {
         getData() {
             let instaData = { communityId: this.currentId, category: 3, pageNum: 1, pageSize: 10 };
             this.$http
-                .post('/sc-community-web/systemConfig/page', instaData)
+                .post('/sc-community/systemConfig/page', instaData)
                 .then(({ data, msg, status }) => {
                     if (data.total == 0) {
                         this.formData = JSON.parse(JSON.stringify(this.initFormData));

+ 1 - 1
operationSupport/src/views/payService/systemSetup/stepPage/paymentSetup.vue

@@ -279,7 +279,7 @@ export default {
         getData() {
             let instaData = { communityId: this.currentId, category: 1, pageNum: 1, pageSize: 10 };
             this.$http
-                .post('/sc-community-web/systemConfig/page', instaData)
+                .post('/sc-community/systemConfig/page', instaData)
                 .then(({ data, msg, status }) => {
                     if (data.total == 0) {
                         this.formData = JSON.parse(JSON.stringify(this.initFormData));

+ 1 - 1
operationSupport/src/views/payService/systemSetup/stepPage/valveSetup.vue

@@ -79,7 +79,7 @@ export default {
         getData() {
             let instaData = { communityId: this.currentId, category: 2, pageNum: 1, pageSize: 10 };
             this.$http
-                .post('/sc-community-web/systemConfig/page', instaData)
+                .post('/sc-community/systemConfig/page', instaData)
                 .then(({ data, msg, status }) => {
                     if (data.total == 0) {
                         this.formData = JSON.parse(JSON.stringify(this.initFormData));

+ 1 - 1
operationSupport/src/views/propertyManagement/common/upImage.vue

@@ -3,7 +3,7 @@
         <!-- <el-button class="el-icon-plus" @click="handleSubmit">插入</el-button> -->
         <el-upload
             class="upload-image"
-            action="/sc-community-web/upload/uploadFile"
+            action="/sc-community/upload/uploadFile"
             list-type="picture-card"
             :limit="limit"
             :on-exceed="onExceed"

+ 1 - 1
operationSupport/src/views/propertyManagement/index.vue

@@ -186,7 +186,7 @@ export default {
     },
     created() {
         this.getCommunityList();
-        this.mixins_dataUrl = '/sc-community-web/feedback/page';
+        this.mixins_dataUrl = '/sc-community/feedback/page';
         this.mixins_search();
     },
     mounted() {},

+ 2 - 2
operationSupport/src/views/propertyManagement/inform.vue

@@ -195,7 +195,7 @@ export default {
         //     this.add();
         // }
         this.getCommunityList();
-        this.mixins_dataUrl = '/sc-community-web/notice/page';
+        this.mixins_dataUrl = '/sc-community/notice/page';
         this.mixins_query = {};
         this.mixins_search();
         this.getOrgTreeList();
@@ -380,7 +380,7 @@ export default {
             this.showDetail = false;
             // 弹框关闭事件
             // this.rowDetail = [];
-            this.$http.get('/sc-community-web/notice/find/' + row.id).then((res) => {
+            this.$http.get('/sc-community/notice/find/' + row.id).then((res) => {
                 if (res.status === 0) {
                     // console.log('查看详情res.data.treeData', res.data.treeData);
                     this.rowDetail = res.data;

+ 5 - 5
operationSupport/src/views/propertyManagement/neighbor.vue

@@ -231,7 +231,7 @@ export default {
 
     created() {
         this.getCommunityList();
-        this.mixins_dataUrl = '/sc-community-web/neighbourhood/page';
+        this.mixins_dataUrl = '/sc-community/neighbourhood/page';
         this.mixins_query = {};
         this.mixins_search();
     },
@@ -275,13 +275,13 @@ export default {
         // 删除评论按钮
         deletes(val) {
             console.log('删除', val);
-            this.$http.post('/sc-community-web/neighbourhood/comment/delete/' + val).then((res) => {
+            this.$http.post('/sc-community/neighbourhood/comment/delete/' + val).then((res) => {
                 this.message(res.status, res.msg);
             });
         },
         // // 删除行按钮
         // deleteDetail() {
-        //     this.$http.post('/sc-community-web/neighbourhood/delete/' + this.rowData.id).then((res) => {
+        //     this.$http.post('/sc-community/neighbourhood/delete/' + this.rowData.id).then((res) => {
         //         this.message(res.status, '删除');
         //     });
         // },
@@ -322,7 +322,7 @@ export default {
         clickEdit(type, row) {
             this.mediaList = [];
             if (type == 'endit') {
-                this.$http.get('/sc-community-web/neighbourhood/find/' + row.id).then((res) => {
+                this.$http.get('/sc-community/neighbourhood/find/' + row.id).then((res) => {
                     if (res.status === 0) {
                         if (res.data.file) {
                             let file = res.data.file;
@@ -352,7 +352,7 @@ export default {
                 this.$msgBox(title)
                     .then(() => {
                         this.$http
-                            .post('/sc-community-web/neighbourhood/delete/' + row.id)
+                            .post('/sc-community/neighbourhood/delete/' + row.id)
                             .then(({ status, msg }) => {
                                 if (0 === status) {
                                     this.$message.success(msg);

+ 4 - 4
operationSupport/src/views/propertyManagement/stepPage/indexEdit.vue

@@ -219,12 +219,12 @@ export default {
                         houseId: this.rowData.houseId,
                         id: this.rowData.id
                     };
-                    this.$http.post('/sc-community-web/feedback/update', query).then((res) => {});
+                    this.$http.post('/sc-community/feedback/update', query).then((res) => {});
                     let querys = {
                         fid: this.rowData.id,
                         replyContent: this.replayForm.replay
                     };
-                    this.$http.post('/sc-community-web/feedback/speed/add', querys).then(({ status, msg }) => {
+                    this.$http.post('/sc-community/feedback/speed/add', querys).then(({ status, msg }) => {
                         if (status == 0) {
                             this.$message.success(msg);
                             this.params.callback();
@@ -243,7 +243,7 @@ export default {
         clickEdit(row) {
             this.mediaList = [];
             // 获取处理内容
-            this.$http.post(`/sc-community-web/feedback/find/${row.id}`).then((res) => {
+            this.$http.post(`/sc-community/feedback/find/${row.id}`).then((res) => {
                 if (res.status === 0) {
                     this.rowData = res.data;
                     if (res.data.imageUrl.length > 0) {
@@ -257,7 +257,7 @@ export default {
                 fid: row.id
             };
             // 获取处理记录
-            this.$http.get('/sc-community-web/feedback/speed/list', query).then((res) => {
+            this.$http.get('/sc-community/feedback/speed/list', query).then((res) => {
                 this.recordData = res.data;
             });
         }

+ 4 - 4
operationSupport/src/views/propertyManagement/stepPage/informAdd.vue

@@ -140,7 +140,7 @@
                         <div>
                             <el-upload
                                 class="upload-fill"
-                                action="/sc-community-web/upload/uploadFile"
+                                action="/sc-community/upload/uploadFile"
                                 :on-preview="handlePreview"
                                 :on-remove="handleRemove"
                                 :before-remove="beforeRemove"
@@ -418,7 +418,7 @@ export default {
             this.selectDataHouseTreeData.userID = val.userList;
             // this.selectDataHouseTreeData = val;
             // 获取房间下的usid
-            this.$http.post('/sc-community-web/notice/queryHouseUser', val.userList).then((res) => {
+            this.$http.post('/sc-community/notice/queryHouseUser', val.userList).then((res) => {
                 if (res.status === 0) {
                     this.selectDataHouseTreeData.userList = res.data;
                 } else {
@@ -581,7 +581,7 @@ export default {
                         urgentFlag: this.ruleForm.exigencyOr == '是' ? 1 : 0,
                         userVos: userVos
                     };
-                    this.$http.post('/sc-community-web/notice/add', query).then((res) => {
+                    this.$http.post('/sc-community/notice/add', query).then((res) => {
                         if (res.status === 0) {
                             this.$message.success(res.msg);
                             this.$refs.endit.setContent('');
@@ -990,7 +990,7 @@ $fontSizeSmall: 14px;
         }
         .selet-room {
             display: flex;
-            justify-content: end;
+            justify-content: flex-end;
             // width: 30%;
             max-height: 50vh;
             /deep/ .el-input__inner {

+ 1 - 1
operationSupport/src/views/propertyManagement/style.scss

@@ -436,7 +436,7 @@ $fontSizeSmall: 14px;
                     }
                     .selet-room {
                         display: flex;
-                        justify-content: end;
+                        justify-content: flex-end;
                         // width: 30%;
                         max-height: 50vh;
                         /deep/ .el-input__inner {

+ 1 - 1
operationSupport/src/views/workOrders/index.vue

@@ -116,7 +116,7 @@ export default {
     },
     created() {
         this.getorgTree();
-        this.mixins_dataUrl = '/sc-community-web/workOrder/pageByHandle';
+        this.mixins_dataUrl = '/sc-community/workOrder/pageByHandle';
         this.mixins_query = {};
         this.mixins_search();
         this.getUserList();

+ 1 - 1
operationSupport/src/views/workOrders/records.vue

@@ -133,7 +133,7 @@ export default {
     },
     created() {
         this.getorgTree();
-        this.mixins_dataUrl = '/sc-community-web/workOrder/page';
+        this.mixins_dataUrl = '/sc-community/workOrder/page';
         this.mixins_query = {};
         this.mixins_search();
     },

+ 5 - 5
operationSupport/src/views/workbench/index.vue

@@ -265,7 +265,7 @@ export default {
         /** 查看通知公告详情*/
         clickDatail(val) {
             // this.rowDetail = [];
-            this.$http.get('/sc-community-web/notice/find/' + val).then((res) => {
+            this.$http.get('/sc-community/notice/find/' + val).then((res) => {
                 if (res.status === 0) {
                     this.rowDetail = res.data;
                     let treeData = JSON.parse(res.data.treeData);
@@ -453,7 +453,7 @@ export default {
 
         // 获取待处理事项
         getPendData() {
-            this.$http.get('/sc-community-web/Workbench/pendingMatters').then((res) => {
+            this.$http.get('/sc-community/Workbench/pendingMatters').then((res) => {
                 if (res.status == 0) {
                     this.pendData = res.data;
                 } else {
@@ -463,7 +463,7 @@ export default {
         },
         // 获取房屋信息
         getHouseData() {
-            this.$http.get('/sc-community-web/Workbench/totalHouseInfo').then((res) => {
+            this.$http.get('/sc-community/Workbench/totalHouseInfo').then((res) => {
                 if (res.status == 0) {
                     this.houseData = res.data;
                 } else {
@@ -473,7 +473,7 @@ export default {
         },
         // 获取告警信息
         getWarnData() {
-            this.$http.get('/sc-community-web/Workbench/getWaringInfo').then((res) => {
+            this.$http.get('/sc-community/Workbench/getWaringInfo').then((res) => {
                 if (res.status == 0) {
                     this.warnData = res.data;
                 } else {
@@ -484,7 +484,7 @@ export default {
 
         // 获取通知信息
         getInformData() {
-            this.$http.get('/sc-community-web/Workbench/getNoticeInfo').then((res) => {
+            this.$http.get('/sc-community/Workbench/getNoticeInfo').then((res) => {
                 if (res.status == 0) {
                     let data = res.data;
                     this.informData = data;

+ 1 - 1
operationSupport/src/views/workbench/style.scss

@@ -121,7 +121,7 @@
                     }
                     .center-right-image {
                         display: flex;
-                        justify-content: end;
+                        justify-content: flex-end;
                         align-items: flex-end;
                         margin-top: 10px;
                         padding-bottom: 20px;