dev01 8 months ago
parent
commit
29e983cfcf

+ 2 - 2
src/app.jsx

@@ -87,9 +87,9 @@ class App extends Component {
         'token': token,
       },
       // 生产
-      url: 'wss://bm.jishutao.com/webSocketServer',
+      // url: 'wss://bm.jishutao.com/webSocketServer',
       // 本地
-      // url: 'wss://172.16.1.199:8080/webSocketServer'
+      url: 'wss://172.16.1.199:8080/webSocketServer'
       // 测试
       // url: 'wss://uat.jishutao.com/webSocketServer'
     })

+ 26 - 7
src/pages/applyDepart/publicContent.jsx

@@ -99,11 +99,30 @@ class PublicContent extends Component {
   // 增加 省 市 区拼接,地址带区域的则把区域去掉
   getArea() {
     const { selectArrderLocation } = this.props
-    let pcd = selectArrderLocation.province + selectArrderLocation.city + selectArrderLocation.district
-    let str = selectArrderLocation.name
-    let index = str.lastIndexOf("区")
-    let name = str.substring(index + 1)
-    return pcd + name
+
+    let address = selectArrderLocation.name;
+    let defaultProvince = selectArrderLocation.province || "";
+    let defaultCity = selectArrderLocation.city || "";
+    let defaultDistrict = selectArrderLocation.district || "";
+
+    // 假设省市区的关键字有 "省", "市", "区"
+    const provinceKeyword = '省';
+    const cityKeyword = '市';
+    const districtKeyword = '区';
+
+    // 判断是否包含省市区关键字,如果不包含则进行补全
+    if (address.indexOf(provinceKeyword) === -1) {
+      address = `${defaultProvince}${address}`;
+    }
+    if (address.indexOf(cityKeyword) === -1) {
+      address = address.replace(provinceKeyword, `${provinceKeyword}${defaultCity}`);
+    }
+    if (address.indexOf(districtKeyword) !== -1 && address.indexOf("小区") !== -1) {
+      address = address.replace(cityKeyword, `${cityKeyword}${defaultDistrict}`);
+    } else if (address.indexOf(districtKeyword) === -1) {
+      address = address.replace(cityKeyword, `${cityKeyword}${defaultDistrict}`);
+    }
+    return address;
   }
 
   onSubmit() {
@@ -118,6 +137,7 @@ class PublicContent extends Component {
       releaseEnds: this.state.rangeEndMinuteVal,
       remarks: this.state.reason,
       districtName: this.getArea(),
+      addressName: this.props.selectArrderLocation.province + this.props.selectArrderLocation.city + this.props.selectArrderLocation.district,
       longitude: this.props.selectArrderLocation.longitude,
       latitude: this.props.selectArrderLocation.latitude,
       annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
@@ -306,8 +326,7 @@ class PublicContent extends Component {
                 <View>总计公出:<Text style={{ color: 'red' }}>{obj.peopleCount}人,{obj.timesCount}次,{obj.durationCount}时</Text>。</View>
                 <View>
                   <Text style={{ color: 'red' }}>
-                    本合同{["低于1万元以下", "在1~3万", "在3~5万", "在5~10万", "在10万及以上"][obj.amountType]},
-                    {["原则上技术人员不可下户", `本次申请,已超出${obj.durationMax}小时`, `本次公出申请,已超出${obj.durationMax}小时`, `本次公出申请,已超出${obj.durationMax}小时`, ""][obj.amountType]}
+                    {obj.amountName},{obj.amountType}
                   </Text>。
                 </View>
                 <View>如需公出,需<Text style={{ color: 'red' }}>{obj.adminName}</Text>审核。</View>

+ 1 - 2
src/pages/egressDetails/index.jsx

@@ -392,8 +392,7 @@ class EgressDetails extends Component {
                 <View>总计公出:<Text style={{ color: 'red' }}>{obj.peopleCount}人,{obj.timesCount}次,{obj.durationCount}时</Text>。</View>
                 <View>
                   <Text style={{ color: 'red' }}>
-                    本合同{["低于1万元以下", "在1~3万", "在3~5万", "在5~10万", "在10万及以上"][obj.amountType]},
-                    {["原则上技术人员不可下户", `本次申请,已超出合同可公出时间标准${obj.durationMax}小时`, `本次申请,已超出已超出合同可公出时间标准${obj.durationMax}小时`, `本次申请,已超出已超出合同可公出时间标准${obj.durationMax}小时`, ""][obj.amountType]}
+                    {obj.amountName},{obj.amountType}
                   </Text>。
                 </View>
                 <View>请确认是否同意本次公出?</View>

+ 55 - 10
src/pages/egressDetails/publicContent.jsx

@@ -177,15 +177,56 @@ class PublicContent extends Component {
       ),
     });
   }
+
+  // 增加 省 市 区拼接,地址带区域的则把区域去掉
+  getArea() {
+    const { locationInfor } = this.props
+    // if (locationInfor.province || locationInfor.city || locationInfor.district) {
+    //   let pcd = locationInfor.province + locationInfor.city + locationInfor.district
+    //   let str = locationInfor.name
+    //   let index = str.lastIndexOf("区")
+    //   let name = str.substring(index + 1)
+    //   return pcd + name
+    // } else {
+    //   let str = locationInfor.name
+    //   return str
+    // }
+    let address = locationInfor.name;
+    let defaultProvince = locationInfor.province || "";
+    let defaultCity = locationInfor.city || "";
+    let defaultDistrict = locationInfor.district || "";
+
+    // 假设省市区的关键字有 "省", "市", "区"
+    const provinceKeyword = '省';
+    const cityKeyword = '市';
+    const districtKeyword = '区';
+
+    // 判断是否包含省市区关键字,如果不包含则进行补全
+    if (address.indexOf(provinceKeyword) === -1) {
+      address = `${defaultProvince}${address}`;
+    }
+    if (address.indexOf(cityKeyword) === -1) {
+      address = address.replace(provinceKeyword, `${provinceKeyword}${defaultCity}`);
+    }
+    console.log(address.indexOf(districtKeyword) + "===" + address.indexOf("小区"))
+    if (address.indexOf(districtKeyword) !== -1 && address.indexOf("小区") !== -1) {
+      address = address.replace(cityKeyword, `${cityKeyword}${defaultDistrict}`);
+    } else if (address.indexOf(districtKeyword) === -1) {
+      address = address.replace(cityKeyword, `${cityKeyword}${defaultDistrict}`);
+    }
+    return address;
+
+  }
+
   // 修改公出提交
   onSubmit() {
-    const { isVerify = false } = this.props;
+    const { dtails, locationInfor, isVerify = false } = this.props;
     let objectType = this.props.dtails.uids.indexOf(',') > -1 ? 1 : 0
-
     this.setState({
       loading: true,
     });
     let datas;
+    let addressName = !!locationInfor.province ? locationInfor.province + locationInfor.city + locationInfor.district : "";
     if (this.props.dtails.type == 0) {
       datas = {
         id: this.props.dtails.id,
@@ -195,9 +236,10 @@ class PublicContent extends Component {
         remarks: this.state.reason,
         plan: this.state.plan,
         expectedEffect: this.state.expectedEffect,
-        districtName: this.props.locationInfor.name,
-        longitude: this.props.locationInfor.longitude,
-        latitude: this.props.locationInfor.latitude,
+        districtName: this.getArea(),
+        addressName: addressName,
+        longitude: locationInfor.longitude,
+        latitude: locationInfor.latitude,
         annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
         duration: this.state.totalDuration,
         validDate: JSON.stringify(this.state.validDates),
@@ -216,7 +258,8 @@ class PublicContent extends Component {
         remarks: this.state.reason,
         // plan: this.state.plan,
         // expectedEffect: this.state.expectedEffect,
-        districtName: this.props.locationInfor.name,
+        districtName: this.getArea(),
+        addressName: addressName,
         longitude: this.props.locationInfor.longitude,
         latitude: this.props.locationInfor.latitude,
         annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
@@ -238,7 +281,8 @@ class PublicContent extends Component {
         remarks: this.state.reason,
         plan: this.state.plan,
         expectedEffect: this.state.expectedEffect,
-        districtName: this.props.locationInfor.name,
+        districtName: this.getArea(),
+        addressName: addressName,
         longitude: this.props.locationInfor.longitude,
         latitude: this.props.locationInfor.latitude,
         annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
@@ -288,6 +332,7 @@ class PublicContent extends Component {
   }
   // 再次公出提交
   goAgain() {
+    const { locationInfor } = this.props
     if (!this.state.rangeStartMinuteVal) {
       Taro.showToast({ title: "请选择公出时间", icon: "none" });
       return;
@@ -339,7 +384,8 @@ class PublicContent extends Component {
       releaseStarts: this.state.rangeStartMinuteVal,
       releaseEnds: this.state.rangeEndMinuteVal,
       remarks: this.state.reason,
-      districtName: this.props.locationInfor.name,
+      districtName: this.getArea(),
+      addressName: locationInfor.province + locationInfor.city + locationInfor.district,
       longitude: this.props.locationInfor.longitude,
       latitude: this.props.locationInfor.latitude,
       annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
@@ -506,8 +552,7 @@ class PublicContent extends Component {
                 <View>总计公出:<Text style={{ color: 'red' }}>{obj.peopleCount}人,{obj.timesCount}次,{obj.durationCount}时</Text>。</View>
                 <View>
                   <Text style={{ color: 'red' }}>
-                    本合同{["低于1万元以下", "在1~3万", "在3~5万", "在5~10万", "在10万及以上"][obj.amountType]},
-                    {["原则上技术人员不可下户", `本次申请,已超出${obj.durationMax}小时`, `本次公出申请,已超出${obj.durationMax}小时`, `本次公出申请,已超出${obj.durationMax}小时`, ""][obj.amountType]}
+                    {obj.amountName},{obj.amountType}
                   </Text>。
                 </View>
                 <View>如需公出,需<Text style={{ color: 'red' }}>{obj.adminName}</Text>审核。</View>

+ 2 - 2
src/utils/config.js

@@ -1,7 +1,7 @@
 // 本地
-// export const resourceAddress = 'http://172.16.1.199/:3000/upload;'
+export const resourceAddress = 'http://172.16.1.199/:3000/upload;'
 // 生产
-export const resourceAddress = 'https://s.jishutao.com/upload';
+// export const resourceAddress = 'https://s.jishutao.com/upload';
 // 测试
 // export const resourceAddress = 'https://static.jishutao.com/upload';
 

+ 2 - 2
src/utils/servers/baseUrl.js

@@ -7,9 +7,9 @@ const getBaseUrl = (url) => {
     BASE_URL = 'https://bm.jishutao.com'
   } else {
     // 生产环境
-    // BASE_URL = 'http://172.16.1.199:8080'
+    BASE_URL = 'http://172.16.1.199:8080'
     // BASE_URL = 'https://uat.jishutao.com'
-    BASE_URL = 'https://bm.jishutao.com'
+    // BASE_URL = 'https://bm.jishutao.com'
   }
   return BASE_URL
 }