You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.6 KiB
76 lines
1.6 KiB
<!--pages/navigation/index/add/add.wxml-->
|
|
<van-toast id="van-toast" />
|
|
|
|
<view style="padding:80rpx;">
|
|
|
|
<van-cell-group>
|
|
<van-field clearable
|
|
model:value="{{name}}"
|
|
label="服装名"
|
|
placeholder="请输入服装名"
|
|
|
|
/>
|
|
</van-cell-group>
|
|
<van-cell-group>
|
|
<van-field clearable
|
|
model:value="{{pattern}}"
|
|
label="模式"
|
|
placeholder="请输入模式"
|
|
|
|
/>
|
|
</van-cell-group>
|
|
<van-cell-group>
|
|
<van-field clearable
|
|
model:value="{{kind}}"
|
|
label="类型"
|
|
placeholder="请输入模式"
|
|
|
|
/>
|
|
</van-cell-group>
|
|
<van-cell-group>
|
|
<van-field clearable
|
|
model:value="{{style}}"
|
|
label="样式"
|
|
placeholder="请输入样式"
|
|
|
|
/>
|
|
</van-cell-group>
|
|
<van-cell-group>
|
|
<van-field clearable
|
|
model:value="{{colour}}"
|
|
label="颜色"
|
|
placeholder="请输入颜色"
|
|
|
|
/>
|
|
</van-cell-group>
|
|
<van-cell-group>
|
|
<van-field clearable
|
|
model:value="{{T}}"
|
|
label="温度"
|
|
placeholder="请输入温度"
|
|
|
|
/>
|
|
</van-cell-group>
|
|
<van-cell-group>
|
|
<van-field clearable
|
|
model:value="{{thickness}}"
|
|
label="厚度"
|
|
placeholder="请输入厚度"
|
|
|
|
/>
|
|
</van-cell-group>
|
|
<van-cell-group>
|
|
<van-field clearable
|
|
model:value="{{season}}"
|
|
label="季节"
|
|
placeholder="请输入季节"
|
|
|
|
/>
|
|
</van-cell-group>
|
|
<view style="display: -webkit-flex;display: flex;justify-content: space-between;margin-top:30rpx;">
|
|
|
|
<van-button round color="#a7a7a7" bindtap="cancel" type="info">取 消</van-button>
|
|
<van-button round type="info" bindtap="submit">提 交</van-button>
|
|
</view>
|
|
</view>
|