diff --git a/src/App.vue b/src/App.vue index 5f708da1c..1743c2d93 100644 --- a/src/App.vue +++ b/src/App.vue @@ -219,6 +219,8 @@ export default { && this.$route.name !== 'AdvancedSearchExternal' && this.$route.name !== 'LoginVerifyNoEncryption' && this.$route.name !== 'blankPage' && this.$route.name !== 'processedPage' && this.$route.name !== 'loginStandDetails' && this.$route.name !== 'error' + && this.$route.name !== 'phoneHome'&& this.$route.name !== 'databaseSearch' + && this.$route.name !== 'standDynamics' && this.$route.name !== 'domesticStand' && this.$route.name !== 'OtherStandardExternalDetails' && this.$route.name !== 'OtherStandardExternalDetails') { this.isBoolean = true } else { diff --git a/src/assets/images/phone/domesticStand.png b/src/assets/images/phone/domesticStand.png new file mode 100644 index 000000000..e172fd429 Binary files /dev/null and b/src/assets/images/phone/domesticStand.png differ diff --git a/src/assets/images/phone/dynamicsStand.png b/src/assets/images/phone/dynamicsStand.png new file mode 100644 index 000000000..12d4b150a Binary files /dev/null and b/src/assets/images/phone/dynamicsStand.png differ diff --git a/src/assets/images/phone/homeTop.png b/src/assets/images/phone/homeTop.png new file mode 100644 index 000000000..bc5f75f9b Binary files /dev/null and b/src/assets/images/phone/homeTop.png differ diff --git a/src/assets/images/phone/overseasStand.png b/src/assets/images/phone/overseasStand.png new file mode 100644 index 000000000..4a5b1978e Binary files /dev/null and b/src/assets/images/phone/overseasStand.png differ diff --git a/src/assets/images/phone/phoneTitle.png b/src/assets/images/phone/phoneTitle.png new file mode 100644 index 000000000..51278fe28 Binary files /dev/null and b/src/assets/images/phone/phoneTitle.png differ diff --git a/src/assets/images/phone/policyStand.png b/src/assets/images/phone/policyStand.png new file mode 100644 index 000000000..4f1490149 Binary files /dev/null and b/src/assets/images/phone/policyStand.png differ diff --git a/src/pages/phone/databaseSearch.vue b/src/pages/phone/databaseSearch.vue new file mode 100644 index 000000000..f475e0050 --- /dev/null +++ b/src/pages/phone/databaseSearch.vue @@ -0,0 +1,166 @@ + + + + + + diff --git a/src/pages/phone/domesticStand.vue b/src/pages/phone/domesticStand.vue new file mode 100644 index 000000000..75357e688 --- /dev/null +++ b/src/pages/phone/domesticStand.vue @@ -0,0 +1,212 @@ + + + + + + diff --git a/src/pages/phone/phoneHome.vue b/src/pages/phone/phoneHome.vue new file mode 100644 index 000000000..d8df30607 --- /dev/null +++ b/src/pages/phone/phoneHome.vue @@ -0,0 +1,155 @@ + + + + + diff --git a/src/pages/phone/standDynamics.vue b/src/pages/phone/standDynamics.vue new file mode 100644 index 000000000..1536a3db2 --- /dev/null +++ b/src/pages/phone/standDynamics.vue @@ -0,0 +1,212 @@ + + + + + + diff --git a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue index d875787a2..f3df8373f 100644 --- a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue +++ b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue @@ -200,7 +200,7 @@ {{ scope.row.standSortShow }} {{ scope.row.standNumber }}-{{ scope.row.standYear }} - {{ + {{ scope.row.standSortShow }} {{ scope.row.standNumber }}-{{ scope.row.standYear }} {{ diff --git a/src/router/index.js b/src/router/index.js index c837743b3..3c8d2d028 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -54,6 +54,30 @@ const routes = [ component: () => import('@/pages/login') }, + { + path: '/phoneHome', + name: 'phoneHome', + component: () => + import('@/pages/phone/phoneHome') + }, + { + path: '/databaseSearch', + name: 'databaseSearch', + component: () => + import('@/pages/phone/databaseSearch') + }, + { + path: '/standDynamics', + name: 'standDynamics', + component: () => + import('@/pages/phone/standDynamics') + }, + { + path: '/domesticStand', + name: 'domesticStand', + component: () => + import('@/pages/phone/domesticStand') + }, { path: '/loginVerify', name: 'LoginVerify',