Browse Source

style(样式):供应商样式修改

sufan 7 months ago
parent
commit
24db1c6834

+ 5 - 1
src/components/CustomSelect/index.vue

@@ -6,7 +6,7 @@
       style="width: 100%"
       filterable
       clearable
-      placeholder="请选择公司名称"
+      :placeholder="placeholder"
       :disabled="disabled"
       @blur="selectBlur"
       @clear="selectClear"
@@ -28,6 +28,10 @@ export default {
     value: {
       type: [String, Number],
       default: ''
+    },
+    placeholder: {
+      type: String,
+      default: '请选择企业名称'
     }
   },
   data() {

+ 4 - 4
src/router/moudules/myFinancing.js

@@ -26,28 +26,28 @@ export default {
         name: 'ApplyFinancing',
         component: () => import('@/views/myFinancing/applyFinancing/index'),
         hidden: true,
-        meta: { title: '申请融资' }
+        meta: { title: '申请融资', activeMenu: '/myFinancing' }
       },
       {
         path: '/myFinancing/repaymentPlay/:id',
         name: 'RepaymentPlay',
         component: () => import('@/views/myFinancing/repaymentPlay/index'),
         hidden: true,
-        meta: { title: '还款计划' }
+        meta: { title: '还款计划', activeMenu: '/myFinancing' }
       },
       {
         path: '/myFinancing/contractSign/:id',
         name: 'myFinancingContractSign',
         component: () => import('@/views/myFinancing/contractSign'),
         hidden: true,
-        meta: { title: '合同签署' }
+        meta: { title: '合同签署', activeMenu: '/myFinancing' }
       },
       {
         path: '/myFinancing/see/:id',
         name: 'MyFinancingSee',
         component: () => import('@/views/myFinancing/see'),
         hidden: true,
-        meta: { title: '查看' }
+        meta: { title: '查看', activeMenu: '/myFinancing' }
       }
     ]
   }]

+ 0 - 1
src/store/modules/settings.js

@@ -29,4 +29,3 @@ export default {
   mutations,
   actions
 }
-

+ 2 - 2
src/views/myBusiness/components/EnterpriseInspection.vue

