| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <template>
- <view class="page">
- <navBar title="添加售后" :back="true" color="black" background="white" />
- <view class="content">
- <view class="item">
- <view class="label">
- *姓名
- </view>
- <u--input clearable placeholder="请输入姓名" border="surround" v-model="y_xm" @change="change"></u--input>
- </view>
- <view class="item">
- <view class="label">
- *电话
- </view>
- <u--input clearable placeholder="请输入电话" border="surround" v-model="y_dh" @change="change"></u--input>
- </view>
- <view class="item" style="margin-bottom: 24rpx;">
- <view class="label">
- 项目名称
- </view>
- <u--input clearable placeholder="请输入项目名称" border="surround" v-model="l_xmmc"
- @change="change"></u--input>
- </view>
- <button open-type="share" class="orderBtn" :plain="true">
- 确定
- </button>
- </view>
- </view>
- </template>
- <script>
- export default {
- components: {
- },
- data() {
- return {
- }
- },
- onLoad(options) {},
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- @import "./index.scss";
- </style>
|