|
@@ -86,7 +86,6 @@
|
|
|
|
|
|
</uni-card>
|
|
|
|
|
|
-
|
|
|
<view>
|
|
|
<!-- 普通弹窗 -->
|
|
|
<uni-popup ref="popup" background-color="#fff">
|
|
@@ -316,24 +315,32 @@
|
|
|
},
|
|
|
methods: {
|
|
|
ht() {
|
|
|
- GetUrl({
|
|
|
+ let param = {
|
|
|
id: this.baseFormData.id,
|
|
|
url: 'https://www.ccsckj.com/'
|
|
|
- }).then(res => {
|
|
|
+ }
|
|
|
+ // uni.navigateTo({
|
|
|
+ // url:'/pages/lr/face?url='+JSON.stringify(param)
|
|
|
+ // })
|
|
|
+
|
|
|
+
|
|
|
+ GetUrl(param).then(res => {
|
|
|
console.log("1111111", res);
|
|
|
if (res.code == 200) {
|
|
|
- console.log("2222222222", res);
|
|
|
+ // this.src = res.data.url
|
|
|
+
|
|
|
+
|
|
|
uni.request({
|
|
|
- url: res.data.url
|
|
|
- }).then(rr => {
|
|
|
- console.log("333333", rr);
|
|
|
+ url:res.data.url
|
|
|
})
|
|
|
} else {
|
|
|
toast('该功能暂未开放')
|
|
|
+
|
|
|
+ uni.navigateBack()
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
})
|
|
|
},
|
|
|
showInfo(id) {
|