*
lsh
2025-11-06 534bb520f6e9e7b5aec6c9d89e339a411b15e562
*
1个文件已修改
17 ■■■■■ 已修改文件
src/main/webapp/views/taskWrkLog/taskWrkLog.html 17 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/views/taskWrkLog/taskWrkLog.html
@@ -35,6 +35,16 @@
                        <el-option label="出库到输送线" value="9"></el-option>
                    </el-select>
                </el-form-item>
                <el-form-item label="">
                    <el-date-picker
                            v-model="tableSearchParam.datetime"
                            value-format="yyyy-MM-dd HH:mm:ss"
                            type="datetimerange"
                            range-separator="至"
                            start-placeholder="开始日期"
                            end-placeholder="结束日期">
                    </el-date-picker>
                </el-form-item>
                <el-form-item>
                    <el-button type="primary" @click="getTableData">查询</el-button>
                    <el-button type="primary" @click="resetParam">重置</el-button>
@@ -115,7 +125,8 @@
            tableSearchParam: {
                task_no: null,
                status: null,
                wrk_no: null
                wrk_no: null,
                datetime: null
            }
        },
        created() {
@@ -139,6 +150,10 @@
                let data = this.tableSearchParam
                data.curr = this.currentPage
                data.limit = this.pageSize
                if (this.tableSearchParam.datetime != null) {
                    data.datetime = null
                    data.create_time = this.tableSearchParam.datetime[0] + " - " + this.tableSearchParam.datetime[1]
                }
                $.ajax({
                    url: baseUrl + "/taskWrkLog/list/auth",
                    headers: {