weirenchun 1 年之前
父節點
當前提交
59ecc5abd5
共有 3 個文件被更改,包括 34 次插入10 次删除
  1. 21 0
      src/pages/home/detail.vue
  2. 1 1
      src/pages/home/takePhoto.vue
  3. 12 9
      src/tenant/config.js

+ 21 - 0
src/pages/home/detail.vue

@@ -20,6 +20,8 @@
 </template>
 
 <script>
+import config from "@/tenant/config";
+import { navigator, storage, toast } from "@/utils/uniApi";
 export default {
   name: "detail.vue",
   data() {
@@ -31,6 +33,25 @@ export default {
   onLoad(op) {
     this.image = op.file;
     console.log("接收显示图片url:" + this.image);
+    wx.uploadFile({
+      url: config.host + "/wutong-file/minio/file/upload", // 仅为示例,非真实的接口地址
+      filePath: op.file,
+      header: {
+        "Blade-Auth": "bearer " + storage.get("token"),
+        Authorization: "Basic cHJvamVjdF93eDpwcm9qZWN0X3d4X2tleQ==",
+      },
+      name: "file",
+      success(res) {
+        let backData = JSON.parse(res.data);
+        console.log("上传后返回的信息:" + res.data);
+      },
+      fail(err) {
+        uni.showToast({
+          title: "上传失败",
+          icon: "none",
+        });
+      },
+    });
   },
   methods: {
     againTakePhoto() {

+ 1 - 1
src/pages/home/takePhoto.vue

@@ -8,7 +8,7 @@
         name="stop-circle-o"
         @click="record"
       />
-      <a class="a-xc" @click="navToalbum">相册</a>
+      <div class="a-xc" @click="navToalbum">相册</div>
     </div>
   </div>
 </template>

+ 12 - 9
src/tenant/config.js

@@ -1,13 +1,16 @@
 // 测试环境
-// const path = 'http://47.111.227.213:9091/api'
+const path = "https://dev.wutongresearch.club/api";
+//  const path = 'http://192.168.31.181:8110'
+// const path = "https://prod.wutongshucloud.com/api";
 
 // 线上环境
- const path = 'https://wutong.kmxxg.cn/api'
+//  const path = "https://work.wutongresearch.club/api";
 module.exports = {
-	id: '000000',
-	name: '云南省退役军人政务公开服务',
-	appId: 'wx88a0bf63ba2c7300',
-	host: path,
-	imagePath: 'https://img.yousuyoushu.cn/ent/',
-	// h5Url: 'https://h5.yousuyoushu.cn', // 线上环境,H5页面域名前缀,上线前必须修改此项
-}
+  id: "000000",
+  name: "水果慧眼",
+  appId: "wx4ef4a778fdd8c814",
+  clientId: "project_wx",
+  clientSecret: "project_wx_key",
+  host: path,
+  // h5Url: 'https://h5.yousuyoushu.cn', // 线上环境,H5页面域名前缀,上线前必须修改此项
+};