diff --git a/src/js/api.js b/src/js/api.js
index 85aa2c8..539285f 100644
--- a/src/js/api.js
+++ b/src/js/api.js
@@ -140,6 +140,7 @@ API['writeOff'] = {
dyPoiEnterVerifyOrder: `${ORIGIN}/admin/douyinPlatformProductOrder/enterVerifyOrder`, // 商家助手- 获取dypoi订单信息
dyPoiAssistantVerify: `${ORIGIN}/admin/douyinPlatformProductOrder/assistantVerify`, // 商家助手-核销dypoi订单
+ dyPoiOrderList: `${ORIGIN}/admin/douyinPlatformProductOrder/list`, // 商家助手-核销dypoi订单
diff --git a/src/pages.json b/src/pages.json
index ba403fa..80a1f10 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -224,6 +224,12 @@
}
},
{
+ "path": "pages/write_off/douyin/poi_list",
+ "style": {
+ "navigationBarTitleText": "核销订单"
+ }
+ },
+ {
"path": "pages/employee/review_list/review_list",
"style": {
"navigationBarTitleText": "员工管理"
diff --git a/src/pages/write_off/all_components/list_item.vue b/src/pages/write_off/all_components/list_item.vue
new file mode 100644
index 0000000..e2e7cc6
--- /dev/null
+++ b/src/pages/write_off/all_components/list_item.vue
@@ -0,0 +1,96 @@
+
+
+
+
+
+ 订单编号:{{ orderNo || '-' }}
+
+
+ 用户信息:{{ userPhone || '-' }}
+
+
+ 券码:{{ verifyCode || '-' }}
+
+
+ 验证方式:{{ verifyMethod || '-' }}
+
+
+ 核销时间:{{ verifyTime || '-'}}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/write_off/all_components/period_picker.vue b/src/pages/write_off/all_components/period_picker.vue
new file mode 100644
index 0000000..59b511f
--- /dev/null
+++ b/src/pages/write_off/all_components/period_picker.vue
@@ -0,0 +1,67 @@
+
+
+ 核销日期
+
+
+
+
+
+
+
+
+ 至
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/write_off/all_components/stadium_picker.vue b/src/pages/write_off/all_components/stadium_picker.vue
new file mode 100644
index 0000000..72760b6
--- /dev/null
+++ b/src/pages/write_off/all_components/stadium_picker.vue
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/write_off/douyin/poi_list.vue b/src/pages/write_off/douyin/poi_list.vue
new file mode 100644
index 0000000..2ee4882
--- /dev/null
+++ b/src/pages/write_off/douyin/poi_list.vue
@@ -0,0 +1,175 @@
+
+
+
+
+
+
+
+
+
+ 核销团购券
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/write_off/menu/menu.vue b/src/pages/write_off/menu/menu.vue
index 93471c5..e84cae4 100644
--- a/src/pages/write_off/menu/menu.vue
+++ b/src/pages/write_off/menu/menu.vue
@@ -27,23 +27,28 @@
- 现场散客人数
+ 抖音团购核销
-
-
- 现场散客人数查询
+
+
+ 抖音团购核销
+
+
+
+ 抖音团购核销记录
- 抖音团购核销
+ 现场散客人数
-
-
- 抖音团购核销
+
+
+ 现场散客人数查询
+
@@ -65,7 +70,9 @@ export default {
toMallLs(){
util.routeTo(`/pages/write_off/mall/list/list`, 'nT');
},
-
+ toDypoiOrderLs(){
+ util.routeTo(`/pages/write_off/douyin/poi_list`, 'nT');
+ }
}
}
diff --git a/src/pages/write_off/operate/operate.vue b/src/pages/write_off/operate/operate.vue
index be73645..a00527f 100644
--- a/src/pages/write_off/operate/operate.vue
+++ b/src/pages/write_off/operate/operate.vue
@@ -42,7 +42,6 @@ export default {
onLoad(options){
this.writeOffType = options.type || '';
util.$_once(WRITE_OFF_STORE_NAME, data => { // 定位门店
- console.warn(data);
if(!data)return this.initStore();
this.curStadium = data.curStadium;
this.stadiumList = data.stadiumList;
diff --git a/src/uni.scss b/src/uni.scss
index 845142d..7745bde 100644
--- a/src/uni.scss
+++ b/src/uni.scss
@@ -73,4 +73,36 @@ $uni-font-size-title:40rpx;
$uni-color-subtitle: #555555; // 二级标题颜色
$uni-font-size-subtitle:36rpx;
$uni-color-paragraph: #3F536E; // 文章段落颜色
-$uni-font-size-paragraph:30rpx;
\ No newline at end of file
+$uni-font-size-paragraph:30rpx;
+
+$mColor: #009874;
+
+/* 水平flex */
+@mixin ctf($justtify: flex-start){
+ display: flex;
+ align-items: center;
+ justify-content: $justtify;
+}
+
+/* 文字样式 */
+@mixin flcw($size: 28upx, $height: 40upx, $color: #333, $weight: 400){
+ font-size: $size;
+ line-height: $height;
+ color: $color;
+ font-weight: $weight;
+}
+
+@mixin tHide($line: 1) {
+ display: -webkit-box;
+ word-break: break-all;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ -webkit-box-orient: vertical;
+ -webkit-line-clamp:$line;
+}
+
+@mixin isPd($height: 0){
+ padding-bottom: $height;
+ padding-bottom: calc( $height + constant(safe-area-inset-bottom)); /* 兼容 iOS < 11.2 */
+ padding-bottom: calc( $height + env(safe-area-inset-bottom)); /* 兼容 iOS >= 11.2 */
+}
\ No newline at end of file