|
@@ -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;
|
|
|
},
|
|
|
};
|