| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <view class="">
- </view>
- </template>
- <script>
- import md5Libs from "uview-ui/libs/function/md5";
- import crypto from "../../utils/crypto.js"
- export default {
- name: '',
- data() {
- return {
- };
- },
- onLoad() {
- this.remove()
- },
- methods: {
- list() {
- this.$api.shop.list({
- id: '1453602587696812034'
- }).then(res => {
- console.log(res, "/******");
- })
- },
- submit() {
- let params = {
- "phone": "19124812874",
- "secret": "123456"
- }
- this.$api.test.submit(params).then(res => {
- console.log(res);
- })
- },
- remove() {
- this.$api.test.remove("1455095357455790082").then(res => {
- console.log(res);
- })
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- </style>
|