|
@@ -5,7 +5,8 @@
|
|
|
<view :style="{marginTop:navH}"></view>
|
|
|
<view class="home">
|
|
|
<view style="margin: 0 20rpx;">
|
|
|
- <uni-forms :value="formData" ref="form" validate-trigger="bind" err-show-type="undertext">
|
|
|
+ <uni-forms :value="formData" ref="form" :rules="rules" validate-trigger="bind"
|
|
|
+ err-show-type="undertext">
|
|
|
<view class="title">
|
|
|
<p>个人资料</p>
|
|
|
</view>
|
|
@@ -76,23 +77,30 @@
|
|
|
</view>
|
|
|
|
|
|
<uni-forms-item name="nickname" required label="昵称">
|
|
|
- <uni-easyinput type="text" v-model="formData.platform_nickname" placeholder="请填写账号昵称">
|
|
|
+ <uni-easyinput type="text" v-model="formData.platform_nickname" style="width:300rpx"
|
|
|
+ placeholder="请填写账号昵称">
|
|
|
</uni-easyinput>
|
|
|
</uni-forms-item>
|
|
|
<uni-forms-item name="numberfans" required label="粉丝数">
|
|
|
- <uni-easyinput type="number" v-model="fansCount" placeholder="请填写粉丝数量"
|
|
|
- v-if="fansCountInfo === 1" @input="onInput1">
|
|
|
- </uni-easyinput>
|
|
|
- <uni-easyinput type="digit" v-model="fansCount" placeholder="请填写粉丝数量" v-else
|
|
|
- @input="onInput">
|
|
|
- </uni-easyinput>
|
|
|
- <picker @change="bindPickerChange" :value="index3" :range="fansRange" range-key="label">
|
|
|
- <view>{{ fansLabel }}</view>
|
|
|
- </picker>
|
|
|
+ <view class="number-inupt">
|
|
|
+ <uni-easyinput type="number" v-model="fansCount" placeholder="请填写粉丝数量"
|
|
|
+ v-if="fansCountInfo === 1" style="width:300rpx" @input="onInput1">
|
|
|
+ </uni-easyinput>
|
|
|
+ <uni-easyinput type="digit" v-model="fansCount" style="width:300rpx" placeholder="请填写粉丝数量"
|
|
|
+ v-else @input="onInput">
|
|
|
+ </uni-easyinput>
|
|
|
+ <picker @change="bindPickerChange2" :value="index3" :range="fansRange" range-key="label"
|
|
|
+ style="z-index: 999;background-color: #fcdf41;padding: 0 10rpx;border-radius: 5rpx;">
|
|
|
+ <view>{{ fansLabel }}</view>
|
|
|
+ </picker>
|
|
|
+ </view>
|
|
|
+ <!-- <view style="font-size: 24rpx;padding-left: 10px;" @click="hasClicked = true" v-else>
|
|
|
+ <p>点选数字单位</p>
|
|
|
+ </view> -->
|
|
|
</uni-forms-item>
|
|
|
<uni-forms-item name="home_link" required label=" " label-width='10'>
|
|
|
- <uni-easyinput class="home-link" type="text" v-model="formData.home_page_url" style="width:650rpx"
|
|
|
- placeholder="请填写个人主页链接">
|
|
|
+ <uni-easyinput class="home-link" type="text" v-model="formData.home_page_url"
|
|
|
+ style="width:650rpx" placeholder="请填写个人主页链接">
|
|
|
</uni-easyinput>
|
|
|
</uni-forms-item>
|
|
|
<view style="margin-top: 40rpx;">
|
|
@@ -124,6 +132,7 @@
|
|
|
data() {
|
|
|
return {
|
|
|
navH: getApp().globalData.navHeight,
|
|
|
+ hasClicked: false,
|
|
|
address: [],
|
|
|
accountId: '',
|
|
|
platform: {
|
|
@@ -162,10 +171,10 @@
|
|
|
fans_count: '',
|
|
|
home_page_url: '',
|
|
|
},
|
|
|
-
|
|
|
+
|
|
|
index3: 0,
|
|
|
- fansLabel: "个",
|
|
|
- fansCount: 0,
|
|
|
+ fansLabel: "选择单位",
|
|
|
+ fansCount: null,
|
|
|
fansCountInfo: 1,
|
|
|
fansRange: [{
|
|
|
value: 1,
|
|
@@ -241,20 +250,94 @@
|
|
|
radius: "40rpx",
|
|
|
},
|
|
|
},
|
|
|
+ rules: {
|
|
|
+ home_img: {
|
|
|
+ rules: [{
|
|
|
+ required: true,
|
|
|
+ errorMessage: '请上传主页截图'
|
|
|
+ }, ]
|
|
|
+ },
|
|
|
+ home_link: {
|
|
|
+ rules: [{
|
|
|
+ required: true,
|
|
|
+ errorMessage: '请输入主页链接'
|
|
|
+ }, ]
|
|
|
+ },
|
|
|
+ numberfans: {
|
|
|
+ rules: [{
|
|
|
+ required: true,
|
|
|
+ errorMessage: '请输入粉丝量'
|
|
|
+ }, ]
|
|
|
+ },
|
|
|
+ nickname: {
|
|
|
+ rules: [{
|
|
|
+ required: true,
|
|
|
+ errorMessage: '请输入账号昵称'
|
|
|
+ }, ]
|
|
|
+ },
|
|
|
+ detailregion: {
|
|
|
+ rules: [{
|
|
|
+ required: true,
|
|
|
+ errorMessage: '请输入详细地址'
|
|
|
+ }, ]
|
|
|
+ },
|
|
|
+ fregion: {
|
|
|
+ rules: [{
|
|
|
+ required: true,
|
|
|
+ errorMessage: '请输入收货地址'
|
|
|
+ }, ]
|
|
|
+ },
|
|
|
+ tel: {
|
|
|
+ rules: [{
|
|
|
+ required: true,
|
|
|
+ errorMessage: '请输入联系方式'
|
|
|
+ }, ]
|
|
|
+ },
|
|
|
+ name: {
|
|
|
+ rules: [{
|
|
|
+ required: true,
|
|
|
+ errorMessage: '请输入姓名'
|
|
|
+ }, ]
|
|
|
+ },
|
|
|
+ phone: {
|
|
|
+ rules: [{
|
|
|
+ required: true,
|
|
|
+ errorMessage: '请输入联系方式'
|
|
|
+ }, ]
|
|
|
+ },
|
|
|
+ vregion: {
|
|
|
+ rules: [{
|
|
|
+ required: false,
|
|
|
+ errorMessage: '请输入探店地区'
|
|
|
+ }, ]
|
|
|
+ },
|
|
|
+ skintype: {
|
|
|
+ rules: [{
|
|
|
+ required: false,
|
|
|
+ errorMessage: '请输入国籍'
|
|
|
+ }, ]
|
|
|
+ },
|
|
|
+ age: {
|
|
|
+ rules: [{
|
|
|
+ required: false,
|
|
|
+ errorMessage: '请输入年龄'
|
|
|
+ }, ]
|
|
|
+ },
|
|
|
+
|
|
|
+ },
|
|
|
}
|
|
|
},
|
|
|
onReady() {},
|
|
|
- onShow() {
|
|
|
- this.initRegion()
|
|
|
- this.getDefaultAddress()
|
|
|
- this.getlist()
|
|
|
- },
|
|
|
+ onShow() {},
|
|
|
onLoad(options) {
|
|
|
this.platform.platform_id = parseInt(options.platform_id)
|
|
|
if (options.account_id) {
|
|
|
this.accountId = parseInt(options.account_id)
|
|
|
this.isBind = false
|
|
|
}
|
|
|
+ this.initRegion()
|
|
|
+ this.getDefaultAddress()
|
|
|
+ this.getlist()
|
|
|
},
|
|
|
methods: {
|
|
|
initRegion() {
|
|
@@ -284,7 +367,6 @@
|
|
|
getlist() {
|
|
|
this.$https.get('/youngee/c/g/get-info-tables')
|
|
|
.then(res => {
|
|
|
- console.log(res)
|
|
|
this.array = res.data.data.AgeBracket
|
|
|
|
|
|
let list = res.data.data.ThirdPlatform
|
|
@@ -302,7 +384,6 @@
|
|
|
getlist1() {
|
|
|
this.$https.get('/youngee/c/t/g/get-talent-info')
|
|
|
.then(res => {
|
|
|
- console.log(res)
|
|
|
if (res.data.data.talent_wx_number !== null) {
|
|
|
if (res.data.data.talent_age_bracket !== 0) {
|
|
|
for (var i = 0; i < this.array.length; i++) {
|
|
@@ -348,35 +429,33 @@
|
|
|
})
|
|
|
},
|
|
|
getaccount() {
|
|
|
- console.log(this.isBind)
|
|
|
if (!this.isBind) {
|
|
|
this.$https.get('/youngee/c/t/g/get-talent-account')
|
|
|
.then(res => {
|
|
|
- console.log(res)
|
|
|
if (res.data.code !== -3) {
|
|
|
this.account = res.data.data
|
|
|
for (var i = 0; i < this.account.length; i++) {
|
|
|
if (this.platform.platform_id == this.account[i].platform_id) {
|
|
|
+ this.hasClicked = true
|
|
|
this.formData.platform_nickname = this.account[i].platform_nickname
|
|
|
this.formData.fans_count = this.account[i].fans_count
|
|
|
this.formData.home_page_url = this.account[i].home_page_url
|
|
|
this.imageData.push(this.account[i].home_page_capture_url);
|
|
|
-
|
|
|
+
|
|
|
if (this.formData.fans_count >= 100000000) {
|
|
|
this.index3 = 2
|
|
|
- this.fansCountInfo = this.fansRange[this.index3].value;
|
|
|
- this.fansLabel = this.fansRange[this.index3].label;
|
|
|
+ this.fansCountInfo = this.fansRange[this.index3].value;
|
|
|
+ this.fansLabel = this.fansRange[this.index3].label;
|
|
|
this.fansCount = (this.formData.fans_count / 100000000).toFixed(1)
|
|
|
} else if (this.formData.fans_count >= 10000) {
|
|
|
- console.log(this.formData.fans_count)
|
|
|
this.index3 = 1
|
|
|
- this.fansCountInfo = this.fansRange[this.index3].value;
|
|
|
- this.fansLabel = this.fansRange[this.index3].label;
|
|
|
+ this.fansCountInfo = this.fansRange[this.index3].value;
|
|
|
+ this.fansLabel = this.fansRange[this.index3].label;
|
|
|
this.fansCount = (this.formData.fans_count / 10000).toFixed(1)
|
|
|
} else {
|
|
|
this.index3 = 0
|
|
|
- this.fansCountInfo = this.fansRange[this.index3].value;
|
|
|
- this.fansLabel = this.fansRange[this.index3].label;
|
|
|
+ this.fansCountInfo = this.fansRange[this.index3].value;
|
|
|
+ this.fansLabel = this.fansRange[this.index3].label;
|
|
|
this.fansCount = this.formData.fans_count
|
|
|
}
|
|
|
}
|
|
@@ -386,7 +465,6 @@
|
|
|
}
|
|
|
},
|
|
|
setDefault(e) {
|
|
|
- console.log(e.detail.value)
|
|
|
if (e.detail.value)
|
|
|
this.formData.setdefault = 1
|
|
|
else
|
|
@@ -399,8 +477,6 @@
|
|
|
this.formData.tel = res.data.data.phone_number
|
|
|
this.formData.detailregion = res.data.data.detail_addr
|
|
|
this.formData.fregion = res.data.data.region_code
|
|
|
- console.log("111")
|
|
|
- console.log(this.formData)
|
|
|
let a = res.data.data.region_code.toString().slice(0, 2)
|
|
|
let b = res.data.data.region_code.toString().slice(0, 4)
|
|
|
let c = 0
|
|
@@ -429,25 +505,21 @@
|
|
|
* @param {Object} form
|
|
|
*/
|
|
|
submitForm(form) {
|
|
|
- // console.log(this.formData);
|
|
|
- let fans
|
|
|
- this.formData.fans_count = this.fansCount * this.fansCountInfo
|
|
|
- if (parseInt(this.formData.fans_count) === 0) {
|
|
|
- uni.showToast({
|
|
|
- title: '请填写粉丝量数量',
|
|
|
- icon: 'none'
|
|
|
- })
|
|
|
- return
|
|
|
- }
|
|
|
this.$refs.form.validate().then(res => {
|
|
|
-
|
|
|
const iphoneReg1 = /^1[0-9]{10}$/
|
|
|
const urlReg =
|
|
|
/(ht|f)tp(s?)\:\/\/[0-9a-zA-Z]([-.\w]*[0-9a-zA-Z])*(:(0-9)*)*(\/?)([a-zA-Z0-9\-\.\?\,\'\/\\\+&%$#_]*)?/
|
|
|
|
|
|
if (!iphoneReg1.test(this.formData.phone)) {
|
|
|
uni.showToast({
|
|
|
- title: '电话号码格式不正确',
|
|
|
+ title: '请填写正确的联系方式',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if (!iphoneReg1.test(this.formData.tel)) {
|
|
|
+ uni.showToast({
|
|
|
+ title: '请填写正确的电话号码',
|
|
|
icon: 'none'
|
|
|
})
|
|
|
return
|
|
@@ -459,30 +531,45 @@
|
|
|
})
|
|
|
return
|
|
|
}
|
|
|
- uni.showToast({
|
|
|
- title: '提交成功'
|
|
|
- })
|
|
|
+ if (this.fansCount == null || this.fansCount * this.fansCountInfo <= 0 || this.fansLabel == "选择单位") {
|
|
|
+ uni.showToast({
|
|
|
+ title: '请填写粉丝量数量',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.formData.fans_count = this.fansCount * this.fansCountInfo
|
|
|
+ if (this.imageData.length === 0) {
|
|
|
+ uni.showToast({
|
|
|
+ title: '请上传主页截图',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
+ return
|
|
|
+ }
|
|
|
+ // uni.showToast({
|
|
|
+ // title: '提交成功'
|
|
|
+ // })
|
|
|
|
|
|
+ let nickName = uni.getStorageSync('nickName');
|
|
|
+ let avatarUrl = uni.getStorageSync('avatarUrl');
|
|
|
this.$https.post('/youngee/c/t/p/talent-info', {
|
|
|
talent_age_bracket: this.formData.age,
|
|
|
talent_nationality: this.formData.nationality,
|
|
|
visit_store_region: this.formData.visitStoreRegion,
|
|
|
talent_phone_number: this.formData.phone,
|
|
|
+ talent_wx_nickname: nickName,
|
|
|
+ avatar: avatarUrl,
|
|
|
})
|
|
|
- .then(res => {
|
|
|
- console.log(res)
|
|
|
- })
|
|
|
+ .then(res => {})
|
|
|
|
|
|
this.$https.post('/youngee/c/t/p/add-talent-address', {
|
|
|
region_code: this.formData.fregion,
|
|
|
detail_addr: this.formData.detailregion,
|
|
|
- phone_number: this.formData.phone,
|
|
|
+ phone_number: this.formData.tel,
|
|
|
receiver_name: this.formData.name,
|
|
|
default_tag: this.formData.setdefault
|
|
|
})
|
|
|
- .then(res => {
|
|
|
- console.log(res)
|
|
|
- })
|
|
|
+ .then(res => {})
|
|
|
|
|
|
this.formData.home_page_capture_url = this.imageData[0]
|
|
|
if (this.isBind) {
|
|
@@ -494,9 +581,7 @@
|
|
|
home_page_capture_url: this.formData
|
|
|
.home_page_capture_url,
|
|
|
})
|
|
|
- .then(res => {
|
|
|
- console.log(res)
|
|
|
- })
|
|
|
+ .then(res => {})
|
|
|
} else {
|
|
|
this.$https.post('/youngee/c/t/p/update-talent-account', {
|
|
|
account_id: this.accountId,
|
|
@@ -507,9 +592,7 @@
|
|
|
home_page_capture_url: this.formData
|
|
|
.home_page_capture_url,
|
|
|
})
|
|
|
- .then(res => {
|
|
|
- console.log(res)
|
|
|
- })
|
|
|
+ .then(res => {})
|
|
|
}
|
|
|
|
|
|
uni.showToast({
|
|
@@ -517,7 +600,6 @@
|
|
|
})
|
|
|
uni.navigateBack()
|
|
|
}).catch(err => {
|
|
|
- console.error('验证失败:', err)
|
|
|
uni.showToast({
|
|
|
title: '请填写所有信息',
|
|
|
icon: 'none'
|
|
@@ -525,7 +607,6 @@
|
|
|
})
|
|
|
},
|
|
|
ceshiChooseSuccess(tempFilePaths, e) { //选择图片返回
|
|
|
- console.log('ceshiChooseSuccess', tempFilePaths, e);
|
|
|
if (e == 0) {
|
|
|
this.store = 'talent_upload/' + this.guid() + '.png'
|
|
|
} else if (e == 1) {
|
|
@@ -536,11 +617,9 @@
|
|
|
***************/
|
|
|
this.imgUpload(tempFilePaths);
|
|
|
/*******************************/
|
|
|
- console.log("imgdata" + this.imageData)
|
|
|
},
|
|
|
imgUpload(tempFilePaths) {
|
|
|
let that = this
|
|
|
- console.log('imgUpload', tempFilePaths)
|
|
|
let config = {
|
|
|
AccessKeyId: 'IVW21DTGIIUBBAGXKK0Y', //AK
|
|
|
SecretKey: 'Y01nEQNcLOATMw7uJwrk3yOdQZ2fqLhSnXcOKVDE', //SK
|
|
@@ -576,28 +655,22 @@
|
|
|
},
|
|
|
|
|
|
success: function(res) {
|
|
|
- console.log(res.statusCode); //打印响应状态码
|
|
|
if (res.statusCode == '204') {
|
|
|
that.imageData.push(config.EndPoint + '/' + fileName);
|
|
|
- console.log('上传图片成功', res)
|
|
|
let obs_url = config.EndPoint + '/' + fileName; //用你自己的 bucket 名替换星号
|
|
|
- console.log(obs_url)
|
|
|
that.formData.home_img = obs_url
|
|
|
uni.showToast({
|
|
|
title: '上传成功',
|
|
|
icon: '成功'
|
|
|
});
|
|
|
} else {
|
|
|
- console.log('上传图片失败', res)
|
|
|
uni.showToast({
|
|
|
title: '上传失败',
|
|
|
icon: '失败'
|
|
|
});
|
|
|
}
|
|
|
},
|
|
|
- fail: function(e) {
|
|
|
- console.log(e);
|
|
|
- }
|
|
|
+ fail: function(e) {}
|
|
|
})
|
|
|
},
|
|
|
guid() {
|
|
@@ -613,18 +686,14 @@
|
|
|
this.index = e.detail.value;
|
|
|
this.formData.age = this.array[this.index].age_aid
|
|
|
this.Xage = this.array[this.index].age_bracket_discribe
|
|
|
- console.log(this.formData.age)
|
|
|
},
|
|
|
//国籍选择
|
|
|
bindPickerChange1: function(e) {
|
|
|
- console.log(e)
|
|
|
this.index1 = e.detail.value;
|
|
|
this.formData.nationality = this.array1[this.index1].id
|
|
|
- console.log(this.formData.nationality)
|
|
|
},
|
|
|
//城市选择
|
|
|
pickerChange(e) {
|
|
|
- // console.log(e, '1');
|
|
|
this.regionIndex = e.detail.value;
|
|
|
this.regionStr = this.region[0][this.regionIndex[0]].name + ' ' + this.region[1][this.regionIndex[
|
|
|
1]]
|
|
@@ -641,12 +710,6 @@
|
|
|
|
|
|
},
|
|
|
pickerColumnchange(e) {
|
|
|
- // console.log(e);
|
|
|
- // 第几列滑动
|
|
|
- // console.log(e.detail.column);
|
|
|
- // 第几列滑动的下标
|
|
|
- // console.log(e.detail.value)
|
|
|
-
|
|
|
if (e.detail.column === 0) {
|
|
|
// 声明城市数组
|
|
|
let cityArr = [];
|
|
@@ -688,7 +751,6 @@
|
|
|
},
|
|
|
//城市选择
|
|
|
pickerChange(e) {
|
|
|
- // console.log(e, '1');
|
|
|
this.regionIndex = e.detail.value;
|
|
|
this.regionStr = this.region[0][this.regionIndex[0]].name + ' ' + this.region[1][this.regionIndex[
|
|
|
1]]
|
|
@@ -705,12 +767,6 @@
|
|
|
|
|
|
},
|
|
|
pickerColumnchange(e) {
|
|
|
- // console.log(e);
|
|
|
- // 第几列滑动
|
|
|
- // console.log(e.detail.column);
|
|
|
- // 第几列滑动的下标
|
|
|
- // console.log(e.detail.value)
|
|
|
-
|
|
|
if (e.detail.column === 0) {
|
|
|
// 声明城市数组
|
|
|
let cityArr = [];
|
|
@@ -752,7 +808,6 @@
|
|
|
},
|
|
|
//城市选择
|
|
|
pickerChange1(e) {
|
|
|
- // console.log(e, '1');
|
|
|
this.regionIndex1 = e.detail.value;
|
|
|
this.regionStr1 = this.region[0][this.regionIndex1[0]].name + ' ' + this.region[1][this.regionIndex1[
|
|
|
1]]
|
|
@@ -766,7 +821,6 @@
|
|
|
2][this.regionIndex1[2]].code
|
|
|
]);
|
|
|
this.formData.fregion = this.region[2][this.regionIndex1[2]].code;
|
|
|
- console.log(this.formData.fregion)
|
|
|
|
|
|
},
|
|
|
pickerColumnchange1(e) {
|
|
@@ -810,27 +864,40 @@
|
|
|
}
|
|
|
},
|
|
|
// 粉丝量量级选择
|
|
|
- bindPickerChange: function(e) {
|
|
|
+ bindPickerChange2: function(e) {
|
|
|
+ if (this.index3 !== e.detail.value) {
|
|
|
+ this.fansCount = null
|
|
|
+ }
|
|
|
this.index3 = e.detail.value;
|
|
|
this.fansLabel = this.fansRange[this.index3].label
|
|
|
this.fansCountInfo = this.fansRange[this.index3].value
|
|
|
- console.log(this.fansCountInfo, this.fansLabel)
|
|
|
},
|
|
|
onInput(e) {
|
|
|
- console.log(e)
|
|
|
e = (e.match(/^\d*(\.?\d{0,1})/g)[0]) || null
|
|
|
// //重新赋值给input
|
|
|
+ if (e < 0 || e > 9999.9) {
|
|
|
+ uni.showToast({
|
|
|
+ title: '请输入[1,9999.9]区间内的数',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
+ }
|
|
|
this.$nextTick(() => {
|
|
|
- this.fansCount = e
|
|
|
+ this.fansCount = (e > 0 && e <= 9999.9) ? e : null
|
|
|
})
|
|
|
},
|
|
|
onInput1(e) {
|
|
|
- console.log(e)
|
|
|
+ // 验证是否是纯数字
|
|
|
+ const isNumber = /^\d*$/.test(e)
|
|
|
+ // 过滤非数字
|
|
|
e = e.replace(/\D/g, '')
|
|
|
- // e = (e.match(/^\d*(\.?\d{0,1})/g)[0]) || null
|
|
|
- // //重新赋值给input
|
|
|
+ if (!isNumber || e < 0 || e > 9999) {
|
|
|
+ uni.showToast({
|
|
|
+ title: '请输入[0,9999]区间的整数',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
+ }
|
|
|
this.$nextTick(() => {
|
|
|
- this.fansCount = e
|
|
|
+ this.fansCount = (e >= 0 && e <= 9999 && e.match(/^\d*/g)[0]) ? e : null
|
|
|
})
|
|
|
}
|
|
|
},
|
|
@@ -843,7 +910,6 @@
|
|
|
code: item.code
|
|
|
});
|
|
|
})
|
|
|
- // console.log(provinceArr);
|
|
|
provinceArr.map((item, index) => {
|
|
|
this.region[1].push({
|
|
|
name: item.name,
|
|
@@ -866,18 +932,19 @@
|
|
|
display: block;
|
|
|
cursor: pointer;
|
|
|
padding-left: 20rpx !important;
|
|
|
- padding-top: 20rpx !important;
|
|
|
- color: grey !important;
|
|
|
+ /* padding-top: 20rpx !important; */
|
|
|
+ /* color: grey !important; */
|
|
|
}
|
|
|
|
|
|
/deep/.uni-forms-item__inner {
|
|
|
border-bottom: none !important;
|
|
|
margin-bottom: 0 !important;
|
|
|
}
|
|
|
+
|
|
|
/deep/ .uni-forms-item__content {
|
|
|
display: flex !important;
|
|
|
align-items: center !important;
|
|
|
- justify-content: space-between;
|
|
|
+ /* justify-content: space-between; */
|
|
|
}
|
|
|
</style>
|
|
|
<style lang="scss" scoped>
|
|
@@ -1372,4 +1439,9 @@
|
|
|
padding: 15px;
|
|
|
background-color: #ffffff;
|
|
|
}
|
|
|
+
|
|
|
+ .number-inupt {
|
|
|
+ display: flex !important;
|
|
|
+ align-items: center !important;
|
|
|
+ }
|
|
|
</style>
|