diff --git a/src/views/Login.vue b/src/views/Login.vue
index a8f2769..83e9359 100644
--- a/src/views/Login.vue
+++ b/src/views/Login.vue
@@ -33,9 +33,10 @@
-
+ 登录
+
@@ -83,9 +84,11 @@ export default {
this.$store
.dispatch("Login", this.form)
.then(() => {
+ console.log(222);
this.$router.push({ path: "/homePage" });
})
.catch(() => {
+ this.loading = false;
this.$store.commit("SET_LOGIN_LOADING", false);
});
}
@@ -173,12 +176,14 @@ export default {
.login-button {
width: 100%;
height: 46px;
- line-height: 46px;
- text-align: center;
+ // line-height: 46px;
+ // text-align: center;
background-image: url("@/assets/images/login-btn.png");
background-size: 100%;
background-repeat: no-repeat;
- cursor: pointer;
+ border-radius: 25px;
+ border: unset;
+ // cursor: pointer;
color: #5ed0fa;
font-size: 18px;
}
diff --git a/src/views/baseComapnyInfo/Form.vue b/src/views/baseComapnyInfo/Form.vue
index d2d87f4..5b928b4 100644
--- a/src/views/baseComapnyInfo/Form.vue
+++ b/src/views/baseComapnyInfo/Form.vue
@@ -44,6 +44,13 @@
+
+
+ {{ v.fullName }}
+
+
+
+
@@ -61,14 +68,18 @@
import request from '@/utils/request'
import { getDictionaryDataSelector } from '@/api/systemData/dictionary'
import { previewDataInterface } from '@/api/systemData/dataInterface'
+import infoMixin from "@/mixins/info";
+
export default {
components: {},
props: [],
+ mixins: [infoMixin],
data() {
return {
loading: false,
visible: false,
isDetail: false,
+ areaOptions: [],
dataForm: {
id: '',
id: undefined,
@@ -79,6 +90,7 @@ export default {
contactInformation: undefined,
qualificationCertificate: [],
otherInfo: undefined,
+ areaId: undefined,
},
rules: {
companyName: [
@@ -101,6 +113,7 @@ export default {
computed: {},
watch: {},
created() {
+ this.initAreaTypeList();
},
mounted() {
},
diff --git a/src/views/baseSpecialAction/Form.vue b/src/views/baseSpecialAction/Form.vue
index f3bce50..303ea65 100644
--- a/src/views/baseSpecialAction/Form.vue
+++ b/src/views/baseSpecialAction/Form.vue
@@ -113,9 +113,7 @@
{
+ this.btnLoading = false;
this.areaChangeVisible = false;
+ this.$message({
+ message: res.msg,
+ type: 'success'
+ });
this.initList();
});
},
diff --git a/src/views/overView/Overview.vue b/src/views/overView/Overview.vue
index 6711e7e..305819f 100644
--- a/src/views/overView/Overview.vue
+++ b/src/views/overView/Overview.vue
@@ -15,40 +15,15 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- 处理
+
+
+
+
+
+
+
+
+ 处理
@@ -145,15 +120,20 @@
+ {taskRefresh('HandleInspectFormVisible', val)}"/>
+ {taskRefresh('formVisible', val)}" />
diff --git a/vue.config.js b/vue.config.js
index a858414..63a9790 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -17,8 +17,8 @@ module.exports = defineConfig({
proxy: {
'/api': {
// 跨域请求的地址
- //target: 'http://8.130.38.56:8043/api',
- target: 'http://localhost:2015/api',
+ target: 'http://8.130.38.56:8043/api',
+ // target: 'http://localhost:2015/api',
changeOrigin: true, // 是否允许跨域请求,在本地会创建一个虚拟服务端,发送接收请求数据,这样服务端和服务端进行数据的交互就不会有跨域问题
// 路径重写,替换请求地址
pathRewrite: {
@@ -26,10 +26,10 @@ module.exports = defineConfig({
}
}
},
- // client: {
- // webSocketURL: "http://localhost:8080"
- // // overlay: false
- // },
+ client: {
+ // webSocketURL: "http://localhost:8080"
+ overlay: false
+ },
},
configureWebpack: {
name: '属地',