230320a303 1 年之前
父節點
當前提交
a3bce1a04f

文件差異過大導致無法顯示
+ 0 - 0
dist/index.html


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/chunk-403c5b90.1a23f955.js


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/chunk-403c5b90.cf2f501b.js


+ 9 - 10
src/views/trade/components/searchForm/Index.vue

@@ -1,13 +1,11 @@
 <template>
-  <header-collapse>
-    <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">导出</el-button>
-        <!-- <el-button :loading="listLoading" icon="el-icon-plus" class="xl-form-btn bgc2" @click="addHandle">添加客户</el-button> -->
-      </div>
-    </base-form>
-  </header-collapse>
+  <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">导出</el-button>
+      <!-- <el-button :loading="listLoading" icon="el-icon-plus" class="xl-form-btn bgc2" @click="addHandle">添加客户</el-button> -->
+    </div>
+  </base-form>
 </template>
 <script>
 export default {
@@ -24,6 +22,7 @@ export default {
         { label: '成交店员', key: 'deal_clerk' },
         { label: '成交楼盘', key: 'deal_item' },
         { label: '成交类型', key: 'deal_type', type: 'select', options: this.$dictData.trade_deal_type},
+        { label: '审核状态', key: 'check_state', type: 'select', options: this.$dictData.check_state},
         { label: '时间', label2: '开始成交日期', label3: '结束成交日期', key: 'startEndTime', type: 'datePicker'},
         { label: '客户姓名', key: 'customer_name' },
         { label: '客户电话', key: 'customer_phone' },
@@ -58,7 +57,7 @@ export default {
         return
       }
       const token = window.sessionStorage.getItem('fp_token')
-      window.open(`https://api.fangpiaovip.com/adm/trade/export?token=${encodeURIComponent(token)}&start_at=${newForm.start_at}&end_at=${newForm.end_at}`)
+      window.open(`https://api.fangpiaovip.com/adm/trade/export?token=${encodeURIComponent(token)}&start_at=${newForm.start_at}&end_at=${newForm.end_at}&house_type=${newForm.house_type}&deal_clerk=${newForm.deal_clerk}&deal_item=${newForm.deal_item}&deal_type=${newForm.deal_type}`)
     }
   }
 }

+ 1 - 0
src/views/trade/index.vue

@@ -78,6 +78,7 @@ export default {
         { label: '成交楼盘', prop: 'deal_item' },
         { label: '房号', prop: 'house_no' },
         { label: '成交类型', prop: 'deal_type', fullShow: true, type: 'flag', flags: arrToObj(this.$dictData.trade_deal_type) },
+        { label: '成交类型', prop: 'check_state', fullShow: true, type: 'flag', flags: arrToObj(this.$dictData.check_state) },
         { label: '成交日期', prop: 'deal_at' },
         { label: '客户姓名', prop: 'customer_name' },
         { label: '客户电话', prop: 'customer_phone' },

部分文件因文件數量過多而無法顯示