引入日历前
This commit is contained in:
@@ -44,11 +44,12 @@
|
||||
<u-modal :show="deleteShow" content="你确定要删除地址吗?" :showCancelButton="true" @cancel="deleteShow=false"
|
||||
@confirm="deleteSub">
|
||||
</u-modal>
|
||||
|
||||
<music-play :playData="playData"></music-play>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import musicPlay from '@/components/music.vue'
|
||||
import $http from '@/config/requestConfig.js';
|
||||
import {
|
||||
mapState
|
||||
@@ -56,6 +57,7 @@
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
playData:{},
|
||||
addreShow: false, //是否显示
|
||||
columns: [], //省份数据显示,三级联动需要三维数组,展示初始数据
|
||||
columnData: [], //市数据
|
||||
@@ -137,6 +139,9 @@
|
||||
onReady() {
|
||||
this.$refs.addForm.setRules(this.rules)
|
||||
},
|
||||
components:{
|
||||
musicPlay
|
||||
},
|
||||
methods: {
|
||||
// 三级联动
|
||||
initDataPicker() {
|
||||
|
||||
@@ -35,16 +35,19 @@
|
||||
+ 添加收货地址
|
||||
</view>
|
||||
</view>
|
||||
<music-play :playData="playData"></music-play>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import musicPlay from '@/components/music.vue'
|
||||
import {
|
||||
mapState
|
||||
} from 'vuex';
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
playData:{},
|
||||
addressList: []
|
||||
}
|
||||
},
|
||||
@@ -54,6 +57,9 @@
|
||||
computed: {
|
||||
...mapState(['userInfo']),
|
||||
},
|
||||
components:{
|
||||
musicPlay
|
||||
},
|
||||
methods: {
|
||||
getUserAddress() {
|
||||
this.$http
|
||||
|
||||
@@ -20,10 +20,12 @@
|
||||
</view>
|
||||
</view>
|
||||
<view class="registeredBut bindAccountBut"><button @click="onSubmit">立即绑定</button></view>
|
||||
<music-play :playData="playData"></music-play>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import musicPlay from '@/components/music.vue'
|
||||
var clear;
|
||||
import { mapState, mapMutations } from 'vuex';
|
||||
import socket from '@/config/socket';
|
||||
@@ -33,6 +35,7 @@ import {publicShare} from '@/config/utils';
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
playData:{},
|
||||
logoUrl: '',
|
||||
readonly: false,
|
||||
codeText: '获取验证码',
|
||||
@@ -49,6 +52,9 @@ export default {
|
||||
},
|
||||
//页面显示
|
||||
onShow() {},
|
||||
components:{
|
||||
musicPlay
|
||||
},
|
||||
//方法
|
||||
methods: {
|
||||
...mapMutations(['setUserInfo']),
|
||||
|
||||
@@ -22,14 +22,17 @@
|
||||
<input type="password" v-model="confirmPassword" placeholder="请确认密码" />
|
||||
</view>
|
||||
<view class="btn_box"><button @click="onSubmit">提 交</button></view>
|
||||
<music-play :playData="playData"></music-play>
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
import musicPlay from '@/components/music.vue'
|
||||
import md5 from '@/plugins/md5';
|
||||
var clear;
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
playData:{},
|
||||
//手机号账号
|
||||
phone: '',
|
||||
// 密码
|
||||
@@ -48,6 +51,10 @@ export default {
|
||||
onLoad(e) {},
|
||||
//页面显示
|
||||
onShow() {},
|
||||
components:{
|
||||
musicPlay
|
||||
|
||||
},
|
||||
//方法
|
||||
methods: {
|
||||
//获取验证码
|
||||
|
||||
@@ -14,10 +14,12 @@
|
||||
<button @click="getCode">{{codeText}}</button>
|
||||
</view>
|
||||
<view class="btn_box"><button @click="onSubmit">提 交</button></view>
|
||||
<music-play :playData="playData"></music-play>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import musicPlay from '@/components/music.vue'
|
||||
import md5 from '@/plugins/md5';
|
||||
var clear;
|
||||
import store from '@/store';
|
||||
@@ -29,6 +31,7 @@
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
playData:{},
|
||||
//手机号账号
|
||||
phone: '',
|
||||
// 密码
|
||||
@@ -56,6 +59,9 @@
|
||||
// 隐藏原生的tabbar
|
||||
uni.hideTabBar();
|
||||
},
|
||||
components:{
|
||||
musicPlay
|
||||
},
|
||||
//方法
|
||||
methods: {
|
||||
// 显示手机号
|
||||
|
||||
@@ -98,10 +98,12 @@
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<music-play :playData="playData"></music-play>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import musicPlay from '@/components/music.vue'
|
||||
import $http from '@/config/requestConfig.js';
|
||||
import {
|
||||
mapState
|
||||
@@ -109,6 +111,7 @@
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
playData:{},
|
||||
tab_list: [{
|
||||
name: '疯币',
|
||||
}, {
|
||||
@@ -189,6 +192,9 @@
|
||||
this.getData();
|
||||
this.getCourpe();
|
||||
},
|
||||
components:{
|
||||
musicPlay
|
||||
},
|
||||
//方法
|
||||
methods: {
|
||||
// 获取
|
||||
|
||||
@@ -103,10 +103,12 @@
|
||||
<!-- <view class="btn_box">
|
||||
<button @click="chosePassword" class="active">登 录</button>
|
||||
</view> -->
|
||||
<music-play :playData="playData"></music-play>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import musicPlay from '@/components/music.vue'
|
||||
import $http from '@/config/requestConfig.js';
|
||||
import {
|
||||
mapState
|
||||
@@ -114,6 +116,7 @@
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
playData:{},
|
||||
userMes: {
|
||||
id: '',
|
||||
age: '',
|
||||
@@ -154,6 +157,9 @@
|
||||
uni.hideTabBar();
|
||||
this.getData();
|
||||
},
|
||||
components:{
|
||||
musicPlay
|
||||
},
|
||||
//方法
|
||||
methods: {
|
||||
// 获取
|
||||
|
||||
Reference in New Issue
Block a user