@@ -99,7 +99,7 @@ export default {
   data() {
     return {
       formlabel: {
-        company: '公司名称',
+        company: '企业名称',
         key: 'corporateName'
       },
       listData: [],
@@ -113,7 +113,7 @@ export default {
       },
       rules: {
         corporateName: [
-          { required: true, message: `请输入${this.inspectionData?.company?.name || '公司名称'}`, trigger: 'change' }
+          { required: true, message: `请输入${this.inspectionData?.company?.name || '企业名称'}`, trigger: 'change' }
         ]
       }
     }

+ 39 - 37
src/views/myBusiness/supplementaryInfo/components/AddInfo.vue

@@ -1,6 +1,6 @@
 <template>
   <div class="add-info">
-    <cy-info-title type="center">经营地址相关情况</cy-info-title>
+
     <el-form
       ref="ruleForm"
       :model="ruleForm"
@@ -8,6 +8,37 @@
       label-position="top"
       class="rule-form-orange"
     >
+      <cy-info-title type="center">征信信息</cy-info-title>
+      <el-form-item style="width: 100%">
+        <template slot="label">
+          <span>个人征信</span>
+          <span class="slot-name-desc">烦请本人线上查询个人征信,并填写我司邮箱作为央行等银行发送征信报告的指定邮箱operation@changan-inkasso.com</span>
+        </template>
+        <div v-if="!disabled" class="synchronization">
+          <el-button type="text" @click="synchronizationClick">一键同步</el-button>
+        </div>
+        <cy-comm-table
+          ref="commTable"
+          style="margin-top: 10px; width: 100%"
+          :columns="columns"
+          :data="tableData"
+          :count="0"
+        />
+      </el-form-item>
+      <el-form-item style="width: 100%">
+        <template slot="label">
+          <span>企业征信查询授权书</span>
+          <span class="slot-name-desc">必须已认证已签署才可提交</span>
+        </template>
+        <cy-comm-table
+          name="enterprise"
+          style="margin-top: 10px; width: 100%"
+          :columns="enterpriseColumns"
+          :data="enterpriseTableData"
+          :count="0"
+        />
+      </el-form-item>
+      <cy-info-title type="center">企业经营地址</cy-info-title>
       <el-form-item label="经营地址" style="width: 100%;" prop="businessAddress">
         <el-input v-model="ruleForm.businessAddress" :disabled="disabled" placeholder="请输入经营地址" />
       </el-form-item>
@@ -35,7 +66,7 @@
           placeholder="请上传租房合同"
         />
       </el-form-item>
-      <el-form-item label="房缴纳流水" class="form-required">
+      <el-form-item label="房缴纳流水" class="form-required">
         <cy-upload
           ref="waterElectricityFees"
           :upload-params="{
@@ -44,10 +75,10 @@
           :disabled="disabled"
           :file-data="waterElectricityFees"
           :upload-from-orange-status="true"
-          placeholder="请上传房缴纳流水"
+          placeholder="请上传房缴纳流水"
         />
       </el-form-item>
-      <el-form-item label="办公环境" class="form-required">
+      <el-form-item label="办公环境" class="form-required">
         <cy-upload
           ref="officeEnvironment"
           :upload-params="{
@@ -56,7 +87,7 @@
           :disabled="disabled"
           :file-data="officeEnvironment"
           :upload-from-orange-status="true"
-          placeholder="请上传办公环境"
+          placeholder="请上传办公环境"
         />
       </el-form-item>
       <template v-if="!hasGuaranteeEnterprise">
@@ -111,36 +142,7 @@
           />
         </el-form-item>
       </template>
-      <cy-info-title type="center">征信相关情况</cy-info-title>
-      <el-form-item style="width: 100%">
-        <template slot="label">
-          <span>个人征信</span>
-          <span class="slot-name-desc">烦请本人线上查询个人征信,并填写我司邮箱作为央行等银行发送征信报告的指定邮箱operation@changan-inkasso.com</span>
-        </template>
-        <div v-if="!disabled" class="synchronization">
-          <el-button type="text" @click="synchronizationClick">一键同步</el-button>
-        </div>
-        <cy-comm-table
-          ref="commTable"
-          style="margin-top: 10px; width: 100%"
-          :columns="columns"
-          :data="tableData"
-          :count="0"
-        />
-      </el-form-item>
-      <el-form-item style="width: 100%">
-        <template slot="label">
-          <span>企业征信查询授权书</span>
-          <span class="slot-name-desc">必须已认证已签署才可提交</span>
-        </template>
-        <cy-comm-table
-          name="enterprise"
-          style="margin-top: 10px; width: 100%"
-          :columns="enterpriseColumns"
-          :data="enterpriseTableData"
-          :count="0"
-        />
-      </el-form-item>
+
     </el-form>
   </div>
 </template>
@@ -407,11 +409,11 @@ export default {
             return
           }
           if (!waterElectricityFees.length) {
-            this.$message.warning('请上传房缴纳流水')
+            this.$message.warning('请上传房缴纳流水')
             return
           }
           if (!officeEnvironment.length) {
-            this.$message.warning('请上传办公环境')
+            this.$message.warning('请上传办公环境')
             return
           }
 

+ 2 - 2
src/views/myBusiness/supplementaryInfo/components/BasicInfo.vue

@@ -6,8 +6,8 @@
       label-width="150px"
       class="rule-form-orange"
     >
-      <el-form-item label="公司名称">
-        <el-input v-model="ruleForm.corporateName" disabled placeholder="请输入公司名称" />
+      <el-form-item label="企业名称">
+        <el-input v-model="ruleForm.corporateName" disabled placeholder="请输入企业名称" />
       </el-form-item>
 
       <el-form-item label="统一社会信用代码">

+ 38 - 36
src/views/myBusiness/supplementaryInfo/components/GuaranteeAddInfo.vue

@@ -1,6 +1,6 @@
 <template>
   <div class="guarantee-add-info">
-    <cy-info-title type="center">经营地址相关情况</cy-info-title>
+
     <el-form
       ref="ruleForm"
       :model="ruleForm"
@@ -9,6 +9,36 @@
       label-width="150px"
       class="rule-form-orange"
     >
+      <cy-info-title type="center">征信信息</cy-info-title>
+      <el-form-item style="width: 100%">
+        <template slot="label">
+          <span>个人征信</span>
+          <span class="slot-name-desc">烦请本人线上查询个人征信,并填写我司邮箱作为央行等银行发送征信报告的指定邮箱operation@changan-inkasso.com</span>
+        </template>
+        <div v-if="!disabled" class="synchronization">
+          <el-button type="text" @click="synchronizationClick">一键同步</el-button>
+        </div>
+        <cy-comm-table
+          ref="commTable"
+          style="margin-top: 10px; width: 100%"
+          :columns="columns"
+          :data="tableData"
+          :count="0"
+        />
+      </el-form-item>
+      <el-form-item style="width: 100%">
+        <template slot="label">
+          <span>企业征信查询授权书</span>
+          <span class="slot-name-desc">必须已认证已签署才可提交</span>
+        </template>
+        <cy-comm-table
+          style="margin-top: 10px; width: 100%"
+          :columns="enterpriseColumns"
+          :data="enterpriseTableData"
+          :count="0"
+        />
+      </el-form-item>
+      <cy-info-title type="center">企业经营地址</cy-info-title>
       <el-form-item label="经营地址" style="width: 100%;" prop="businessAddress">
         <el-input v-model="ruleForm.businessAddress" :disabled="disabled" placeholder="请输入经营地址" />
       </el-form-item>
@@ -36,7 +66,7 @@
           placeholder="请上传租房合同"
         />
       </el-form-item>
-      <el-form-item label="房缴纳流水" class="one-form-item form-required" prop="waterElectricityFees">
+      <el-form-item label="房缴纳流水" class="one-form-item form-required" prop="waterElectricityFees">
         <cy-upload
           ref="waterElectricityFees"
           :upload-params="{
@@ -45,10 +75,10 @@
           :disabled="disabled"
           :file-data="waterElectricityFees"
           :upload-from-orange-status="true"
-          placeholder="请上传房缴纳流水"
+          placeholder="请上传房缴纳流水"
         />
       </el-form-item>
-      <el-form-item label="办公环境" class="one-form-item form-required" prop="officeEnvironment">
+      <el-form-item label="办公环境" class="one-form-item form-required" prop="officeEnvironment">
         <cy-upload
           ref="officeEnvironment"
           :upload-params="{
@@ -57,7 +87,7 @@
           :disabled="disabled"
           :file-data="officeEnvironment"
           :upload-from-orange-status="true"
-          placeholder="请上传办公环境"
+          placeholder="请上传办公环境"
         />
       </el-form-item>
       <cy-info-title type="center">公司相关信息</cy-info-title>
@@ -109,35 +139,7 @@
           placeholder="请上传结案证明或判决书"
         />
       </el-form-item>
-      <cy-info-title type="center">征信相关情况</cy-info-title>
-      <el-form-item style="width: 100%">
-        <template slot="label">
-          <span>个人征信</span>
-          <span class="slot-name-desc">烦请本人线上查询个人征信,并填写我司邮箱作为央行等银行发送征信报告的指定邮箱operation@changan-inkasso.com</span>
-        </template>
-        <div v-if="!disabled" class="synchronization">
-          <el-button type="text" @click="synchronizationClick">一键同步</el-button>
-        </div>
-        <cy-comm-table
-          ref="commTable"
-          style="margin-top: 10px; width: 100%"
-          :columns="columns"
-          :data="tableData"
-          :count="0"
-        />
-      </el-form-item>
-      <el-form-item style="width: 100%">
-        <template slot="label">
-          <span>企业征信查询授权书</span>
-          <span class="slot-name-desc">必须已认证已签署才可提交</span>
-        </template>
-        <cy-comm-table
-          style="margin-top: 10px; width: 100%"
-          :columns="enterpriseColumns"
-          :data="enterpriseTableData"
-          :count="0"
-        />
-      </el-form-item>
+
     </el-form>
   </div>
 </template>
@@ -388,11 +390,11 @@ export default {
             return
           }
           if (!waterElectricityFees.length) {
-            this.$message.warning('请上传房缴纳流水')
+            this.$message.warning('请上传房缴纳流水')
             return
           }
           if (!officeEnvironment.length) {
-            this.$message.warning('请上传办公环境')
+            this.$message.warning('请上传办公环境')
             return
           }
           if (!businessLicense.length) {