diff --git a/src/views/Login.vue b/src/views/Login.vue
index 8722246..64138a7 100644
--- a/src/views/Login.vue
+++ b/src/views/Login.vue
@@ -56,8 +56,8 @@ export default {
data() {
return {
form: {
- account: "", // cdoffice, xin
- password: "", // 123456
+ account: "cdwxsd07", // cdoffice, xin
+ password: "WxB@2024!User", // WxB@2024!User
},
rules: {
account: { required: true, message: "用户名不能为空", trigger: "blur" },
diff --git a/src/views/baseSystemInfo/index.vue b/src/views/baseSystemInfo/index.vue
index 0993e92..e7c0286 100644
--- a/src/views/baseSystemInfo/index.vue
+++ b/src/views/baseSystemInfo/index.vue
@@ -35,6 +35,13 @@
+
+
+
+
+
+
搜索
@@ -69,6 +76,9 @@
{{ scope.row.systemType | dynamicTextUP(systemTypeOptions) }}
+
+ {{ scope.row.specialRecordType | dynamicText(specialRecordTypeOption) }}
+
@@ -193,10 +203,12 @@ export default {
{ prop: "principalPhone", label: "联系电话" },
{ prop: "areaId", label: "所属区域" },
],
+ specialRecordTypeOption: [],
};
},
created() {
+ this.initSpecialRecordTypeOption();
this.initSystemTypeList();
this.initAreaTypeList();
this.initList();
diff --git a/src/views/homePage/HomePage.vue b/src/views/homePage/HomePage.vue
index 4980eee..ff2872f 100644
--- a/src/views/homePage/HomePage.vue
+++ b/src/views/homePage/HomePage.vue
@@ -67,14 +67,14 @@ export default {
computed: {},
methods: {
toSearchInfoList() {
- if(this.$route.path == '/baseSystemInfo/index.vue') {
- this.$refs.info.search();
- } else {
+ // if(this.$route.path == '/baseSystemInfo/index.vue') {
+ // this.$refs.info.search();
+ // } else {
this.$router.push({
path: "/baseSystemInfo/index.vue",
query: { keyword: this.searchKeyword },
});
- }
+ // }
},
},
};