Commit aa57310e authored by FE-安焕焕's avatar FE-安焕焕 👣

订单悬浮标

parent fe810c4a
...@@ -1128,14 +1128,14 @@ ...@@ -1128,14 +1128,14 @@
"dev": true "dev": true
}, },
"@popperjs/core": { "@popperjs/core": {
"version": "2.9.2", "version": "2.9.3",
"resolved": "http://npmprivate.quantgroups.com/@popperjs%2fcore/-/core-2.9.2.tgz", "resolved": "http://npmprivate.quantgroups.com/@popperjs%2fcore/-/core-2.9.3.tgz",
"integrity": "sha512-VZMYa7+fXHdwIq1TDhSXoVmSPEGM/aa+6Aiq3nVVJ9bXr24zScr+NlKFKC3iPljA7ho/GAZr+d2jOf5GIRC30Q==" "integrity": "sha512-xDu17cEfh7Kid/d95kB6tZsLOmSWKCZKtprnhVepjsSaCij+lM3mItSJDuuHDMbCWTh8Ejmebwb+KONcCJ0eXQ=="
}, },
"@qg/cherry-ui": { "@qg/cherry-ui": {
"version": "2.21.9", "version": "2.22.0",
"resolved": "http://npmprivate.quantgroups.com/@qg%2fcherry-ui/-/cherry-ui-2.21.9.tgz", "resolved": "http://npmprivate.quantgroups.com/@qg%2fcherry-ui/-/cherry-ui-2.22.0.tgz",
"integrity": "sha512-1I+BmuVl4fAcVfFXurxi/02GdEnP8zNpAx+Wgy8GkHtGLbd8yxJzqV5CaGkMR42r2iG5nio10NofM13/E+NEzQ==", "integrity": "sha512-v4hCYTiW/gPPaqvQ3JFSpgaS/BBOR/LQewLyAGv424UmiFi55Jc/W52rEgQdycVjEOdlVpRJnrWCSYcsEX1Ogw==",
"requires": { "requires": {
"@popperjs/core": "^2.5.4", "@popperjs/core": "^2.5.4",
"vue-lazyload": "^1.3.3", "vue-lazyload": "^1.3.3",
...@@ -9019,9 +9019,9 @@ ...@@ -9019,9 +9019,9 @@
} }
}, },
"parse-headers": { "parse-headers": {
"version": "2.0.3", "version": "2.0.4",
"resolved": "http://npmprivate.quantgroups.com/parse-headers/-/parse-headers-2.0.3.tgz", "resolved": "http://npmprivate.quantgroups.com/parse-headers/-/parse-headers-2.0.4.tgz",
"integrity": "sha512-QhhZ+DCCit2Coi2vmAKbq5RGTRcQUOE2+REgv8vdyu7MnYx2eZztegqtTx99TZ86GTIwqiy3+4nQTWZ2tgmdCA==" "integrity": "sha512-psZ9iZoCNFLrgRjZ1d8mn0h9WRqJwFxM9q3x7iUjN/YT2OksthDJ5TiPCu2F38kS4zutqfW+YdVVkBZZx3/1aw=="
}, },
"parse-json": { "parse-json": {
"version": "5.0.0", "version": "5.0.0",
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
}, },
"dependencies": { "dependencies": {
"@better-scroll/core": "^2.0.0-beta.6", "@better-scroll/core": "^2.0.0-beta.6",
"@qg/cherry-ui": "^2.21.9", "@qg/cherry-ui": "^2.22.0",
"@qg/js-bridge": "^1.1.9", "@qg/js-bridge": "^1.1.9",
"@qg/qg-scroll": "^1.4.2", "@qg/qg-scroll": "^1.4.2",
"@qg/ui-request": "0.0.20", "@qg/ui-request": "0.0.20",
......
...@@ -33,7 +33,8 @@ import { ...@@ -33,7 +33,8 @@ import {
AuthcodeField, AuthcodeField,
CouponList, CouponList,
Swipe, Swipe,
SwipeItem SwipeItem,
BackTop
} from '@qg/cherry-ui'; } from '@qg/cherry-ui';
import DialogFn from '@qg/cherry-ui/src/dialog/func'; import DialogFn from '@qg/cherry-ui/src/dialog/func';
// import "@qg/cherry-ui/dist/cherry.css"; // import "@qg/cherry-ui/dist/cherry.css";
...@@ -70,6 +71,7 @@ Vue.use(AuthcodeField); ...@@ -70,6 +71,7 @@ Vue.use(AuthcodeField);
Vue.use(CouponList); Vue.use(CouponList);
Vue.use(Swipe); Vue.use(Swipe);
Vue.use(SwipeItem); Vue.use(SwipeItem);
Vue.use(BackTop);
// const _proto = Vue.prototype; // const _proto = Vue.prototype;
// const proto = Object.create(_proto); // const proto = Object.create(_proto);
......
...@@ -103,7 +103,6 @@ import { goUrlExtends } from './extends'; ...@@ -103,7 +103,6 @@ import { goUrlExtends } from './extends';
import cookies from '@/service/cookieStorage.service'; import cookies from '@/service/cookieStorage.service';
import { import {
codeArr, codeArr,
payTypeE,
CREDIT_PAY, CREDIT_PAY,
PAY_SUCCESS, PAY_SUCCESS,
creditStatus, creditStatus,
......
...@@ -30,6 +30,11 @@ ...@@ -30,6 +30,11 @@
立即充值 立即充值
</cr-button> </cr-button>
</div> </div>
<cr-back-top
:list="[{ icon: 'orders-o', txt: '订单' }]"
:show-back-top="false"
@click="goOrderList"
/>
<!-- v-show="!hideFixedBottom" --> <!-- v-show="!hideFixedBottom" -->
</div> </div>
</template> </template>
...@@ -190,7 +195,13 @@ export default { ...@@ -190,7 +195,13 @@ export default {
return; return;
} }
res?.orderNo && this.$router.push({ path: '/pay', query: { orderNo: res.orderNo } }); res?.orderNo && this.$router.push({ path: '/pay', query: { orderNo: res.orderNo } });
}, 1000) }, 1000),
goOrderList() {
this.$track.registeredEvents('h5_RechargeCenterPageOrderCustomerServiceClick', {
buttons_name: '充值订单'
});
this.$router.push({ name: 'orderList' });
}
} }
}; };
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment