diff --git a/src/views/evalute/configtable/index.vue b/src/views/evalute/configtable/index.vue
index a0c53b3..678cb37 100644
--- a/src/views/evalute/configtable/index.vue
+++ b/src/views/evalute/configtable/index.vue
@@ -152,7 +152,7 @@ export default {
const postId = row.id || this.ids; // 使用 id 字段
this.form = { ...row };
this.open = true;
- this.title = '修改规则';
+ this.title = '编辑规则';
},
// 取消按钮
cancel() {
diff --git a/src/views/evalute/supervision/index.vue b/src/views/evalute/supervision/index.vue
index b937dc9..77ac5bd 100644
--- a/src/views/evalute/supervision/index.vue
+++ b/src/views/evalute/supervision/index.vue
@@ -389,7 +389,7 @@ export default {
this.isView = true;
this.dialogVisible = true;
- this.dialogTitle = "查看智能提醒规则";
+ this.dialogTitle = "查看流程提醒规则";
// 清除验证
this.$nextTick(() => {
this.$refs.ruleForm.clearValidate();
@@ -401,7 +401,7 @@ export default {
handleAdd() {
this.isView = false;
this.dialogVisible = true;
- this.dialogTitle = "新增智能提醒规则";
+ this.dialogTitle = "新增流程提醒规则";
this.isReminder = 1; // 明确设置默认值
// 完整重置表单数据
@@ -428,7 +428,7 @@ export default {
},
handleEdit(row) {
this.dialogVisible = true;
- this.dialogTitle = "修改智能提醒规则";
+ this.dialogTitle = "编辑流程提醒规则";
this.isView = false;
this.ruleForm = {
@@ -503,7 +503,7 @@ export default {
this.$refs[formName].validate((valid) => {
if (valid) {
let param = {};
- if (this.dialogTitle == "新增智能提醒规则") {
+ if (this.dialogTitle == "新增流程提醒规则") {
param = {
rulesName: this.ruleForm.rulesName,
alertRecipients: Number(this.ruleForm.alertRecipients),
@@ -520,7 +520,7 @@ export default {
this.initData();
}
});
- } else if (this.dialogTitle == "修改智能提醒规则") {
+ } else if (this.dialogTitle == "修改流程提醒规则") {
param = {
...this.editData,
};
diff --git a/src/views/login.vue b/src/views/login.vue
index 321f933..e7f361d 100644
--- a/src/views/login.vue
+++ b/src/views/login.vue
@@ -46,7 +46,9 @@
style="width:100%;background: #2B62F1;" @click.native.prevent="handleEnterpriseLogin">
企业统一身份认证登录
+
+
主办单位:苏州工业园区经济发展委员会
-
+
diff --git a/src/views/orientedtwo/content/index.vue b/src/views/orientedtwo/content/index.vue
index ad40294..ddc47de 100644
--- a/src/views/orientedtwo/content/index.vue
+++ b/src/views/orientedtwo/content/index.vue
@@ -286,7 +286,7 @@ export default {
handleAdd() {
this.reset();
this.open = true;
- this.title = "新增项目知识库";
+ this.title = "新增目录";
},
/** 修改按钮操作 */
handleUpdate(row) {
@@ -294,7 +294,7 @@ export default {
const catalogId = row.id;
this.form = { ...row };
this.open = true;
- this.title = "修改项目知识库";
+ this.title = "编辑目录";
},
/** 提交按钮 */
submitForm: function () {
diff --git a/src/views/orientedtwo/subdivide/index.vue b/src/views/orientedtwo/subdivide/index.vue
index ebf479c..e4da2dd 100644
--- a/src/views/orientedtwo/subdivide/index.vue
+++ b/src/views/orientedtwo/subdivide/index.vue
@@ -318,7 +318,7 @@ export default {
const catalogId = row.id;
this.form = { ...row };
this.open = true;
- this.title = "修改细分产业";
+ this.title = "编辑细分产业";
},
/** 提交按钮 */
submitForm: function () {
diff --git a/vue.config.js b/vue.config.js
index c354206..c993f8b 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -46,7 +46,7 @@ module.exports = {
proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: {
- target: `http://192.168.0.111:7071/`,
+ target: `http://192.168.0.105:7071/`,
// target: `http://39.101.188.84:7071/`,
changeOrigin: true,
pathRewrite: {