liujq 2 years ago
parent
commit
c66f53b13d

File diff suppressed because it is too large
+ 0 - 0
dist/index.html


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/chunk-a6b7baaa.0baae9dc.css


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.b13b8cae.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-2b97f452.0787cc93.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-a6b7baaa.1b4c4690.js


+ 2 - 1
src/views/house/components/popup/IndexEdit.vue

@@ -79,7 +79,8 @@ export default {
       if (!params.report_lock) params.report_lock = '7'
       if (!params.lead_lock) params.lead_lock = '30'
       this.formData = [
-        { label: '楼盘名称', key: 'estate_name', rules: 1 },
+        { label: '楼盘名称', key: 'estate_name', class: 'c-2', rules: 1 },
+        { label: '中介确访', rules: 1, key: 'is_edit', type: 'select', class: 'c-2', options: this.$dictData.sys_yesno, rules: 1 },
         { label: '报备保护期', key: 'report_lock', type: 'inputFont', class: 'c-2', appendFont: '天' },
         { label: '带看保护期', key: 'lead_lock', type: 'inputFont', class: 'c-2', appendFont: '天' },
         { label: '排序', key: 'sort', class: 'c-2' },

+ 2 - 1
src/views/user/auth.vue

@@ -25,7 +25,7 @@
 </template>
 <script>
 import { arrToObj } from '@/utils'
-import SearchForm from './components/searchForm/Index'
+import SearchForm from './components/searchForm/Auth'
 import PopupEdit from './components/popup/AuthEdit'
 import baseTable from '_m/baseTable.js'
 export default {
@@ -72,6 +72,7 @@ export default {
         { label: 'ID反面', prop: 'id_card_revers', type: 'img' },
         { label: '银行卡号', prop: 'bank_number', fullShow: true },
         { label: '银行卡正面', prop: 'bank_card', type: 'img' },
+        { label: '营业执照', prop: 'busines_licens', type: 'img' },
         { label: '更新时间', prop: 'update_at' },
         { label: '操作', width: 70, type: 'handle2', operations:
           [

+ 38 - 0
src/views/user/components/searchForm/Auth.vue

@@ -0,0 +1,38 @@
+<template>
+  <base-form slot="content" ref="ruleForm" :data="searchData">
+    <div slot="footer">
+      <el-button :loading="listLoading" icon="el-icon-search" class="xl-form-btn bgc1" @click="searchHandle">查询</el-button>
+      <!-- <el-button :loading="listLoading" icon="el-icon-document" class="xl-form-btn bgc2" @click="toExportExcel">导出{{ this.$route.meta.title }}信息</el-button> -->
+    </div>
+  </base-form>
+</template>
+<script>
+export default {
+  mixins: [],
+  props: {
+    listLoading: Boolean
+  },
+  inject: ['parentData'],
+  data() {
+    return {
+      searchData: [
+        { label: '手机号', key: 'phone' },
+        { label: '昵称', key: 'nickname' },
+        { label: '角色', key: 'group_type', type: 'select', options: this.$dictData.group_type},
+        { label: '状态', key: 'auth_state', type: 'select', options: this.$dictData.auth_state},
+        // { label: '角色', key: 'role_id', type: 'selectRemote',
+        //   remoteParams: { skey: 'name', api: `base.admroleslist`, opKey: 'name', opVal: 'id' },
+        // },
+        { label: '推荐人', key: 'referrer' },
+      ]
+    }
+  },
+  methods: {
+    searchHandle() {
+      const oldform = this.$refs.ruleForm.baseForm
+      const newForm = { ...oldform }
+      this.$emit('change', newForm)
+    }
+  }
+}
+</script>

Some files were not shown because too many files changed in this diff