This commit is contained in:
2019-01-30 22:54:26 +00:00
parent 93746aa607
commit 72f8367c78
2 changed files with 13 additions and 16 deletions

View File

@@ -20,11 +20,7 @@ TODO CLIENT STUFF
- MISC
- Make the copyright banner only show on the login page, not on subsequent pages
- DONE? Make the copyright banner at bottom left aligned, right now it seems weird in small iPhone size when it breaks to two lines (make text smaller?)
- Change server api page favicon to look like a SERVER version of the AyaNova logo, not the same one as the client uses [ fuck it, why? TTM!]
- About form should show the server address and have a copy to clipboard feature or save info or email info or whatever the fuck for support
- Clipboardjs.com
- Clean up todo below here and up to "Stage 2", seems to be a lot of wild speculation and repeated stuff, need a clean list of discrete actionable items.
- LIST
@@ -35,15 +31,16 @@ TODO CLIENT STUFF
- Check the rights to the list before it gets the data
- Sort and filter dialog
- Should list or any widgets fetch data automatically on display or should they have some way of requesting it to save bandwidth? (TTM CADILLAC PROBLEM?)
- Perhaps with the custom widget repository where people can customize the UI they can decide what is visible immediately upon login so that handles this issue
- Should the list be narrow to start and expand on demand?(TTM CADILLAC PROBLEM?)
- numeric inputs need to be set as such so that the number keyboard appears
- CRUD form for widget that supports all the aspects (NEED THIS BEFORE MUCH OTHER CODING HAPPENS)
- Is this just not happening now?: https://rockfish.ayanova.com/default.htm#!/rfcaseEdit/3494
- This should just be kept in mind as a technique to use if necessary:
- https://rockfish.ayanova.com/default.htm#!/rfcaseEdit/3494
- UI:GENERAL:LAYOUT: - All layout, not just workorder needs to be modular and optional sections with simple starting view.
- Everything needs to work in this form right down to the reports so that once it's done I can move forward confidentally with testing, demo-ing and with cranking out the other forms
- Don't want to solve any problems that should have been solved with this form later as I will inevitably be full on copy and pasting once I get it down and so it needs to be as solid as possible First
- Every type of entry field fully localized properly including numeric, date, time, tags etc

View File

@@ -62,7 +62,7 @@
</template>
<script>
import aboutInfo from "./api/aboutinfo";
//import aboutInfo from "./api/aboutinfo";
export default {
name: "App",
@@ -94,12 +94,12 @@ export default {
navItems() {
return this.$store.state.navItems;
},
copyright() {
return aboutInfo.copyright;
},
version() {
return aboutInfo.version;
},
// copyright() {
// return aboutInfo.copyright;
// },
// version() {
// return aboutInfo.version;
// },
helpUrl() {
return this.$store.state.helpUrl;
}