问题修复

dev
Tuzki 2 years ago
parent 1c56eddec6
commit 85c81d760d
  1. 2
      ruoyi-admin/src/main/resources/application-druid.yml
  2. 9
      ruoyi-ui/src/views/system/management/tourism-resources/basicResources/tourBasic/index.vue
  3. 9
      ruoyi-ui/src/views/system/management/tourism-resources/emergencyInfo/emergency/index.vue
  4. 8
      ruoyi-ui/src/views/system/management/tourism-resources/iotInfo/iot/index.vue
  5. 9
      ruoyi-ui/src/views/system/management/tourism-resources/publicserviceInfo/publicservice/index.vue
  6. 8
      ruoyi-ui/src/views/system/management/tourism-resources/touristInfo/tourist/index.vue
  7. 2
      ruoyi-ui/src/views/system/management/tourism-resources/utils/resources.js
  8. 9
      ruoyi-ui/src/views/system/management/tourism-resources/vehicleInfo/vehicle/index.vue
  9. 8
      ruoyi-ui/src/views/system/management/tourism-resources/venueInfo/venue/index.vue
  10. 6
      ruoyi-ui/vue.config.js

@ -9,7 +9,7 @@ spring:
url: jdbc:mysql://39.105.17.128:33068/scenic_controls?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 url: jdbc:mysql://39.105.17.128:33068/scenic_controls?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username: jqzhgk username: jqzhgk
password: 3d*fu%HGrSXjyK5 password: 3d*fu%HGrSXjyK5
# url: jdbc:mysql://localhost:13306/scenic_controls?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 # url: jdbc:mysql://192.168.130.109:13306/scenic_controls?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
# username: root # username: root
# password: root # password: root
# 从库数据源 # 从库数据源

@ -827,10 +827,13 @@ export default {
}, },
/** 查询旅游场所基础信息列表 */ /** 查询旅游场所基础信息列表 */
getList() { getList(val) {
this.loading = true; this.loading = true;
this.idType = "A01" if (val&&val!=''){
this.idType = val
}else{
this.idType = "A01"
}
listTourBasic(this.queryParams).then(response => { listTourBasic(this.queryParams).then(response => {
this.tourBasicList = response.rows; this.tourBasicList = response.rows;
this.total = response.total; this.total = response.total;

@ -469,10 +469,13 @@ export default {
}, },
methods: { methods: {
/** 查询应急场所基础信息 列表 */ /** 查询应急场所基础信息 列表 */
getList() { getList(val) {
this.loading = true; this.loading = true;
this.idType = "E01" if (val&&val!=''){
this.idType = val
}else{
this.idType = "E01"
}
listEmergency(this.queryParams).then(response => { listEmergency(this.queryParams).then(response => {
this.emergencyList = response.rows; this.emergencyList = response.rows;
this.total = response.total; this.total = response.total;

@ -437,9 +437,13 @@ export default {
}, },
methods: { methods: {
/** 查询物联设备基础信息 列表 */ /** 查询物联设备基础信息 列表 */
getList() { getList(val) {
this.loading = true; this.loading = true;
this.idType = "D01" if (val&&val!=''){
this.idType = val
}else{
this.idType = "D01"
}
listIot(this.queryParams).then(response => { listIot(this.queryParams).then(response => {
this.iotList = response.rows; this.iotList = response.rows;

@ -590,9 +590,14 @@ export default {
}, },
methods: { methods: {
/** 查询公共服务基础信息 列表 */ /** 查询公共服务基础信息 列表 */
getList() { getList(val) {
this.loading = true; this.loading = true;
this.idType = "C01" if (val&&val!=''){
this.idType = val
}else{
this.idType = "C01"
}
listPublicservice(this.queryParams).then(response => { listPublicservice(this.queryParams).then(response => {
this.publicserviceList = response.rows; this.publicserviceList = response.rows;

@ -581,9 +581,13 @@ export default {
}, },
methods: { methods: {
/** 查询游客服务基础信息 列表 */ /** 查询游客服务基础信息 列表 */
getList() { getList(val) {
this.loading = true; this.loading = true;
this.idType = "F01" if (val&&val!=''){
this.idType = val
}else{
this.idType = "F01"
}
listTourist(this.queryParams).then(response => { listTourist(this.queryParams).then(response => {
this.touristList = response.rows; this.touristList = response.rows;

@ -414,7 +414,7 @@ export default {
this_.queryParams.type = val.id this_.queryParams.type = val.id
this_.type = val.id this_.type = val.id
this_.typeName = val.label this_.typeName = val.label
this.getList() this.getList(val.code)
}, },
//省市县 //省市县
getCustomersSource(el) { getCustomersSource(el) {

@ -431,9 +431,14 @@ export default {
}, },
methods: { methods: {
/** 查询车辆基础信息 列表 */ /** 查询车辆基础信息 列表 */
getList() { getList(val) {
this.loading = true; this.loading = true;
this.idType = "G01" if (val&&val!=''){
this.idType = val
}else{
this.idType = "G01"
}
listVehicle(this.queryParams).then(response => { listVehicle(this.queryParams).then(response => {
this.vehicleList = response.rows; this.vehicleList = response.rows;

@ -636,9 +636,13 @@ export default {
}, },
methods: { methods: {
/** 查询文化场馆基础信息 列表 */ /** 查询文化场馆基础信息 列表 */
getList() { getList(val) {
this.loading = true; this.loading = true;
this.idType = "B01" if (val&&val!=''){
this.idType = val
}else{
this.idType = "B01"
}
listVenue(this.queryParams).then(response => { listVenue(this.queryParams).then(response => {
this.venueList = response.rows; this.venueList = response.rows;

@ -35,9 +35,9 @@ module.exports = {
proxy: { proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy // detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: { [process.env.VUE_APP_BASE_API]: {
// target: `http://localhost:8080/`,//用户名:admin 密码CJYjqgk@2023! target: `http://localhost:8080/`,//用户名:admin 密码CJYjqgk@2023!
// target: `http://39.105.17.128:8096/`,//用户名:cjyadmin/密码:CJYjqgk@2.023! // target: `http://39.105.17.128:8096/`,//用户名:cjyadmin/密码:CJYjqgk@2023!
target: `http://localhost:8080/`,//用户名:admin 密码Cjy@123abc // target: `http://192.168.130.102:8080/`,//用户名:admin 密码Cjy@123abc
changeOrigin: true, changeOrigin: true,
pathRewrite: { pathRewrite: {
['^' + process.env.VUE_APP_BASE_API]: '' ['^' + process.env.VUE_APP_BASE_API]: ''

Loading…
Cancel
Save