瀏覽代碼

bug修改

郭宇琦 1 周之前
父節點
當前提交
c112196afe
共有 3 個文件被更改,包括 7 次插入1 次删除
  1. 0 1
      component/scanBtn/scanBtn.vue
  2. 1 0
      pages/carDetail/carDetail.vue
  3. 6 0
      utils/gyq_utils.js

+ 0 - 1
component/scanBtn/scanBtn.vue

@@ -129,7 +129,6 @@
 		 */
 		,
 		mounted: function(options) {
-			console.log(454444)
 			const car_list = uni.getStorageSync('user_car_list') || null
 			const storedLocation = uni.getStorageSync('user_current_location');
 			if (car_list){

+ 1 - 0
pages/carDetail/carDetail.vue

@@ -152,6 +152,7 @@
 						// resp.data.data.desc = resp.data.data.desc.replaceAll('/<img\b/gi, '$& style="1"'')
 						me.tapSelectType(resp.data.data.rental_setting[0])
 						resp.data.data.distance = common.formatDistance(Number(resp.data.data.distance))
+						resp.data.data.desc = this.$htmlData(resp.data.data.desc)
 						me.setData({
 							car_detail: resp.data.data,
 							price: ((resp.data.data.rental_setting[0]?.hire_price || 0) / 100).toFixed(2)

+ 6 - 0
utils/gyq_utils.js

@@ -25,6 +25,11 @@ async function location() {
 	}
 }
 
+function htmlData(str){
+	return str.replace(/\<img/gi, '<img style="width:100%;height:auto;display:block" ')
+}
+
+
 function locationAsync() {
 	return new Promise((resolve, reject) => {
 		uni.getLocation({
@@ -124,5 +129,6 @@ export default {
 		vm.prototype.$msg = msg;
 		vm.prototype.$location = location;
 		vm.prototype.$checkLocationPermission = checkLocationPermission;
+		vm.prototype.$htmlData = htmlData;
 	},
 };