修改字符类型

This commit is contained in:
@fawn-nine
2024-07-05 16:05:58 +08:00
parent 049117e4b0
commit 62bd642563

View File

@@ -53,7 +53,7 @@
<view class="input_box"> <view class="input_box">
<uni-forms-item label="" name="contactInformation" label-width="0"> <uni-forms-item label="" name="contactInformation" label-width="0">
<text class="input_tit"><i>*</i>联系电话:</text> <text class="input_tit"><i>*</i>联系电话:</text>
<!-- {{reversedMessage}} --> {{reversedMessage}}
<view class="in"> <view class="in">
<input type="number" placeholder-style="font-size:26rpx" @input="telInput" <input type="number" placeholder-style="font-size:26rpx" @input="telInput"
v-model="form.contactInformation" placeholder="请输入与您联系的手机号" /> v-model="form.contactInformation" placeholder="请输入与您联系的手机号" />
@@ -137,35 +137,35 @@
typeLIst: [ typeLIst: [
// { value: 0, text: "请选择" }, // { value: 0, text: "请选择" },
{ {
value: 1, value: "1",
text: "登陆相关问题" text: "登陆相关问题"
}, },
{ {
value: 2, value: "2",
text: "账号相关问题" text: "账号相关问题"
}, },
{ {
value: 3, value: "3",
text: "订单相关问题" text: "订单相关问题"
}, },
{ {
value: 4, value: "4",
text: "购买相关问题" text: "购买相关问题"
}, },
{ {
value: 5, value: "5",
text: "VIP相关问题" text: "VIP相关问题"
}, },
{ {
value: 6, value: "6",
text: "充值相关问题" text: "充值相关问题"
}, },
{ {
value: 7, value: "7",
text: "网络暴力举报" text: "网络暴力举报"
}, },
{ {
value: 8, value: "8",
text: "其他" text: "其他"
}, },
], ],
@@ -177,11 +177,11 @@
this.pageType = e.name this.pageType = e.name
switch (this.pageType) { switch (this.pageType) {
case "login": case "login":
this.form.type = 1 this.form.type = '1'
break; break;
case "order": case "order":
this.form.type = 3 this.form.type = '3'
break; break;
} }