diff --git a/api/order.js b/api/order.js
index 93c83b1..05760be 100644
--- a/api/order.js
+++ b/api/order.js
@@ -164,4 +164,13 @@ export function cancelOrder(data) {
method: "post",
data,
});
+}
+
+// 删除订单
+export function deleteOrderQuery(data) {
+ return request({
+ url: "/order/deleteOrder",
+ method: "post",
+ data,
+ });
}
\ No newline at end of file
diff --git a/components/custom-tab-bar.vue b/components/custom-tab-bar.vue
index a939c63..fdb412a 100644
--- a/components/custom-tab-bar.vue
+++ b/components/custom-tab-bar.vue
@@ -93,6 +93,8 @@ export default {
bottom: 0;
width: 100%;
padding-bottom: calc(env(safe-area-inset-bottom));
+ box-sizing: border-box;
+ border-top:2rpx solid #eaeaea;
&.iosplatformType {
height: 100rpx;
padding-bottom: 0;
@@ -115,10 +117,11 @@ export default {
.tab-text {
font-size: 24rpx;
+ color:#666;
/* 文字大小 */
}
.tab-text-sel {
- color: $app-bt-bj;
+ color: #7934F6;
}
diff --git a/components/shop/fen-item.vue b/components/shop/fen-item.vue
index 10a96ac..0ecf978 100644
--- a/components/shop/fen-item.vue
+++ b/components/shop/fen-item.vue
@@ -8,7 +8,7 @@
{{obj.title}}
- ¥{{obj.price}}积分
+ ¥{{obj.price}}兑换券
diff --git a/components/shop/you-item.vue b/components/shop/you-item.vue
index f380bdb..f2676a2 100644
--- a/components/shop/you-item.vue
+++ b/components/shop/you-item.vue
@@ -5,10 +5,13 @@
- {{obj.title}}
+ {{obj.title}}
-
+
+
+
+
原价
¥{{obj.adPrice}}
diff --git a/manifest.json b/manifest.json
index 19c4c96..8d86aae 100644
--- a/manifest.json
+++ b/manifest.json
@@ -3,7 +3,7 @@
"appid" : "__UNI__4910728",
"description" : "信任桥优品是一款集线上商城、线下联盟商家的DAO聚合商城;通过“有趣”“有利”“有希望”的卖货玩法,吸引消费者、推广者、商家、投资人参与生态,共同打造共创共享的全球产业生态。",
"versionName" : "1.0.1",
- "versionCode" : 131,
+ "versionCode" : 134,
"transformPx" : false,
/* 5+App特有相关 */
"app-plus" : {
@@ -82,8 +82,7 @@
"weixin" : {
"appid" : "wx7a5902cd556d9396",
"UniversalLinks" : "https://app.tbmall.xin/uni-universallinks/__UNI__4910728/"
- },
- "apple" : {}
+ }
}
},
"icons" : {
diff --git a/pages.json b/pages.json
index 193b24f..5a37a79 100644
--- a/pages.json
+++ b/pages.json
@@ -541,11 +541,11 @@
]
}],
"tabBar": {
- // "color": "#000000",
- // "selectedColor": "#03AD27",
- // "borderStyle": "black",
+ "color": "#666",
+ "selectedColor": "#7934F6",
+ "borderStyle": "black",
// "backgroundColor": "#F8F8F8",
- "custom": true,
+ // "custom": true,
"list": [{
"pagePath": "pages/home/home",
"text": "%index.home%",
diff --git a/pages/home/home.vue b/pages/home/home.vue
index 7730748..cb8e6bb 100644
--- a/pages/home/home.vue
+++ b/pages/home/home.vue
@@ -99,7 +99,7 @@
- 积分兑换
+ 信任桥兑换
好物随心兑
@@ -235,29 +235,7 @@ export default {
currentLanguage: {},
yxProduct: [],// 好物优选列表
faddishProduct: [],// 爆款专区
- hotList: [
- {
- id: 1,
- name: "中文中文中文中文中文",
- url: "/static/common/product_def.png",
- price: 99,
- }, {
- id: 2,
- name: "中文中文中文中文",
- url: "/static/common/product_def.png",
- price: 99,
- }, {
- id: 3,
- name: "中文中文中文中文中文",
- url: "/static/common/product_def.png",
- price: 99,
- }, {
- id: 4,
- name: "中文中文中文中文中文",
- url: "/static/common/product_def.png",
- price: 99,
- },
- ],// 热门
+ hotList: [],// 热门
productLoading: false,
openShow: false,
platformType: null,// 当前设备信息
diff --git a/pages/login_package/bind-phone/bind-phone.vue b/pages/login_package/bind-phone/bind-phone.vue
index 562c9a8..4d631fc 100644
--- a/pages/login_package/bind-phone/bind-phone.vue
+++ b/pages/login_package/bind-phone/bind-phone.vue
@@ -248,7 +248,7 @@ export default {
}
.register_ifo_warp {
- margin-top: 30rpx;
+ margin-top: 90rpx;
.register_info_item {
margin-bottom: 40rpx;
diff --git a/pages/login_package/login/login.vue b/pages/login_package/login/login.vue
index 76843ae..91bfa35 100644
--- a/pages/login_package/login/login.vue
+++ b/pages/login_package/login/login.vue
@@ -92,7 +92,7 @@
注册
-
+
其他登录方式
@@ -104,7 +104,7 @@
>
微信登录
-
+
{{ item.phone }}
- {{ item.countryName }} {{ item.provinceName }} {{ item.cityName }} {{ item.areaName }} {{ item.address }}{{ item.townshipName }}
+ {{ item.countryName }} {{ item.provinceName }} {{ item.cityName }} {{ item.areaName }} {{ item.townshipName }} {{ item.address }}
-
+
提成货币
@@ -124,7 +124,7 @@
{{ formatDate(item.ctdate) }}
- {{ item.amount }}元
+ {{ item.amount }}
{{ item.status ? "已结算" : "未结算" }}
diff --git a/pages/mine_package/mine_order/mine_order.vue b/pages/mine_package/mine_order/mine_order.vue
index 9cb0457..9b3f6d0 100644
--- a/pages/mine_package/mine_order/mine_order.vue
+++ b/pages/mine_package/mine_order/mine_order.vue
@@ -60,10 +60,20 @@
-
-
- {{pItem.expressData.logisticsStatusDesc}}
- {{pItem.expressData.logisticsTraceDetailList[0].desc}}
+
+
+ {{
+ pItem.expressData.logisticsStatusDesc }}
+ {{
+ Array.isArray(pItem.expressData?.logisticsTraceDetailList)
+ ? pItem.expressData?.logisticsTraceDetailList[
+ pItem.expressData.logisticsTraceDetailList.length -
+ 1
+ ].desc
+ : ""
+ }}
-
@@ -89,12 +99,12 @@
确认收货
-
-
- 查看物流
-
-
+
+
+ 查看物流
+
+
- {{ form.type === MINE_ORDER_TYPE.UNPAID ? "取消支付" : "售后" }}
+ {{
+ form.type === MINE_ORDER_TYPE.UNPAID ? "取消支付" : "去售后"
+ }}
-
+ 删除
@@ -187,7 +204,7 @@
- 在线客服
+ 在线客服
-
+
+
{{ getValue(BALANCE_TYPE, item.type) }}
{{ formatDate(item.ctdate) }}
@@ -137,7 +138,7 @@ export default {
key: "totalMallBonus"
},
{
- name: "分红资金池剩余",
+ name: "共享资金池剩余",
key: "poolBonus"
},
];
@@ -152,7 +153,7 @@ export default {
key: "cur"
},
{
- name: "锁定次数",
+ name: "锁定账户",
key: "lockAmount"
},
@@ -218,7 +219,7 @@ export default {
key: "cur"
},
{
- name: "锁定次数",
+ name: "锁定账户",
key: "lockAmount"
},
@@ -346,7 +347,7 @@ export default {
if (item.key === "cur") {
id = this.curId;
}
- if (item.key === "lock") {
+ if (item.key === "lockAmount") {
id = this.lockId;
}
if (item.key === "pre") {
@@ -400,7 +401,7 @@ export default {
if (selInfo === "cur") {
id = this.curId;
}
- if (selInfo === "lock") {
+ if (selInfo === "lockAmount") {
id = this.lockId;
}
this.form.id = id;
diff --git a/pages/order_package/order_submit/order_submit.vue b/pages/order_package/order_submit/order_submit.vue
index fa7e080..6094d7d 100644
--- a/pages/order_package/order_submit/order_submit.vue
+++ b/pages/order_package/order_submit/order_submit.vue
@@ -446,7 +446,8 @@ export default {
adress: null,
addressId: null,
areaName: null,
- cityName: null,
+ cityName: null,
+ townshipName:null,
goodsId: this.sed.id,
id: this.sed.specsId.id,
img: data.goodsGraph,
diff --git a/pages/other_package/nine-grid/components/LotteryGrid.vue b/pages/other_package/nine-grid/components/LotteryGrid.vue
index 032b2c4..fd226cd 100644
--- a/pages/other_package/nine-grid/components/LotteryGrid.vue
+++ b/pages/other_package/nine-grid/components/LotteryGrid.vue
@@ -1,62 +1,77 @@
-
-
+
-
-
+
-
+
-
+
{{ prizesObj.prizes[index]?.name }}
- 连续抽奖10次
+
+ 连续抽奖10次
+
\ No newline at end of file
+
diff --git a/pages/other_package/productInfo/productInfo.vue b/pages/other_package/productInfo/productInfo.vue
index 07bb71e..9aec6d7 100644
--- a/pages/other_package/productInfo/productInfo.vue
+++ b/pages/other_package/productInfo/productInfo.vue
@@ -20,12 +20,17 @@
-
+
+
¥
{{ orderInfo.minPrice }} - {{ orderInfo.maxPrice }}
{{ orderInfo.minPrice }}
¥{{ orderInfo.adPrice }}
+
+
+
+
{{ orderInfo.name }}
@@ -158,7 +163,7 @@
:class="oItem.inventory === 0 ? 'item_Warp item_Warp_no_warp' : item.selectVal === oItem.n ? 'item_Warp item_Warp_yes_warp' : 'item_Warp'"
v-for="(oItem, oIndex) in item.items"
:key="oItem.n"
- @click="clickSpecification(index,item, oItem)"
+ @click="clickSpecification(oIndex,item, oItem)"
>
{{ oItem.n }}
@@ -434,18 +439,23 @@ export default {
},
//改变规格的样式
clickSpecification(pIndex,item, oItem) {
- console.log("改变规格的样式",item,oItem,this.specificationTempl)
+ console.log("改变规格的样式",pIndex,item,oItem,this.specificationTempl,this.specificationList)
- const currentSelectSpecification = this.specificationTempl.find(ele=>ele.combTypes == item.type && ele.combNames == oItem.n);
+ const currentSelectSpecification = this.specificationTempl[pIndex];
+
console.log("当前规格",currentSelectSpecification)
this.orderInfo.quantity = currentSelectSpecification?.minBuyNum || 1;
- this.specificationList[pIndex].selectVal = oItem.n;
+ this.specificationList[0].selectVal = oItem.n;
+
+ this.selectSpecificationTempl = currentSelectSpecification;
+ this.orderInfo.inventory = currentSelectSpecification.stock; // 库存
// 计算规格的价格
- this.selectSpecificationFun(pIndex, oItem);
+ // this.selectSpecificationFun(pIndex, oItem);
},
// 选择规格
selectSpecificationFun(index, item) {
+ console.log('selectSpecificationTempl',)
const currentSelectSpecification = this.selectSpecification;
currentSelectSpecification[index] = item.n;
this.selectSpecification = currentSelectSpecification;
diff --git a/pages/rwa_package/dongjian/check.vue b/pages/rwa_package/dongjian/check.vue
index 9582fd9..fd1b8b5 100644
--- a/pages/rwa_package/dongjian/check.vue
+++ b/pages/rwa_package/dongjian/check.vue
@@ -52,7 +52,7 @@ export default {
{ text: '合同编号', value: '' },
{ text: '发起方', value: '信任桥(深圳)网络科技有限公司' },
{ text: '发起时间', value: '' },
- { text: '完成结束时间', value: '' },
+ { text: '完成时间', value: '' },
],
bottomList: [
{ text: '签约人', value: '信任桥会员 章三' },
diff --git a/pages/rwa_package/dongjian/components/shop-item.vue b/pages/rwa_package/dongjian/components/shop-item.vue
index 5c5a98c..3fdd933 100644
--- a/pages/rwa_package/dongjian/components/shop-item.vue
+++ b/pages/rwa_package/dongjian/components/shop-item.vue
@@ -6,9 +6,9 @@
{{obj.title}}
- ¥{{obj.adPrice}}
+ ¥{{obj.price}}
- ¥{{obj.price}}
+ ¥{{obj.adPrice}}
diff --git a/pages/rwa_package/dongjian/finance.vue b/pages/rwa_package/dongjian/finance.vue
index 0c7f063..eb2d0ba 100644
--- a/pages/rwa_package/dongjian/finance.vue
+++ b/pages/rwa_package/dongjian/finance.vue
@@ -85,33 +85,45 @@ export default {
myChart:null,
myChartTwo:null,
data: [
- { value: '51', name: '股东' },
- { value: '29', name: '推广' },
- { value: '10', name: '团队' },
+ { value: '51', name: '用户股东' },
+ { value: '10', name: '推广奖励' },
+ { value: '10', name: '运营团队' },
+ { value: '10', name: '活动激励' },
+ { value: '9', name: '投资机构' },
{ value: '10', name: '基金会' },
],
dataSeries:{
series:[
{
- "name": "股东",
+ "name": "用户股东",
"data": 51,
"color":"#FC5E05"
},
{
- "name": "推广",
- "data": 29,
+ "name": "推广奖励",
+ "data": 10,
"color":"#BC52FD"
},
{
- "name": "团队",
+ "name": "运营团队",
"data": 10,
"color":"#FCC139"
},
{
- "name": "基金会",
+ "name": "投资机构",
"data": 10,
"color":"#0474E0"
+ },
+ {
+ "name": "活动激励",
+ "data": 9,
+ "color":"#1890ff"
+ },
+ {
+ "name": "基金会",
+ "data": 10,
+ "color":"#91cb74"
}
]
},
@@ -164,17 +176,17 @@ export default {
}
]
},
- dataColor:['#FC5E05', '#BC52FD', '#FCC139', '#0474E0'],
+ dataColor:['#FC5E05', '#BC52FD', '#FCC139', '#0474E0','#1890ff','#91cb74'],
dataTwo:[
{ value: '25', name: '成本' },
- { value: '15', name: '分红' },
+ { value: '15', name: '消费贡献共享计划' },
{ value: '13', name: '销售增值税' },
{ value: '12', name: '市场激励' },
{ value: '10.5', name: '次年发展资金' },
{ value: '10', name: 'RWA市值管理' },
{ value: '5', name: '股标护盘' },
{ value: '5', name: '交易激励' },
- { value: '4.5', name: '年终分红' },
+ { value: '4.5', name: '年终共享' },
],
dataTwoColor:['#FF8400','#6136FF', '#19CEB3', '#F1B900', '#AE9BF5'
,'#94F7A1','#006EFF','#FF2440','#00A776'],
diff --git a/pages/rwa_package/dongjian/jia.vue b/pages/rwa_package/dongjian/jia.vue
index 8f71ce6..d8008d3 100644
--- a/pages/rwa_package/dongjian/jia.vue
+++ b/pages/rwa_package/dongjian/jia.vue
@@ -101,7 +101,11 @@ export default {
this.getQuichens()
},
getQuichens() {
- quickens().then(res => {
+ let params ={
+ page:1,
+ pageSize:1000
+ }
+ quickens(params).then(res => {
if (res.bizcode == 100) {
// this.type = res.data;
this.tList[0].text = res.data.vcoinsLock;
diff --git a/pages/rwa_package/rwa/rwa.vue b/pages/rwa_package/rwa/rwa.vue
index 6eaba12..744d410 100644
--- a/pages/rwa_package/rwa/rwa.vue
+++ b/pages/rwa_package/rwa/rwa.vue
@@ -5,7 +5,7 @@
- RWA交易
+ 数字积分兑换
diff --git a/pages/rwa_package/rwa_withdrawal/rwa_withdrawal.vue b/pages/rwa_package/rwa_withdrawal/rwa_withdrawal.vue
index d3b39c4..e72de0d 100644
--- a/pages/rwa_package/rwa_withdrawal/rwa_withdrawal.vue
+++ b/pages/rwa_package/rwa_withdrawal/rwa_withdrawal.vue
@@ -1,6 +1,6 @@
-
@@ -24,7 +24,7 @@
交易密码《股权交割同意书》
+ @click="jumpSettingPwd">《共享计划终止协议》
diff --git a/pages/rwa_package/shop/fen-shop.vue b/pages/rwa_package/shop/fen-shop.vue
index eb3e3ad..67fb35c 100644
--- a/pages/rwa_package/shop/fen-shop.vue
+++ b/pages/rwa_package/shop/fen-shop.vue
@@ -1,7 +1,7 @@
-
- 信任桥积分
+ 信任桥兑换
diff --git a/pages/rwa_package/shop/you-shop.vue b/pages/rwa_package/shop/you-shop.vue
index fd7d07a..f3d0926 100644
--- a/pages/rwa_package/shop/you-shop.vue
+++ b/pages/rwa_package/shop/you-shop.vue
@@ -19,9 +19,8 @@
import Header from '@/components/common/header.vue';
import TopSafe from '@/components/common/top-safe.nvue'
import MyBtn from '@/components/common/my-btn.vue'
-import YouItem from '@/components/shop/fen-item.vue'
+import YouItem from '@/components/shop/you-item.vue'
import { searchList } from '@/api/product.js';
-import func from '@/utils/func.js';
export default {
components: { Header, TopSafe,MyBtn,YouItem },
diff --git a/pages/supply_chain/supply_chain.vue b/pages/supply_chain/supply_chain.vue
index f428636..231e575 100644
--- a/pages/supply_chain/supply_chain.vue
+++ b/pages/supply_chain/supply_chain.vue
@@ -65,7 +65,7 @@ export default {
data() {
return {
dataList: [],
- tabList: [{name:'全部'}],
+ tabList: [{name:'推荐'}],
curTab: 0,
upOption: {
auto: false,
diff --git a/static/column/supply_chain_sel.png b/static/column/supply_chain_sel.png
index c75c75b..239feed 100644
Binary files a/static/column/supply_chain_sel.png and b/static/column/supply_chain_sel.png differ
diff --git a/static/mine/fu.png b/static/mine/fu.png
new file mode 100644
index 0000000..952f5d6
Binary files /dev/null and b/static/mine/fu.png differ
diff --git a/static/mine/zhen.png b/static/mine/zhen.png
new file mode 100644
index 0000000..0d35756
Binary files /dev/null and b/static/mine/zhen.png differ
diff --git a/static/new/shouhou.png b/static/new/shouhou.png
new file mode 100644
index 0000000..bd74854
Binary files /dev/null and b/static/new/shouhou.png differ
diff --git a/static/shopping/tg.png b/static/shopping/tg.png
new file mode 100644
index 0000000..a0261c0
Binary files /dev/null and b/static/shopping/tg.png differ
diff --git a/utils/index.js b/utils/index.js
index 6fdb424..4a0def3 100644
--- a/utils/index.js
+++ b/utils/index.js
@@ -259,6 +259,9 @@ export function assembleAddress(addressObj){
if(addressObj.areaId){
ids.push(addressObj.areaId)
}
+ if(addressObj.townshipId){
+ ids.push(addressObj.townshipId)
+ }
const names=[];
if(addressObj.countryName){
names.push(addressObj.countryName);
@@ -272,6 +275,9 @@ export function assembleAddress(addressObj){
if(addressObj.areaName){
names.push(addressObj.areaName);
}
+ if(addressObj.townshipName){
+ names.push(addressObj.townshipName);
+ }
resutlObj.ids=ids.join(",");
resutlObj.names=names.join(" ");
return resutlObj;