diff --git a/components/tab-bar/myCenter.vue b/components/tab-bar/myCenter.vue
index 6bb1779..9396e0a 100644
--- a/components/tab-bar/myCenter.vue
+++ b/components/tab-bar/myCenter.vue
@@ -1,10 +1,9 @@
- 22222222
- 商家入驻
- 商家中心-{{shopCounts}}
- 兼职注册
- 兼职主页-{{workerCounts}}
+ 商家入驻
+ 商家中心-{{shopCounts}}
+ 兼职注册
+ 兼职主页
@@ -109,7 +108,7 @@
url: '/package2/shop/merchantCenter'
})
},
- navigatorTo(e){
+ navigatorTo(e,index){
let url = ""
if(e=='addgoods'){
url = '/package1/myCenter/addGoods'
@@ -131,9 +130,15 @@
}else if(e=='addType'){
url = '/package1/myCenter/addType'
}else if(e=='goodsList'){
- url = '/package1/myCenter/goodsList'
+ url = '/package1/myCenter/goodsList'
}else if(e=='merchant'){
url = '/package2/shop/merchantRegister'
+ }else if(e=='jianzhichaping'){
+ let item = {
+ shopScore:uni.getStorageSync('worker').score,
+ id:uni.getStorageSync('worker').workerId
+ }
+ url = '/package1/group/shopEvaluate?item=' + JSON.stringify(item) + '&isMerchant=2&isCha=' + (index =='cha'?1:0)
}else if(e == 'partTimeReg'){
let worker = uni.getStorageSync('worker')
let that = this
@@ -168,7 +173,7 @@
return
}
}else if(e=='jianzhizhuye'){
- url = '/package2/partTimeJob/partTimeJobCenter?type=worker'
+ url = '/package2/partTimeJob/partTimeJobCenter'
}
uni.navigateTo({
url: url
diff --git a/package1/buyFood/buyFood.vue b/package1/buyFood/buyFood.vue
index 67b25f7..ca257d2 100644
--- a/package1/buyFood/buyFood.vue
+++ b/package1/buyFood/buyFood.vue
@@ -313,7 +313,7 @@
¥{{backendTotalAmount ? backendTotalAmount.toFixed(2) : totalAmountCalc.toFixed(2)}}
-
+
若拼团失败,将会为您自动退款
@@ -693,7 +693,10 @@
let shopArea = this.shopItem.shopArea || '';
let putArea = this.formData.address ? this.formData.address.areaId : '';
if(shopArea == '' || putArea == ''){
- this.tui.toast('请先选择取货和收货地址');
+ uni.showToast({
+ title: '请先选择取货和收货地址',
+ icon: 'none'
+ })
return;
}
uni.navigateTo({
@@ -756,7 +759,10 @@
wxPayment() {
let that = this;
if (!this.currentOrderId || !this.backendTotalAmount) {
- that.tui.toast(this.currentOrderId + this.backendTotalAmount);
+ uni.showToast({
+ title: this.currentOrderId + this.backendTotalAmount,
+ icon: 'none'
+ })
return;
}
@@ -811,10 +817,16 @@
that.handlePaymentSuccess();
}, 1500);
}).catch(e => {
- that.tui.toast("请求失败");
+ uni.showToast({
+ title: '请求失败',
+ icon: 'none'
+ })
});
} else {
- that.tui.toast(res.message);
+ uni.showToast({
+ title: res.message,
+ icon: 'none'
+ })
}
}
})
diff --git a/package1/group/groupBuySingle.vue b/package1/group/groupBuySingle.vue
index 32832a2..2296b54 100644
--- a/package1/group/groupBuySingle.vue
+++ b/package1/group/groupBuySingle.vue
@@ -302,7 +302,7 @@
:class="selectedGroupRule && selectedGroupRule.groupCount === rule.groupCount ? 'team-check' : 'team1'"
v-for="(rule, rIndex) in currentItem.productGroupBuyPrices" :key="rIndex"
@tap="selectGroupRule(rule)">
-
+
¥{{parseFloat(rule.groupPrice).toFixed(2)}}
@@ -331,14 +331,17 @@
-
-
+
-
+
+
+
+
¥{{spec.attributeListPrice | sliceMsg}}
-
+
{{spec.productName}}
@@ -2107,6 +2110,11 @@
font-size: 28rpx;
font-weight: 700;
}
+ .spec22 {
+ display: flex;
+ white-space: nowrap;
+ overflow-x: scroll;
+ }
.spec222 {
display: inline-block;
@@ -2133,7 +2141,6 @@
.team1 {
width: 154rpx;
- height: 126rpx;
background: #eee;
border-radius: 20rpx;
font-size: 26rpx;
@@ -2142,11 +2149,35 @@
float: left;
margin-right: 40rpx;
font-weight: 700;
+ padding: 10px;
+ }
+ .team2{
+ width: 190rpx;
+ height: 270rpx;
+ background: #f5f5f5;
+ border-radius: 10px;
+ float: left;
+ text-align: center;
+ margin-right: 20px;
+ padding: 10px 10px 0;
+ }
+ .team-check1 {
+ width: 190rpx;
+ height: 280rpx;
+ background: rgba(166, 255, 234, 1);
+ border-radius: 20rpx;
+ font-size: 26rpx;
+ text-align: center;
+ line-height: 40rpx;
+ float: left;
+ margin-right: 40rpx;
+ position: relative;
+ padding: 10px 10px 0;
+ font-weight: 700;
}
-
.team-check {
width: 154rpx;
- height: 126rpx;
+ height: auto;
background: rgba(166, 255, 234, 1);
border-radius: 20rpx;
font-size: 26rpx;
@@ -2155,6 +2186,7 @@
float: left;
margin-right: 40rpx;
position: relative;
+ padding: 10px;
}
.zaixian-swiper{
flex: 1;
@@ -2177,6 +2209,9 @@
.goods-team {
width: 100%;
min-height: 130rpx;
+ display: flex;
+ white-space: nowrap;
+ overflow-x: scroll;
}
.list-right {
diff --git a/package1/group/shopEvaluate.vue b/package1/group/shopEvaluate.vue
index 440941a..5a74243 100644
--- a/package1/group/shopEvaluate.vue
+++ b/package1/group/shopEvaluate.vue
@@ -62,21 +62,21 @@
-
+
+
@@ -128,7 +129,6 @@
replyText:'',
isMerchant:0,
replyPicture:"",
- isExpanded: false,
menuButtonInfo: {},
isPintuan: true,
bigImg: '',
@@ -216,6 +216,11 @@
}
for(let i=0;i 0){
+ for(let m=0;m {});
},
- toggleReply() {
- this.isExpanded = !this.isExpanded;
+ toggleReply(i,m) {
+
+ this.shopComments[i].comments[m].isOpen = !this.shopComments[i].comments[m].isOpen;
+ console.log("11111",this.shopComments)
+ this.$forceUpdate()
},
changeStatus(v){
this.shopComments[v].isReply = !this.shopComments[v].isReply
diff --git a/package1/myCenter/addGoods.vue b/package1/myCenter/addGoods.vue
index d41d4ac..0e7d879 100644
--- a/package1/myCenter/addGoods.vue
+++ b/package1/myCenter/addGoods.vue
@@ -54,9 +54,9 @@
-
-
-
+
+
+ 删除
新增拼团
@@ -124,21 +124,24 @@
-
+
-
{{item.attributeName}}
-
+
-
+
+
\ No newline at end of file
diff --git a/package2/shop/merchantCenter.vue b/package2/shop/merchantCenter.vue
index 89c28d1..9b868c9 100644
--- a/package2/shop/merchantCenter.vue
+++ b/package2/shop/merchantCenter.vue
@@ -31,7 +31,7 @@
-
+
{{daichucan}}
@@ -278,7 +278,7 @@
break;
case 'tui':
uni.navigateTo({
- url: '/package2/partTimeJob/partTimeJobCenter?type=shop'
+ url: '/package2/shop/afterService?type=shop'
})
break;
case 'zd':
diff --git a/package2/shop/ranking.vue b/package2/shop/ranking.vue
new file mode 100644
index 0000000..6199825
--- /dev/null
+++ b/package2/shop/ranking.vue
@@ -0,0 +1,289 @@
+
+
+
+
+
+
+
+
+ 兼职中心
+
+
+
+
+
+
+
+
+
+ {{fireList[2].productName == undefined?'':fireList[2].productName}}
+
+
+ {{fireList[2].totalSold == undefined?'':fireList[2].totalSold}}
+
+
+
+
+ {{fireList[0].productName == undefined?'':fireList[0].productName}}
+
+
+ {{fireList[0].totalSold == undefined?'':fireList[0].totalSold}}
+
+
+
+
+ {{fireList[1].productName == undefined?'':fireList[1].productName}}
+
+
+ {{fireList[1].totalSold == undefined?'':fireList[1].totalSold}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{index + 1}}
+
+
+ 暂无图片
+
+
+ {{item.productName == null?'暂无':item.productName}}
+ {{item.totalSold}}单
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages.json b/pages.json
index b3c44c5..e311406 100644
--- a/pages.json
+++ b/pages.json
@@ -245,6 +245,12 @@
"navigationBarTitleText": "商家中心",
"navigationStyle": "custom"
}
+ },{
+ "path": "shop/ranking",
+ "style": {
+ "navigationBarTitleText": "排名中心",
+ "navigationStyle": "custom"
+ }
},{
"path": "shop/shopBill",
"style": {
@@ -263,6 +269,12 @@
"navigationBarTitleText": "商家订单",
"navigationStyle": "custom"
}
+ },{
+ "path": "shop/afterService",
+ "style": {
+ "navigationBarTitleText": "售后处理",
+ "navigationStyle": "custom"
+ }
},{
"path": "partTimeJob/partTimeJobCenter",
"style": {
diff --git a/pages/index/index.vue b/pages/index/index.vue
index 3298c70..9550f17 100644
--- a/pages/index/index.vue
+++ b/pages/index/index.vue
@@ -1213,7 +1213,7 @@
margin-top: 40rpx;
background: #F5F8F5;
position: relative;
- z-index:100
+ z-index:99
}
.menu-list {
diff --git a/uni_modules/uni-combox/components/uni-combox/uni-combox.vue b/uni_modules/uni-combox/components/uni-combox/uni-combox.vue
index d4cb79d..962a86a 100644
--- a/uni_modules/uni-combox/components/uni-combox/uni-combox.vue
+++ b/uni_modules/uni-combox/components/uni-combox/uni-combox.vue
@@ -153,7 +153,7 @@
font-size: 14px;
border: 1px solid #DCDFE6;
border-radius: 4px;
- padding: 6px 10px;
+ padding: 10px 10px;
position: relative;
/* #ifndef APP-NVUE */
display: flex;
diff --git a/uni_modules/uni-countdown/changelog.md b/uni_modules/uni-countdown/changelog.md
new file mode 100644
index 0000000..baed0ad
--- /dev/null
+++ b/uni_modules/uni-countdown/changelog.md
@@ -0,0 +1,30 @@
+## 1.2.5(2025-04-14)
+- 修复 filterShow 导致的运行报错
+## 1.2.4(2024-09-21)
+- 新增 支持控制显示位数 默认显示2位
+## 1.2.3(2024-02-20)
+- 新增 支持控制小时,分钟的显隐:showHour showMinute
+## 1.2.2(2022-01-19)
+- 修复 在微信小程序中样式不生效的bug
+## 1.2.1(2022-01-18)
+- 新增 update 方法 ,在动态更新时间后,刷新组件
+## 1.2.0(2021-11-19)
+- 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
+- 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-countdown](https://uniapp.dcloud.io/component/uniui/uni-countdown)
+## 1.1.3(2021-10-18)
+- 重构
+- 新增 font-size 支持自定义字体大小
+## 1.1.2(2021-08-24)
+- 新增 支持国际化
+## 1.1.1(2021-07-30)
+- 优化 vue3下小程序事件警告的问题
+## 1.1.0(2021-07-30)
+- 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
+## 1.0.5(2021-06-18)
+- 修复 uni-countdown 重复赋值跳两秒的 bug
+## 1.0.4(2021-05-12)
+- 新增 组件示例地址
+## 1.0.3(2021-05-08)
+- 修复 uni-countdown 不能控制倒计时的 bug
+## 1.0.2(2021-02-04)
+- 调整为uni_modules目录规范
diff --git a/uni_modules/uni-countdown/components/uni-countdown/i18n/en.json b/uni_modules/uni-countdown/components/uni-countdown/i18n/en.json
new file mode 100644
index 0000000..06309cb
--- /dev/null
+++ b/uni_modules/uni-countdown/components/uni-countdown/i18n/en.json
@@ -0,0 +1,6 @@
+{
+ "uni-countdown.day": "day",
+ "uni-countdown.h": "h",
+ "uni-countdown.m": "m",
+ "uni-countdown.s": "s"
+}
diff --git a/uni_modules/uni-countdown/components/uni-countdown/i18n/index.js b/uni_modules/uni-countdown/components/uni-countdown/i18n/index.js
new file mode 100644
index 0000000..de7509c
--- /dev/null
+++ b/uni_modules/uni-countdown/components/uni-countdown/i18n/index.js
@@ -0,0 +1,8 @@
+import en from './en.json'
+import zhHans from './zh-Hans.json'
+import zhHant from './zh-Hant.json'
+export default {
+ en,
+ 'zh-Hans': zhHans,
+ 'zh-Hant': zhHant
+}
diff --git a/uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hans.json b/uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hans.json
new file mode 100644
index 0000000..358cdd1
--- /dev/null
+++ b/uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hans.json
@@ -0,0 +1,6 @@
+{
+ "uni-countdown.day": "天",
+ "uni-countdown.h": "时",
+ "uni-countdown.m": "分",
+ "uni-countdown.s": "秒"
+}
diff --git a/uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hant.json b/uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hant.json
new file mode 100644
index 0000000..e5a63de
--- /dev/null
+++ b/uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hant.json
@@ -0,0 +1,6 @@
+{
+ "uni-countdown.day": "天",
+ "uni-countdown.h": "時",
+ "uni-countdown.m": "分",
+ "uni-countdown.s": "秒"
+}
diff --git a/uni_modules/uni-countdown/components/uni-countdown/uni-countdown.vue b/uni_modules/uni-countdown/components/uni-countdown/uni-countdown.vue
new file mode 100644
index 0000000..d9c2939
--- /dev/null
+++ b/uni_modules/uni-countdown/components/uni-countdown/uni-countdown.vue
@@ -0,0 +1,278 @@
+
+
+ {{ d }}
+ {{dayText}}
+ {{ h }}
+ {{ showColon ? ':' : hourText }}
+ {{ i }}
+ {{ showColon ? ':' : minuteText }}
+ {{ s }}
+ {{secondText}}
+
+
+
+
diff --git a/uni_modules/uni-countdown/package.json b/uni_modules/uni-countdown/package.json
new file mode 100644
index 0000000..73c35f5
--- /dev/null
+++ b/uni_modules/uni-countdown/package.json
@@ -0,0 +1,86 @@
+{
+ "id": "uni-countdown",
+ "displayName": "uni-countdown 倒计时",
+ "version": "1.2.5",
+ "description": "CountDown 倒计时组件",
+ "keywords": [
+ "uni-ui",
+ "uniui",
+ "countdown",
+ "倒计时"
+],
+ "repository": "https://github.com/dcloudio/uni-ui",
+ "engines": {
+ "HBuilderX": ""
+ },
+ "directories": {
+ "example": "../../temps/example_temps"
+ },
+"dcloudext": {
+ "sale": {
+ "regular": {
+ "price": "0.00"
+ },
+ "sourcecode": {
+ "price": "0.00"
+ }
+ },
+ "contact": {
+ "qq": ""
+ },
+ "declaration": {
+ "ads": "无",
+ "data": "无",
+ "permissions": "无"
+ },
+ "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui",
+ "type": "component-vue"
+ },
+ "uni_modules": {
+ "dependencies": ["uni-scss"],
+ "encrypt": [],
+ "platforms": {
+ "cloud": {
+ "tcb": "y",
+ "aliyun": "y",
+ "alipay": "n"
+ },
+ "client": {
+ "App": {
+ "app-vue": "y",
+ "app-nvue": "y",
+ "app-harmony": "u",
+ "app-uvue": "u"
+ },
+ "H5-mobile": {
+ "Safari": "y",
+ "Android Browser": "y",
+ "微信浏览器(Android)": "y",
+ "QQ浏览器(Android)": "y"
+ },
+ "H5-pc": {
+ "Chrome": "y",
+ "IE": "y",
+ "Edge": "y",
+ "Firefox": "y",
+ "Safari": "y"
+ },
+ "小程序": {
+ "微信": "y",
+ "阿里": "y",
+ "百度": "y",
+ "字节跳动": "y",
+ "QQ": "y"
+ },
+ "快应用": {
+ "华为": "u",
+ "联盟": "u"
+ },
+ "Vue": {
+ "vue2": "y",
+ "vue3": "y"
+ }
+ }
+ }
+ }
+}
diff --git a/uni_modules/uni-countdown/readme.md b/uni_modules/uni-countdown/readme.md
new file mode 100644
index 0000000..4bcb1aa
--- /dev/null
+++ b/uni_modules/uni-countdown/readme.md
@@ -0,0 +1,10 @@
+
+
+## CountDown 倒计时
+> **组件名:uni-countdown**
+> 代码块: `uCountDown`
+
+倒计时组件。
+
+### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-countdown)
+#### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
\ No newline at end of file
diff --git a/uni_modules/uni-notice-bar/changelog.md b/uni_modules/uni-notice-bar/changelog.md
new file mode 100644
index 0000000..aa1d627
--- /dev/null
+++ b/uni_modules/uni-notice-bar/changelog.md
@@ -0,0 +1,22 @@
+## 1.2.3(2025-04-14)
+- 新增 左侧自定义插槽,可自定义文字或图标
+## 1.2.2(2023-12-20)
+- 修复动态绑定title时,滚动速度不一致的问题
+## 1.2.1(2022-09-05)
+- 新增 属性 fontSize,可修改文字大小。
+## 1.2.0(2021-11-19)
+- 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
+- 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-notice-bar](https://uniapp.dcloud.io/component/uniui/uni-notice-bar)
+## 1.1.1(2021-11-09)
+- 新增 提供组件设计资源,组件样式调整
+## 1.1.0(2021-07-30)
+- 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
+## 1.0.9(2021-05-12)
+- 新增 组件示例地址
+## 1.0.8(2021-04-21)
+- 优化 添加依赖 uni-icons, 导入后自动下载依赖
+## 1.0.7(2021-02-05)
+- 优化 组件引用关系,通过uni_modules引用组件
+
+## 1.0.6(2021-02-05)
+- 调整为uni_modules目录规范
diff --git a/uni_modules/uni-notice-bar/components/uni-notice-bar/uni-notice-bar.vue b/uni_modules/uni-notice-bar/components/uni-notice-bar/uni-notice-bar.vue
new file mode 100644
index 0000000..81416d9
--- /dev/null
+++ b/uni_modules/uni-notice-bar/components/uni-notice-bar/uni-notice-bar.vue
@@ -0,0 +1,423 @@
+
+
+
+
+
+
+
+ {{text}}
+
+
+
+ {{ moreText }}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/uni_modules/uni-notice-bar/package.json b/uni_modules/uni-notice-bar/package.json
new file mode 100644
index 0000000..1c9135b
--- /dev/null
+++ b/uni_modules/uni-notice-bar/package.json
@@ -0,0 +1,90 @@
+{
+ "id": "uni-notice-bar",
+ "displayName": "uni-notice-bar 通告栏",
+ "version": "1.2.3",
+ "description": "NoticeBar 通告栏组件,常用于展示公告信息,可设为滚动公告",
+ "keywords": [
+ "uni-ui",
+ "uniui",
+ "通告栏",
+ "公告",
+ "跑马灯"
+],
+ "repository": "https://github.com/dcloudio/uni-ui",
+ "engines": {
+ "HBuilderX": ""
+ },
+ "directories": {
+ "example": "../../temps/example_temps"
+ },
+"dcloudext": {
+ "sale": {
+ "regular": {
+ "price": "0.00"
+ },
+ "sourcecode": {
+ "price": "0.00"
+ }
+ },
+ "contact": {
+ "qq": ""
+ },
+ "declaration": {
+ "ads": "无",
+ "data": "无",
+ "permissions": "无"
+ },
+ "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui",
+ "type": "component-vue"
+ },
+ "uni_modules": {
+ "dependencies": [
+ "uni-scss",
+ "uni-icons"
+ ],
+ "encrypt": [],
+ "platforms": {
+ "cloud": {
+ "tcb": "y",
+ "aliyun": "y",
+ "alipay": "n"
+ },
+ "client": {
+ "App": {
+ "app-vue": "y",
+ "app-nvue": "y",
+ "app-harmony": "u",
+ "app-uvue": "u"
+ },
+ "H5-mobile": {
+ "Safari": "y",
+ "Android Browser": "y",
+ "微信浏览器(Android)": "y",
+ "QQ浏览器(Android)": "y"
+ },
+ "H5-pc": {
+ "Chrome": "y",
+ "IE": "y",
+ "Edge": "y",
+ "Firefox": "y",
+ "Safari": "y"
+ },
+ "小程序": {
+ "微信": "y",
+ "阿里": "y",
+ "百度": "y",
+ "字节跳动": "y",
+ "QQ": "y"
+ },
+ "快应用": {
+ "华为": "u",
+ "联盟": "u"
+ },
+ "Vue": {
+ "vue2": "y",
+ "vue3": "y"
+ }
+ }
+ }
+ }
+}
diff --git a/uni_modules/uni-notice-bar/readme.md b/uni_modules/uni-notice-bar/readme.md
new file mode 100644
index 0000000..fb2ede2
--- /dev/null
+++ b/uni_modules/uni-notice-bar/readme.md
@@ -0,0 +1,13 @@
+
+
+## NoticeBar 通告栏
+> **组件名:uni-notice-bar**
+> 代码块: `uNoticeBar`
+
+
+通告栏组件 。
+
+### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-notice-bar)
+#### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
+
+