From 74831cceaf2489d8ae0c1bbfd6e4ad02f7f06af4 Mon Sep 17 00:00:00 2001
From: yujialong <479214531@qq.com>
Date: Fri, 2 Feb 2024 14:44:54 +0800
Subject: [PATCH] fix
---
apis/modules/user.js | 3 +
components/order/order.vue | 83 ++++++++++----------
libs/share.js | 6 +-
libs/util.js | 3 -
other/activityDetail/activityDetail.vue | 100 +++++++++++++++++++++++-
other/addGoods/addGoods.vue | 37 ++++++---
other/goodsDetail/goodsDetail.vue | 75 +++++++++++++-----
other/procureDetail/procureDetail.vue | 2 +-
other/supplierDetail/supplierDetail.vue | 45 +++++------
pages/person/person.vue | 3 +-
pages/supplier/supplier.vue | 1 +
styles/common.scss | 24 ++++++
team/certified/certified.vue | 24 +++++-
team/infoEdit/infoEdit.vue | 4 +-
team/qrcode/qrcode.vue | 6 +-
15 files changed, 304 insertions(+), 112 deletions(-)
diff --git a/apis/modules/user.js b/apis/modules/user.js
index f59a58b..278114e 100644
--- a/apis/modules/user.js
+++ b/apis/modules/user.js
@@ -43,6 +43,9 @@ export const enterpriseCertificationStatus = (openId) => {
export const saveCertification = (data) => {
return post(`nakadai/enterprise/certification/save`, data)
}
+export const updateCertification = (data) => {
+ return post(`nakadai/enterprise/certification/update`, data)
+}
diff --git a/components/order/order.vue b/components/order/order.vue
index 15505c5..6a714e3 100644
--- a/components/order/order.vue
+++ b/components/order/order.vue
@@ -29,7 +29,6 @@
-
个人采购
组织采购
@@ -50,11 +49,6 @@
import { list } from '@/apis/modules/goods.js'
export default {
name:"order",
- // props: {
- // prodId: {
- // type: Number,
- // },
- // },
data() {
return {
platformId: uni.getStorageSync('platformId'),
@@ -101,41 +95,50 @@
},
// 采购
async procure(type) {
- const { goods } = this
- const hadOrder = goods.find(e => e.prodCount) // 是否有输入采购数量(采购数量或者留言至少需要输一个才能采购)
- if (!hadOrder && !this.remarks) return this.$util.errMsg(`请输入采购数量或者留言信息!`)
- try {
- // 如果是采购,需要调两个接口,下面这个是采购的接口,第二个接口是需要传留言的接口;如果是留言的话就只需要调第二个接口
- if (hadOrder) {
- const data = goods.filter(e => e.prodCount).map(e => {
- return {
- prodCount: e.prodCount,
- prodId: e.prodId,
- shopId: this.shopId,
- skuId: e.skuId,
- }
- })
-
- await orderConfirm({
- orderItem: data
- })
+ const that = this
+ uni.showModal({
+ title: '提示',
+ content: '是否提交采购咨询?',
+ async success(res) {
+ if (res.confirm) {
+ const { goods } = that
+ const hadOrder = goods.find(e => e.prodCount) // 是否有输入采购数量(采购数量或者留言至少需要输一个才能采购)
+ if (!hadOrder && !that.remarks) return that.$util.errMsg(`请输入采购数量或者留言信息!`)
+ try {
+ // 如果是采购,需要调两个接口,下面这个是采购的接口,第二个接口是需要传留言的接口;如果是留言的话就只需要调第二个接口
+ if (hadOrder) {
+ const data = goods.filter(e => e.prodCount).map(e => {
+ return {
+ prodCount: e.prodCount,
+ prodId: e.prodId,
+ shopId: that.shopId,
+ skuId: e.skuId,
+ }
+ })
+
+ await orderConfirm({
+ orderItem: data
+ })
+ }
+
+ // 留言
+ const res = await orderSubmit({
+ leaveAMessage: hadOrder ? false : true,
+ orderShopParam: [
+ {
+ remarks: that.remarks,
+ shopId: that.shopId
+ }
+ ],
+ orderType: type
+ })
+ that.orderNumbers = res.data.orderNumbers
+ that.$refs.popup.close()
+ that.$refs.successDia.open()
+ } catch (e) {}
+ }
}
-
- // 留言
- const res = await orderSubmit({
- leaveAMessage: hadOrder ? false : true,
- orderShopParam: [
- {
- remarks: this.remarks,
- shopId: this.shopId
- }
- ],
- orderType: type
- })
- this.orderNumbers = res.data.orderNumbers
- this.$refs.popup.close()
- this.$refs.successDia.open()
- } catch (e) {}
+ })
},
// 提示成功确认
dialogConfirm() {
diff --git a/libs/share.js b/libs/share.js
index f8dc185..8c87eaa 100644
--- a/libs/share.js
+++ b/libs/share.js
@@ -1,10 +1,12 @@
export default{
// 监听用户点击右上角菜单的「转发」按钮时触发的事件
- onShareAppMessage() {
+ onShareAppMessage(e) {
+ const pages = getCurrentPages()
+ const { route, $page } = pages[pages.length - 1]
// 设置转发的参数
return {
title: "GPAC",
- // path: '',
+ path: route === 'other/activityDetail/activityDetail' ? $page : '',
imageUrl: "",
success: function(res) {
if (res.errMsg == 'shareAppMessage:ok') {
diff --git a/libs/util.js b/libs/util.js
index 30944cf..19483a2 100644
--- a/libs/util.js
+++ b/libs/util.js
@@ -3,9 +3,6 @@ import { getCurrentTime } from '@/apis/modules/activity.js'
const files = [
'https://huorantech.cn/%E7%94%A8%E6%88%B7%E6%9C%8D%E5%8A%A1%E5%8D%8F%E8%AE%AE.docx', // 用户服务协议
'https://huorantech.cn/%E7%94%A8%E6%88%B7%E9%9A%90%E7%A7%81%E5%8D%8F%E8%AE%AE.docx', // 用户隐私协议
- 'https://huorantech.cn/%E4%BA%BA%E5%B7%A5%E6%99%BA%E8%83%BD%E5%AE%9E%E9%AA%8C%E5%AE%A4%E5%BB%BA%E8%AE%BE%E6%96%B9%E6%A1%88-2020.1.docx', // 人工智能
- 'https://huorantech.cn/%E5%A4%A7%E6%95%B0%E6%8D%AE%E7%AE%A1%E7%90%86%E4%B8%8E%E5%BA%94%E7%94%A8%E4%B8%93%E4%B8%9A%E5%BB%BA%E8%AE%BE%E6%96%B9%E6%A1%88.docx', // 大数据
- 'https://huorantech.cn/%E9%87%91%E8%9E%8D%E7%A7%91%E6%8A%80%E5%AE%9E%E9%AA%8C%E5%AE%A4%E5%BB%BA%E8%AE%BE%E6%96%B9%E6%A1%88V2.0.docx', // 金融科技
]
const docExts = ['doc', 'xls', 'ppt', 'pdf', 'docx', 'xlsx', 'pptx']
export default {
diff --git a/other/activityDetail/activityDetail.vue b/other/activityDetail/activityDetail.vue
index fb70d28..5ea781e 100644
--- a/other/activityDetail/activityDetail.vue
+++ b/other/activityDetail/activityDetail.vue
@@ -43,6 +43,16 @@
+
+
+ 附件
+
+
+ {{ file.fileName }}
+ 下载
+
+
+
@@ -58,7 +68,7 @@
{{ stopSign ? (signed ? '已报名' : '已截止报名') : comStatus === 1 ? (signed ? '取消报名' : '立刻报名') : statusList[comStatus] }}
-
+
@@ -103,6 +113,7 @@
now: '',
invitationCode: '',
submiting: false,
+ popupShow: false,
}
},
// 下拉刷新
@@ -126,6 +137,10 @@
this.stopSign = 0
this.id = options.id
this.getInfo()
+ this.focus = false
+ },
+ onLoad() {
+ this.focus = false
},
methods: {
// 获取详情
@@ -223,7 +238,14 @@
} else { // 报名
this.invitationCode = ''
// 需要输入验证码就弹出邀请码弹框,否则直接报名
- this.form.isNeedCode ? this.$refs.popup.open() : this.sign()
+ if (this.form.isNeedCode) {
+ this.popupShow = true
+ this.$nextTick(() => {
+ this.$refs.popup.open()
+ })
+ } else {
+ this.sign()
+ }
}
},
// 取消报名
@@ -267,6 +289,62 @@
this.invitationCode = value
this.sign()
},
+ download(item) {
+ uni.showLoading({
+ title: '加载中',
+ mask: true
+ })
+ // 下载文件资源到本地
+ uni.downloadFile({
+ url: item.filePath,
+ success: function(res) {
+ console.log('result:', res)
+ // uni.hideLoading();
+
+ if (res.statusCode === 200) {
+ uni.getFileSystemManager().saveFile({
+ tempFilePath: res.tempFilePath,
+ success(res) {
+ console.log('saveFile:',res.savedFilePath)
+ uni.openDocument({
+ filePath: res.savedFilePath,
+ showMenu: true, //是否可以分享
+ success: (res) => {
+ uni.hideLoading()
+ console.log(res);
+ },
+ fail: (e) => {
+ uni.showToast({
+ title: '打开失败',
+ icon: "error"
+ })
+ }
+ })
+ }
+ })
+ }
+ // uni.showLoading({
+ // title: '正在打开',
+ // mask: true
+ // })
+ // 新开页面打开文档,支持格式:doc, xls, ppt, pdf, docx, xlsx, pptx。
+ // uni.openDocument({
+ // filePath: res.tempFilePath,
+ // fileType: 'docx', // 文件类型,指定文件类型打开文件,有效值 doc, xls, ppt, pdf, docx, xlsx, pptx
+ // showMenu: true, // 允许出现分享功能
+ // success: res => {
+ // uni.hideLoading()
+ // },
+ // fail: openError => {
+ // uni.hideLoading()
+ // }
+ // })
+ },
+ fail: function(err) {
+ uni.hideLoading()
+ }
+ })
+ },
}
}
@@ -311,6 +389,24 @@
margin: 20rpx;
border-radius: 20px;
background-color: #fff;
+ .file-title {
+ margin: 40rpx 0 20rpx;
+ font-size: 26rpx;
+ color: $uni-primary;
+ }
+ .file {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 15rpx;
+ font-size: 24rpx;
+ }
+ .file-name {
+ color: #333;
+ }
+ .download {
+ color: $uni-primary;
+ }
}
.list {
margin: 0 30rpx;
diff --git a/other/addGoods/addGoods.vue b/other/addGoods/addGoods.vue
index 8843683..f7418f4 100644
--- a/other/addGoods/addGoods.vue
+++ b/other/addGoods/addGoods.vue
@@ -15,7 +15,6 @@
-
@@ -35,7 +34,7 @@
规格名称
-
+
价格
@@ -62,11 +61,11 @@
-
+