|
@@ -84,6 +84,17 @@
|
|
|
/>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="创建时间" prop="createTime" v-hasPermi="['menduner:system:enterprise-user-bind:query']">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="queryParams.createTime"
|
|
|
+ value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
+ type="daterange"
|
|
|
+ start-placeholder="开始日期"
|
|
|
+ end-placeholder="结束日期"
|
|
|
+ :default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
|
|
+ class="!w-240px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-button v-hasPermi="['menduner:system:enterprise:query']" @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
|
|
|
<el-button v-hasPermi="['menduner:system:enterprise:query']" @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
|
|
@@ -195,7 +206,8 @@ const queryParams = reactive({
|
|
|
phone: undefined,
|
|
|
industryId: undefined,
|
|
|
financingStatus: undefined,
|
|
|
- scale: undefined
|
|
|
+ scale: undefined,
|
|
|
+ createTime: undefined
|
|
|
})
|
|
|
const positionRef = ref()
|
|
|
const queryFormRef = ref() // 搜索的表单
|