diff --git a/.env.development b/.env.development index e3478dc..d74f104 100644 --- a/.env.development +++ b/.env.development @@ -5,8 +5,8 @@ VUE_APP_TITLE = 共享电动车管理系统 ENV = 'development' # 共享电动车管理系统/开发环境 -VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api' -# VUE_APP_BASE_API = 'http://192.168.2.189:8080' +# VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api' +VUE_APP_BASE_API = 'http://localhost:8080' # 路由懒加载 VUE_CLI_BABEL_TRANSPILE_MODULES = true diff --git a/src/api/system/articleClassify.js b/src/api/system/articleClassify.js index 27c31f4..a1388ef 100644 --- a/src/api/system/articleClassify.js +++ b/src/api/system/articleClassify.js @@ -17,6 +17,14 @@ export function listDeptExcludeChild(classifyId) { }) } +// 查询分类列表(排除节点) +export function listDeptExcludeChilds(classifyIds) { + return request({ + url: '/article/classify/list/excludes/' + classifyIds, + method: 'get' + }) +} + // 查询分类详细 export function getDept(classifyId) { return request({ diff --git a/src/views/system/area/index.vue b/src/views/system/area/index.vue index f8537f2..418d8da 100644 --- a/src/views/system/area/index.vue +++ b/src/views/system/area/index.vue @@ -243,86 +243,84 @@ - - {{ dict.label }} - + - - {{ dict.label }} - + - - {{ dict.label }} - + - - {{ dict.label }} - + + + + + - - {{ dict.label }} - + + + + + - - {{ dict.label }} - + + + + + - - {{ dict.label }} - + + + + + - - {{ dict.label }} - + + + + + - - {{ dict.label }} - + + + + + - - {{ dict.label }} - + + + + + @@ -378,7 +376,7 @@ - + @@ -638,10 +636,35 @@ export default { longitude: null, latitude: null, // parkingPoint: null, - agreement: undefined, + agreement: '

亲爱的用户,为了确保您的骑行安全,

请务必遵守以下骑行提示:

仅限16岁及以上用户使用。

为确保安全,后座不允许载人。

请务必佩戴安全头盔,保护自身安全。

注意道路状况,避开坑洼,小心骑行。

请在规定的地点还车,避免随意停放。

不逆行、不闯红灯,遵守所有交通法规。

骑行时不要使用手机,保持注意力集中。

避免急刹车和急转弯,保持适当的车速。

夜间骑行时,确保车灯和反光标识正常。


紧急情况处理:

如有紧急情况,请及时拨打客服电话。

感谢您的理解与配合,祝您骑行愉快。

', createBy: null, createTime: null, status: '1', + deptId: null, + contact: null, + phone: null, + autoReplacementOrder: null, + remark: null, + province: null, + city: null, + county: null, + provinceList: [], + cityList: [], + countyList: [], + ruleIds: [], + areaOutOutage: true , + parkingOutDispatch: true, + areaOutDispatch: true, + noRidingOutage: true, + authentication: true, + msgSwitch: false, + parkingReturn: true, + areaOutReturn: true, + isDepositDeduction: false, + returnVerify: false, + deposit: 200, + customService: false, + undercharge: 20 }; this.resetForm("form"); }, @@ -681,6 +704,16 @@ export default { this.form = response.data; this.form.ruleIds = response.ruleIds response.data.customService == "1" ? this.form.customService = true : this.form.customService = false + response.data.areaOutOutage == "1" ? this.form.areaOutOutage = true : this.form.areaOutOutage = false + response.data.parkingOutDispatch == "1" ? this.form.parkingOutDispatch = true : this.form.parkingOutDispatch = false + response.data.areaOutDispatch == "1" ? this.form.areaOutDispatch = true : this.form.areaOutDispatch = false + response.data.noRidingOutage == "1" ? this.form.noRidingOutage = true : this.form.noRidingOutage = false + response.data.authentication == "1" ? this.form.authentication = true : this.form.authentication = false + response.data.msgSwitch == "1" ? this.form.msgSwitch = true : this.form.msgSwitch = false + response.data.parkingReturn == "1" ? this.form.parkingReturn = true : this.form.parkingReturn = false + response.data.areaOutReturn == "1" ? this.form.areaOutReturn = true : this.form.areaOutReturn = false + response.data.isDepositDeduction == "1" ? this.form.isDepositDeduction = true : this.form.isDepositDeduction = false + response.data.returnVerify == "1" ? this.form.returnVerify = true : this.form.returnVerify = false this.open = true; this.title = "修改运营区"; this.key++; @@ -718,11 +751,17 @@ export default { // 将 rest 对象中的属性赋值给 data let data = { ...rest }; console.log("this.form=================",data) - if (data.customService) { - data.customService = "1"; - }else{ - data.customService = "0"; - } + data.customService = data.customService ? "1" : "0"; + data.areaOutOutage = data.areaOutOutage ? "1" : "0"; + data.parkingOutDispatch = data.parkingOutDispatch ? "1" : "0"; + data.areaOutDispatch = data.areaOutDispatch ? "1" : "0"; + data.noRidingOutage = data.noRidingOutage ? "1" : "0"; + data.authentication = data.authentication ? "1" : "0"; + data.msgSwitch = data.msgSwitch ? "1" : "0"; + data.parkingReturn = data.parkingReturn ? "1" : "0"; + data.areaOutReturn = data.areaOutReturn ? "1" : "0"; + data.isDepositDeduction = data.isDepositDeduction ? "1" : "0"; + data.returnVerify = data.returnVerify ? "1" : "0"; // console.log(data, 'data without cityList, countyList, provinceList'); // console.log(this.form,'formformformformform'); if (this.form.areaId != null) { diff --git a/src/views/system/articleClassify/index.vue b/src/views/system/articleClassify/index.vue index b91c07c..b0d9a3e 100644 --- a/src/views/system/articleClassify/index.vue +++ b/src/views/system/articleClassify/index.vue @@ -67,7 +67,7 @@ :tree-props="{children: 'children', hasChildren: 'hasChildren'}" > - +