diff --git a/components/bussiness-components/packingStationItem.vue b/components/bussiness-components/packingStationItem.vue
index 33d5da8..da5eeea 100644
--- a/components/bussiness-components/packingStationItem.vue
+++ b/components/bussiness-components/packingStationItem.vue
@@ -1,228 +1,229 @@
-
-
-
-
-
- {{ info.enterpriseName }}
-
-
-
- {{ transformBusiness(info.business) }}
-
-
-
- 月采购量
-
- {{ info.monthlyPurchaseQuantity ? `${info.monthlyPurchaseQuantity}吨` : '0' }}
-
-
-
- 月采购额
-
- {{ info.monthlyTradingQuota ? `${info.monthlyTradingQuota}万` : '0' }}
-
-
-
- 最近购买
-
- {{ transformDate(info.lastTradingDate) || '-' }}
-
-
-
-
-
- 法定代表人
-
- {{ info.legalPerson ? `${info.legalPerson}` : '' }}
-
-
-
- 注册资本
-
- {{ info.registeredCapital ? `${info.registeredCapital}万` : '0' }}
-
-
-
- 成立时间
-
- {{ transformDate(info.openingDate) || '-' }}
-
-
-
-
-
-
-
-
- {{ info.detailedAddress || '未知' }}
-
-
-
-
- {{ info.legalPerson + ' ' + transformPhoneNum(info.contactNumber) }}
-
-
-
+
+
+
+
+
+ {{ info.enterpriseName }}
+
+
+
+ {{ transformBusiness(info.business) }}
+
+
+
+ 月采购量
+
+ {{ info.monthlyPurchaseQuantity ? `${info.monthlyPurchaseQuantity}吨` : '0' }}
+
+
+
+ 月采购额
+
+ {{ info.monthlyTradingQuota ? `${info.monthlyTradingQuota}万` : '0' }}
+
+
+
+ 最近购买
+
+ {{ transformDate(info.lastTradingDate) || '-' }}
+
+
+
+
+
+ 法定代表人
+
+ {{ info.legalPerson ? `${info.legalPerson}` : '' }}
+
+
+
+ 注册资本
+
+ {{ info.registeredCapital ? `${info.registeredCapital}万` : '0' }}
+
+
+
+ 成立时间
+
+ {{ transformDate(info.openingDate) || '-' }}
+
+
+
+
+
+
+
+
+ {{ info.detailedAddress || '未知' }}
+
+
+
+
+ {{ info.legalPerson + ' ' + transformPhoneNum(info.contactNumber) }}
+
+
+
diff --git a/pages.json b/pages.json
index bfb6f97..d291b4a 100644
--- a/pages.json
+++ b/pages.json
@@ -38,15 +38,14 @@
{
"path": "pages/mall/index",
"style": {
- "navigationBarTitleText": "商城"
+ "navigationBarTitleText": "商城",
+ "navigationStyle": "custom"
}
},
{
"path": "pages/mine/index",
"style": {
- "navigationBarTitleText": "我的",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
+ "navigationBarTitleText": "我的"
}
},
{
@@ -57,14 +56,6 @@
"navigationStyle": "custom"
}
},
- {
- "path": "pages/enterprise-info/index",
- "style": {
- "navigationBarTitleText": "完善企业信息",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- },
{
"path": "pages/agreement/index",
"style": {
@@ -111,30 +102,17 @@
}
},
{
- "path": "components/not-logged/not-logged",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/trade/quotationList",
+ "path": "pages/my-offer/index",
"style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/trade/orderList",
- "style": {
- "navigationBarTitleText": "",
+ "navigationBarTitleText": "我的报价",
"enablePullDownRefresh": false
}
},
{
- "path": "pages/trade/my-offer",
+ "path": "pages/submit-quotation/index",
"style": {
- "navigationBarTitleText": "我的报价",
+ "navigationBarTitleText": "提交报价",
+ "navigationStyle": "custom",
"enablePullDownRefresh": false
}
}
diff --git a/pages/client-detail/base-paper-deals.vue b/pages/client-detail/base-paper-deals.vue
index d85bbbd..1088020 100644
--- a/pages/client-detail/base-paper-deals.vue
+++ b/pages/client-detail/base-paper-deals.vue
@@ -1,22 +1,204 @@
-
- 原纸交易
+
+
+
+
+
+ 交易金额
+
+
+ 458 682.00
+
+
+
+
+ 总交易量(吨)
+
+
+ 125.7752
+
+
+
+
+
+
+
+
+
+
+ 金蝶蓝白卡
+
+
+ 白卡纸/金蝶蓝/350g/787*1092/2200张
+
+
+
+
+
+
+
+ 丽盈白卡
+
+
+ 白卡纸/丽盈/350g/787*1092/2200张
+
+
+
+
+
+ 2021-12-23 12:30:45
+
+
+ 更多详情
+
+
+
+
+
+
-
diff --git a/pages/client-detail/basic-information.vue b/pages/client-detail/basic-information.vue
index db9e96e..8159c24 100644
--- a/pages/client-detail/basic-information.vue
+++ b/pages/client-detail/basic-information.vue
@@ -79,21 +79,21 @@
- 产房面积:
- {{info.plantArea}}m²
+ 产房面积:
+ {{info.plantArea}}m²
- 年营业额:
- {{info.annualTurnover}}万
+ 年营业额:
+ {{info.annualTurnover}}万
- 产房照片:
+ 产房照片:
点击查看
- 租赁合同:
+ 租赁合同:
点击查看
@@ -264,10 +264,10 @@ export default {
this.seemoreFlag = !this.seemoreFlag
},
transformDate(date) {
- if (date) {
- return `${date[0]}/${date[1]}/${date[2]}`
- }
- return ''
+ if (date) {
+ return date.split('-').join('/')
+ }
+ return ''
},
previewImg(index, list) {
uni.previewImage({
@@ -451,15 +451,29 @@ export default {
align-items: center;
margin-bottom: 16rpx;
}
+ .title {
+ flex: 0 0 150rpx;
+ font-size: 28rpx;
+ color: #888888;
+ letter-spacing: 0;
+ font-weight: 400;
+ margin-right: 8rpx;
+ }
+ .value {
+ font-size: 28rpx;
+ color: #333333;
+ letter-spacing: 0;
+ font-weight: 400;
+ }
.left {
display: flex;
flex-direction: row;
- justify-content: space-between;
+ width: 60%;
}
.right {
display: flex;
flex-direction: row;
- justify-content: space-between;
+ width: 40%;
}
}
diff --git a/pages/client-detail/equipment-information.vue b/pages/client-detail/equipment-information.vue
index f36a8bd..e5e9e2b 100644
--- a/pages/client-detail/equipment-information.vue
+++ b/pages/client-detail/equipment-information.vue
@@ -1,22 +1,247 @@
-
- 设备信息
+
+
+
+
+
+
+
+ 8900件
+
+
+ 设备产能
+
+
+
+ 89 h
+
+
+ 工作时长
+
+
+
+ 86%
+
+
+ 开机率
+
+
+
+
+
+
+ 设备图片:
+ 点击查看
+
+
+ 购买年份:
+ 2019年
+
+
+
+
+ 购买金额:
+ 2000万
+
+
+ 设备产能:
+ 2000个/天
+
+
+
+
+ 成色:
+ 9成新
+
+
+ 设备类型:
+ 糊盒机
+
+
+
+
+ 最大输纸 长度:
+ 2000mm
+
+
+ 最大输纸 宽度:
+ 2000mm
+
+
+
+
+ 最大输纸 厚度:
+ 2000mm
+
+
+ 咬口:
+ 2000mm
+
+
+
+
+
+
+ 设备详情
+
+
+
+
+
+
-
diff --git a/pages/client-detail/index.vue b/pages/client-detail/index.vue
index ecb4a44..cd4c837 100644
--- a/pages/client-detail/index.vue
+++ b/pages/client-detail/index.vue
@@ -7,7 +7,7 @@
-
+
@@ -78,5 +78,13 @@ export default {
line-height: 40rpx;
font-weight: 500;
}
+ .segmented {
+ height: 88rpx;
+ border-bottom: 2rpx solid #ECECEC;
+ font-size: 28rpx;
+ color: #333333;
+ text-align: center;
+ font-weight: 400;
+ }
}
diff --git a/pages/client-detail/lv-select.vue b/pages/client-detail/lv-select.vue
new file mode 100644
index 0000000..5f5bbf0
--- /dev/null
+++ b/pages/client-detail/lv-select.vue
@@ -0,0 +1,291 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 加载中···
+
+
+ {{emptyTips}}
+
+
+ {{item[showValue]}}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/client-detail/no-data.vue b/pages/client-detail/no-data.vue
new file mode 100644
index 0000000..b700409
--- /dev/null
+++ b/pages/client-detail/no-data.vue
@@ -0,0 +1,49 @@
+
+
+
+
+ {{ title }}
+
+
+
+
+
+
+
diff --git a/pages/client-detail/waste-paper-trading.vue b/pages/client-detail/waste-paper-trading.vue
index 5b96d08..e9529e9 100644
--- a/pages/client-detail/waste-paper-trading.vue
+++ b/pages/client-detail/waste-paper-trading.vue
@@ -1,11 +1,13 @@
- 废纸交易
+
-
diff --git a/pages/trade/my-offer.vue b/pages/my-offer/index.vue
similarity index 81%
rename from pages/trade/my-offer.vue
rename to pages/my-offer/index.vue
index fd75c55..34ae1cb 100644
--- a/pages/trade/my-offer.vue
+++ b/pages/my-offer/index.vue
@@ -1,6 +1,6 @@
-
+
@@ -8,8 +8,11 @@
{{ items.orderStatus }}
-
-
+
+
+
+
+
{{ item.brandName }}{{ item.categoryName }}
@@ -31,6 +34,7 @@
diff --git a/pages/trade/index.vue b/pages/trade/index.vue
index 5555e0a..f0288c8 100644
--- a/pages/trade/index.vue
+++ b/pages/trade/index.vue
@@ -36,9 +36,8 @@ export default {
key: '',
mainKey: '1',
current: '0',
- controlCurrent: 0,
items: ['报价', '订单'],
- controlItems: ['全部', '待确认', '待发货', '已完成'],
+
}
},
mounted() {
@@ -60,10 +59,7 @@ export default {
// this.getTradingQurty()
// }
},
- //分段器点击事件
- onClickItem(value) {
- console.log(value)
- }
+
}
}
@@ -72,11 +68,11 @@ export default {
.trade-index {
.top-bar {
background-color: rgb(255, 255, 255);
- border-bottom-width: 1px;
+ border-bottom-width: 2rpx;
border-bottom-style: solid;
border-bottom-color: #eee;
z-index: 998;
- height: 44px;
+ height: 88rpx;
}
.title {
font-size: 40rpx;
@@ -85,7 +81,7 @@ export default {
font-weight: 500;
}
.text-view {
- padding: 10px;
+ padding: 20rpx;
}
.bar-contant {
display: flex;
@@ -96,7 +92,7 @@ export default {
color: #000000;
letter-spacing: 0;
font-weight: 550;
- border-bottom: 2px solid #007aff;
+ border-bottom: 4rpx solid #007aff;
}
.oncheck-title {
font-family: PingFangSC-Regular;
@@ -105,9 +101,8 @@ export default {
font-weight: 550;
}
.check-control {
- line-height: 35px;
-
- width: 40px;
+ line-height: 70rpx;
+ // width: 40px;
text-align: center;
}
.title-left {
diff --git a/pages/trade/orderList.vue b/pages/trade/orderList.vue
index edd927e..4ce60ac 100644
--- a/pages/trade/orderList.vue
+++ b/pages/trade/orderList.vue
@@ -1,15 +1,18 @@
-
+
-
+
广州民族印刷有限公司
{{ items.orderStatus }}
-
-
+
+
+
+
+
{{ item.brandName }}{{ item.categoryName }}
@@ -20,8 +23,8 @@
- 交货时间:
- {{ items.deliveryDay }}天
+ 交货时间:
+ {{ items.deliveryDay }}天
¥{{ items.totalOfferPrice }}
@@ -53,6 +56,8 @@ export default {
pageSize: 10
},
orderData: [],
+ controlCurrent: 0,
+ controlItems: ['全部', '待确认', '待发货', '已完成'],
orderOption: {
size: 10,
auto: true,
@@ -128,6 +133,10 @@ export default {
.catch(() => {
this.$refs.orderRef.refreshFail()
})
+ },
+ //分段器点击事件
+ onClickItem(value) {
+ console.log(value)
}
}
}
@@ -136,13 +145,16 @@ export default {
diff --git a/pages/trade/quotationList.vue b/pages/trade/quotationList.vue
index 1a795d5..2a91293 100644
--- a/pages/trade/quotationList.vue
+++ b/pages/trade/quotationList.vue
@@ -46,7 +46,7 @@
-
+
我的报价
@@ -155,12 +155,16 @@ export default {
})
},
// 报价按钮事件
- offerClick(){},
+ offerClick(){
+ uni.navigateTo({
+ url: '../submit-quotation/index'
+ });
+ },
// 我的报价页面跳转事件
nativeTo(){
console.log(11)
uni.navigateTo({
- url: 'my-offer'
+ url: '../my-offer/index'
});
},
}
@@ -169,14 +173,15 @@ export default {
diff --git a/static/imgs/client-detail/arrow-right-icon.png b/static/imgs/client-detail/arrow-right-icon.png
new file mode 100644
index 0000000..08fce70
Binary files /dev/null and b/static/imgs/client-detail/arrow-right-icon.png differ
diff --git a/static/imgs/client-detail/no-data-icon.png b/static/imgs/client-detail/no-data-icon.png
new file mode 100644
index 0000000..e13ea10
Binary files /dev/null and b/static/imgs/client-detail/no-data-icon.png differ
diff --git a/static/imgs/client-detail/yzjy-icon.png b/static/imgs/client-detail/yzjy-icon.png
new file mode 100644
index 0000000..47cf92d
Binary files /dev/null and b/static/imgs/client-detail/yzjy-icon.png differ
diff --git a/static/imgs/mall/cut-icon.png b/static/imgs/mall/cut-icon.png
new file mode 100644
index 0000000..7b943e4
Binary files /dev/null and b/static/imgs/mall/cut-icon.png differ
diff --git a/static/imgs/mall/grounding-icon.png b/static/imgs/mall/grounding-icon.png
new file mode 100644
index 0000000..6aaa21e
Binary files /dev/null and b/static/imgs/mall/grounding-icon.png differ
diff --git a/static/imgs/mall/sold-out-icon.png b/static/imgs/mall/sold-out-icon.png
new file mode 100644
index 0000000..fbb9b7c
Binary files /dev/null and b/static/imgs/mall/sold-out-icon.png differ
diff --git a/static/imgs/mall/zsc-bg-icon.png b/static/imgs/mall/zsc-bg-icon.png
new file mode 100644
index 0000000..d94e257
Binary files /dev/null and b/static/imgs/mall/zsc-bg-icon.png differ
diff --git a/static/imgs/trade/myPrice.png b/static/imgs/trade/myPrice.png
new file mode 100644
index 0000000..81004a7
Binary files /dev/null and b/static/imgs/trade/myPrice.png differ
diff --git a/uni_modules/uni-number-box/changelog.md b/uni_modules/uni-number-box/changelog.md
new file mode 100644
index 0000000..5925c32
--- /dev/null
+++ b/uni_modules/uni-number-box/changelog.md
@@ -0,0 +1,25 @@
+## 1.2.1(2021-11-22)
+- 修复 vue3中某些scss变量无法找到的问题
+## 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-number-box](https://uniapp.dcloud.io/component/uniui/uni-number-box)
+## 1.1.2(2021-11-09)
+- 新增 提供组件设计资源,组件样式调整
+## 1.1.1(2021-07-30)
+- 优化 vue3下事件警告的问题
+## 1.1.0(2021-07-13)
+- 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
+## 1.0.7(2021-05-12)
+- 新增 组件示例地址
+## 1.0.6(2021-04-20)
+- 修复 uni-number-box 浮点数运算不精确的 bug
+- 修复 uni-number-box change 事件触发不正确的 bug
+- 新增 uni-number-box v-model 双向绑定
+## 1.0.5(2021-02-05)
+- 调整为uni_modules目录规范
+
+## 1.0.7(2021-02-05)
+- 调整为uni_modules目录规范
+- 新增 支持 v-model
+- 新增 支持 focus、blur 事件
+- 新增 支持 PC 端
diff --git a/uni_modules/uni-number-box/components/uni-number-box/uni-number-box.vue b/uni_modules/uni-number-box/components/uni-number-box/uni-number-box.vue
new file mode 100644
index 0000000..8d255fb
--- /dev/null
+++ b/uni_modules/uni-number-box/components/uni-number-box/uni-number-box.vue
@@ -0,0 +1,220 @@
+
+
+
+ -
+
+
+
+ +
+
+
+
+
+
diff --git a/uni_modules/uni-number-box/package.json b/uni_modules/uni-number-box/package.json
new file mode 100644
index 0000000..ad82336
--- /dev/null
+++ b/uni_modules/uni-number-box/package.json
@@ -0,0 +1,85 @@
+{
+ "id": "uni-number-box",
+ "displayName": "uni-number-box 数字输入框",
+ "version": "1.2.1",
+ "description": "NumberBox 带加减按钮的数字输入框组件,用户可以控制每次点击增加的数值,支持小数。",
+ "keywords": [
+ "uni-ui",
+ "uniui",
+ "数字输入框"
+],
+ "repository": "https://github.com/dcloudio/uni-ui",
+ "engines": {
+ "HBuilderX": ""
+ },
+ "directories": {
+ "example": "../../temps/example_temps"
+ },
+ "dcloudext": {
+ "category": [
+ "前端组件",
+ "通用组件"
+ ],
+ "sale": {
+ "regular": {
+ "price": "0.00"
+ },
+ "sourcecode": {
+ "price": "0.00"
+ }
+ },
+ "contact": {
+ "qq": ""
+ },
+ "declaration": {
+ "ads": "无",
+ "data": "无",
+ "permissions": "无"
+ },
+ "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui"
+ },
+ "uni_modules": {
+ "dependencies": ["uni-scss"],
+ "encrypt": [],
+ "platforms": {
+ "cloud": {
+ "tcb": "y",
+ "aliyun": "y"
+ },
+ "client": {
+ "App": {
+ "app-vue": "y",
+ "app-nvue": "y"
+ },
+ "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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/uni_modules/uni-number-box/readme.md b/uni_modules/uni-number-box/readme.md
new file mode 100644
index 0000000..affc56f
--- /dev/null
+++ b/uni_modules/uni-number-box/readme.md
@@ -0,0 +1,13 @@
+
+
+## NumberBox 数字输入框
+> **组件名:uni-number-box**
+> 代码块: `uNumberBox`
+
+
+带加减按钮的数字输入框。
+
+### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-number-box)
+#### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
+
+