gitextract_n72xu_uf/ ├── .gitattributes ├── CODE_OF_CONDUCT.md ├── README.md ├── index.html ├── licence ├── src/ │ ├── app.js │ ├── assets/ │ │ ├── common.js │ │ ├── util.js │ │ └── wilddog.js │ ├── component/ │ │ ├── blank.js │ │ ├── body.js │ │ ├── component-list.js │ │ ├── config-pannel.js │ │ ├── data-count.js │ │ ├── filter.js │ │ ├── head.js │ │ ├── login.js │ │ ├── main.js │ │ ├── nav.js │ │ ├── play-time.js │ │ ├── quick-start.js │ │ ├── regist.js │ │ └── user-set.js │ ├── plugin/ │ │ └── dropdown.js │ ├── router.js │ └── store/ │ ├── actions.js │ ├── getters.js │ ├── mutations.js │ └── store.js ├── static/ │ ├── css/ │ │ ├── platform.css │ │ └── ui.css │ └── lib/ │ ├── etpl.js │ ├── sea.js │ ├── vue-router.js │ ├── vue.js │ └── vuex.js └── widgets/ ├── bread/ │ └── 1/ │ ├── config.json │ ├── script.js │ ├── style.css │ └── temp.htm ├── data.json ├── download/ │ └── 1/ │ ├── config.json │ ├── script.js │ ├── style.css │ └── temp.htm ├── form/ │ └── 1/ │ ├── config.json │ ├── script.js │ ├── style.css │ └── temp.htm ├── history/ │ └── 1/ │ ├── config.json │ ├── script.js │ ├── style.css │ └── temp.htm ├── job/ │ └── 1/ │ ├── config.json │ ├── script.js │ ├── style.css │ └── temp.htm ├── nav/ │ └── 1/ │ ├── config.json │ ├── script.js │ ├── style.css │ └── temp.htm ├── newsdetail/ │ └── 1/ │ ├── config.json │ ├── script.js │ ├── style.css │ └── temp.htm ├── newslist/ │ └── 1/ │ ├── config.json │ ├── script.js │ ├── style.css │ └── temp.htm ├── page/ │ └── 1/ │ ├── config.json │ ├── script.js │ ├── style.css │ └── temp.htm ├── prodetail/ │ └── 1/ │ ├── config.json │ ├── script.js │ ├── style.css │ └── temp.htm ├── prolist/ │ ├── 1/ │ │ ├── config.json │ │ ├── script.js │ │ ├── style.css │ │ └── temp.htm │ └── 2/ │ ├── config.json │ ├── script.js │ ├── style.css │ └── temp.htm ├── qa/ │ └── 1/ │ ├── config.json │ ├── script.js │ ├── style.css │ └── temp.htm ├── search/ │ └── 1/ │ ├── config.json │ ├── script.js │ ├── style.css │ └── temp.htm └── table/ └── 1/ ├── config.json ├── script.js ├── style.css └── temp.htm