zsysview 0.0.13 → 0.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core/app.ts +1 -1
- package/package.json +1 -1
- package/view/main/userHeader.vue +1 -1
- package/view/self/change_password.vue +3 -3
package/core/app.ts
CHANGED
package/package.json
CHANGED
package/view/main/userHeader.vue
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<!-- :src="logoUrl" -->
|
|
8
8
|
</div>
|
|
9
9
|
|
|
10
|
-
<div style="float: left; line-height: 60px;"
|
|
10
|
+
<div style="float: left; line-height: 60px;">岗位行为识别系统</div>
|
|
11
11
|
<!-- 右上角 -->
|
|
12
12
|
<el-dropdown trigger="click" class="user_operate">
|
|
13
13
|
<span class="el-dropdown-link">
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
</template>
|
|
26
26
|
|
|
27
27
|
<script setup lang="ts">
|
|
28
|
-
import breadcrumb from '../breadcrumb.vue';
|
|
29
|
-
import { HttpApiV1 as http } from '
|
|
28
|
+
import breadcrumb from '../main/breadcrumb.vue';
|
|
29
|
+
import { HttpApiV1 as http } from '../../core/httpapi/http_api_v1';
|
|
30
30
|
import { reactive,ref } from 'vue';
|
|
31
31
|
import { useRouter} from "vue-router";
|
|
32
|
-
import { ZSYSMessage } from '
|
|
32
|
+
import { ZSYSMessage } from '../../components/message';
|
|
33
33
|
import type { FormInstance, FormRules } from 'element-plus'
|
|
34
34
|
import { Md5 } from 'ts-md5'
|
|
35
35
|
const ruleFormRef = ref<FormInstance>()
|