diff --git a/pages/Shopping-cart/productmain/testproductmain.vue b/pages/Shopping-cart/productmain/testproductmain.vue
index f5c8fde..a9f1c36 100644
--- a/pages/Shopping-cart/productmain/testproductmain.vue
+++ b/pages/Shopping-cart/productmain/testproductmain.vue
@@ -163,7 +163,7 @@ const getProductCart = async ()=>{
'cookie': wx.getStorageSync('cookie')
}
})
- // console.log('res--->',res.data);
+ console.log('res--->',res.data);
if(res.data.code === 1) {
products.value = res.data.data
products.value.forEach((item)=>{
diff --git a/pages/home/home.vue b/pages/home/home.vue
index 0d2aadc..3afc53e 100644
--- a/pages/home/home.vue
+++ b/pages/home/home.vue
@@ -287,8 +287,4 @@ const showStop =()=>{
bottom: 24.28rpx;
}
@import url(../../common/css/global.css);
-// @font-face {
-// font-family: "ZhongShanFonts";
-// src: url('https://carbon2.obs.cn-north-4.myhuaweicloud.com/fonts/ZhongShanFonts.ttf');
-// }
diff --git a/pages/login/login.vue b/pages/login/login.vue
index 0761295..777e098 100644
--- a/pages/login/login.vue
+++ b/pages/login/login.vue
@@ -1,26 +1,28 @@
-
-
-
-
-
-
-
- 请完成授权以继续使用
-
-
-
+
+
+
+ 泠
+ 珑
+
+
+ 微信登陆
-
+
\ No newline at end of file
diff --git a/pages/order/product-waitpay/product-waitpay.vue b/pages/order/product-waitpay/product-waitpay.vue
index 237cbdc..92aabe2 100644
--- a/pages/order/product-waitpay/product-waitpay.vue
+++ b/pages/order/product-waitpay/product-waitpay.vue
@@ -1,4 +1,3 @@
-
@@ -131,7 +130,8 @@
订单备注
- 备注建议提前协商(250字以内)
+
+
@@ -174,7 +174,7 @@ const labelList = ref([]) //老套路,商品标签
const userInfo = wx.getStorageSync('userInfo') //用户信息
const orderItemList = ref({})
const totalInfo = ref([]) //购物车传过来的批量商品
-const note = ref('123')
+const note = ref('')
const postCartArr = ref([])
onMounted(() => {
getFonts()
@@ -341,6 +341,10 @@ const wxPay = async( oid )=> { //传入订单id
})
}
}
+const textAssign = (e) => { //文本输入框赋值方法
+ note.value = e.detail.value
+ // console.log('note--->',note.value);
+}
//获取字体
const getFonts =()=>{
uni.loadFontFace({
@@ -608,7 +612,7 @@ const getFonts =()=>{
.text-wrapper_2 {
margin-left: 3.99rpx;
margin-right: 3.99rpx;
- padding: 22.35rpx 0 115.22rpx;
+ padding: 22.35rpx 20rpx;
background-color: #ffefef;
border-radius: 9.38rpx;
}
diff --git a/pages/order/singleGoodOrder/singleGoodOrder.vue b/pages/order/singleGoodOrder/singleGoodOrder.vue
index b6e5e5d..9181b21 100644
--- a/pages/order/singleGoodOrder/singleGoodOrder.vue
+++ b/pages/order/singleGoodOrder/singleGoodOrder.vue
@@ -131,7 +131,8 @@
订单备注
- 备注建议提前协商(250字以内)
+
+
@@ -175,7 +176,7 @@ const labelList = ref([]) //老套路,商品标签
const userInfo = wx.getStorageSync('userInfo') //用户信息
const orderItemList = ref({})
const totalInfo = ref([]) //购物车传过来的批量商品
-const note = ref('123')
+const note = ref('')
const postCartArr = ref([])
const quantity = ref(1) //商品数量
onMounted(() => {
@@ -352,6 +353,11 @@ const getFonts =()=>{
}
})
}
+const textAssign = (e) => { //文本输入框赋值方法
+ // console.log(e);
+ note.value = e.detail.value
+ console.log('note--->',note.value);
+}