Merge branch 'master' of http://192.168.1.26:3000/dianliang/dl_uniapp
This commit is contained in:
commit
5c9d8b2e4c
@ -103,7 +103,7 @@
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
imageUrl: config.baseUrl
|
||||
imageUrl: ''
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
@ -219,7 +219,7 @@
|
||||
data() {
|
||||
return {
|
||||
userId:"",
|
||||
uploadUrl: config.baseUrl,
|
||||
uploadUrl: '',
|
||||
globalConfig: getApp().globalData.config,
|
||||
//当前选择的认证身份
|
||||
identityType: "",
|
||||
|
@ -46,6 +46,22 @@
|
||||
<input class="uni-input" v-model="dataObj.tel" type="tel" placeholder="请输入" />
|
||||
</view>
|
||||
</view>
|
||||
<view class="item-field">
|
||||
<view class="item-lable is-required">
|
||||
<image src="@/static/mine/required.png" mode="aspectFit"></image>主页链接
|
||||
</view>
|
||||
<view class="item-value">
|
||||
<input class="uni-input" v-model="dataObj.indexUrl" type="tel" placeholder="请输入" />
|
||||
</view>
|
||||
</view>
|
||||
<view class="item-field">
|
||||
<view class="item-lable is-required">
|
||||
<image src="@/static/mine/required.png" mode="aspectFit"></image>微信号
|
||||
</view>
|
||||
<view class="item-value">
|
||||
<input class="uni-input" v-model="dataObj.wxNum" type="tel" placeholder="请输入" />
|
||||
</view>
|
||||
</view>
|
||||
<view class="item-field">
|
||||
<view class="item-lable is-required">
|
||||
<image src="@/static/mine/required.png" mode="aspectFit"></image>收货地址
|
||||
@ -113,7 +129,7 @@
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
uploadUrl: config.baseUrl + '/common/upload',
|
||||
uploadUrl: '' + '/common/upload',
|
||||
headers: {},
|
||||
//所有可选的平台
|
||||
range: [],
|
||||
@ -133,6 +149,8 @@
|
||||
addrId: null,
|
||||
price: null,
|
||||
content: null,
|
||||
wxNum: null,
|
||||
indexUrl: null,
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -251,10 +269,18 @@
|
||||
toast("粉丝数不能为空")
|
||||
return
|
||||
}
|
||||
if (this.dataObj.tel == null || this.dataObj.tel == "") {
|
||||
toast("电话不能为空")
|
||||
return
|
||||
}
|
||||
if (this.dataObj.indexUrl == null || this.dataObj.indexUrl == "") {
|
||||
toast("主页链接不能为空")
|
||||
return
|
||||
}
|
||||
if (this.dataObj.wxNum == null || this.dataObj.wxNum == "") {
|
||||
toast("微信号不能为空")
|
||||
return
|
||||
}
|
||||
if (this.dataObj.tel == null || this.dataObj.tel == "") {
|
||||
toast("电话不能为空")
|
||||
return
|
||||
}
|
||||
if (this.dataObj.addrId == null || this.dataObj.addrId == "") {
|
||||
toast("收货地址不能为空")
|
||||
return
|
||||
|
@ -72,7 +72,7 @@
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
imageUrl: config.baseUrl,
|
||||
imageUrl: '',
|
||||
member:{},
|
||||
dataList: ['', ''],
|
||||
queryParams: {
|
||||
|
@ -215,7 +215,7 @@
|
||||
userInfo: {
|
||||
coupon: 0
|
||||
},
|
||||
imageUrl: config.baseUrl,
|
||||
imageUrl: '',
|
||||
//公众号二维码
|
||||
wechat_img: constant.wechat_img,
|
||||
//客服二维码
|
||||
|
@ -46,7 +46,7 @@
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
uploadUrl: config.baseUrl,
|
||||
uploadUrl: '',
|
||||
dataList: [{
|
||||
nickName: "李林",
|
||||
createTime: "2024-02-10 12:22:44",
|
||||
|
@ -149,7 +149,7 @@
|
||||
this.fileImageUrl = this.valiFormData.avatar.split(',')
|
||||
this.fileImageUrl.map((item)=>{
|
||||
this.fileList.push({
|
||||
url:config.baseUrl + item
|
||||
url:item
|
||||
})
|
||||
})
|
||||
}
|
||||
|
@ -38,7 +38,7 @@
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
uploadUrl: config.baseUrl,
|
||||
uploadUrl: '',
|
||||
dataList: [{
|
||||
createTime: "2024-02-10 12:22:44",
|
||||
content: "我的意见我的意见我的意见我的意见我的意见我的意见我的意见我的意见我的意见我的意见我的意见我的意见我的意见",
|
||||
|
@ -60,7 +60,7 @@
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
uploadUrl: config.baseUrl,
|
||||
uploadUrl: '',
|
||||
dataObj: {
|
||||
content: ""
|
||||
},
|
||||
|
@ -47,7 +47,7 @@
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
uploadUrl: config.baseUrl,
|
||||
uploadUrl: '',
|
||||
dataObj: {
|
||||
content: ""
|
||||
},
|
||||
|
@ -286,7 +286,7 @@
|
||||
//所有可选的平台
|
||||
platFormRange: [],
|
||||
globalConfig: getApp().globalData.config,
|
||||
uploadUrl: config.baseUrl,
|
||||
uploadUrl: '',
|
||||
sizeType: ['compressed'],
|
||||
//产品图片数组
|
||||
fileList: [],
|
||||
|
Loading…
Reference in New Issue
Block a user