Giter Club home page Giter Club logo

Comments (4)

wastone avatar wastone commented on June 10, 2024

我也碰到了这个问题
image

from jedate.

vylan avatar vylan commented on June 10, 2024

+1

from jedate.

aoliaoliao avatar aoliaoliao commented on June 10, 2024

我在sethmsStrHtml方法中,注释掉 if (hmsCls.html() == "") 这条判断语句就没问题了

from jedate.

yyccQQu avatar yyccQQu commented on June 10, 2024

我也碰到了这个问题
image

目前方法可以这样搞

<div class="jeitem">
                    <label class="jelabel jw43">时间:</label>
                    <div class="jeinpbox" @click="openDate('#stime','YYYY-MM-DD hh:mm:ss',1)">
                        <input type="text" readonly class="jeinput" id="stime" placeholder="开始时间">
                        <div class="icons-jedate jebtns"></div>
                    </div>
                </div>
openDate(dom, format, status) {
            var self = this;
            //获取当前时间戳
            var minDates = moment((moment().unix() - 3 * 30 * 24 * 60 * 60) * 1000 + (24 * 60 * 60*1000)).format("YYYY-MM-DD 00:00:00");
            var maxDates = moment().format("YYYY-MM-DD 23:59:59")
            console.log(minDates, maxDates, 'aabbcc')
            jeDate(dom, {
                trigger: false,
                format: format,
                theme: {
                    bgcolor: "#5985f7",
                    color: "#ffffff",
                    pnColor: "#5985f7"
                },
                donefun: function(obj) {
                    if (status == 1) {
                        self.startTime = makeTimes(obj.val);
                    } else if (status == 2) {
                        self.endTime = makeTimes(obj.val);
                    }
                },
                minDate: minDates,
                maxDate: maxDates,
            });
        }

from jedate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.