rightsProtection.wxml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <!--pages/form/rightsProtection/rightsProtection.wxml 维权-->
  2. <navBar></navBar>
  3. <van-notify id="van-notify" />
  4. <view class="appeal">
  5. <view class="headTitle">
  6. 知识产权维权
  7. </view>
  8. <scroll-view scroll-y class="form">
  9. <wux-form
  10. id="wux-form"
  11. layout="none"
  12. validateMessages="{{ validateMessages }}"
  13. bind:change="onValuesChange"
  14. >
  15. <wux-field name="ADIN" initialValue="{{''}}" rules="{{ [{ required: true } ] }}">
  16. <my-form-item labelWidth="{{labelWidth}}" custom-class="form_label">
  17. <view slot="label" >
  18. <van-dropdown-menu custom-class="form_dropdown1">
  19. <van-dropdown-item value="{{ form.type }}" options="{{ countrys }}" />
  20. </van-dropdown-menu>
  21. </view>
  22. <wux-input placeholder="请输入投诉方ADIN号" />
  23. </my-form-item>
  24. </wux-field>
  25. <wux-field name="infringementType" initialValue="{{''}}" rules="{{ [{ required: true } ] }}">
  26. <my-form-item labelWidth="{{labelWidth}}" custom-class="form_label">
  27. <view slot="label" >
  28. 侵权类型
  29. </view>
  30. <van-dropdown-menu custom-class="form_dropdown">
  31. <van-dropdown-item value="{{ form.infringementType }}" options="{{ typeOptions }}" />
  32. </van-dropdown-menu>
  33. </my-form-item>
  34. </wux-field>
  35. <wux-field name="infringementClassify" initialValue="{{''}}" rules="{{ [{ required: true } ] }}">
  36. <my-form-item labelWidth="{{labelWidth}}" custom-class="form_label">
  37. <view slot="label" >
  38. 侵权分类
  39. </view>
  40. <van-dropdown-menu custom-class="form_dropdown">
  41. <van-dropdown-item value="{{ form.infringementClassify }}" options="{{ typeOptions2 }}" />
  42. </van-dropdown-menu>
  43. </my-form-item>
  44. </wux-field>
  45. <wux-field name="havePatentNo" initialValue="{{''}}">
  46. <my-form-item labelWidth="{{labelWidth}}" custom-class="form_label">
  47. <view slot="label" >
  48. 是否拥有专利号
  49. </view>
  50. <van-radio-group value="{{ form.havePatentNo }}" bind:change="onChange2" >
  51. <view class="form_radio">
  52. <van-radio name="{{1}}">是</van-radio>
  53. <van-radio name="{{2}}">否</van-radio>
  54. </view>
  55. </van-radio-group>
  56. </my-form-item>
  57. </wux-field>
  58. <wux-field name="patentNo" initialValue="{{''}}" >
  59. <my-form-item labelWidth="{{labelWidth}}" custom-class="form_label">
  60. <view slot="label" >
  61. 专利号
  62. </view>
  63. <wux-input maxlength="11" placeholder="请输入您的专利号" />
  64. </my-form-item>
  65. </wux-field>
  66. <wux-field name="question" initialValue="{{''}}">
  67. <view class="label">
  68. 哪一项最能描述您的问题?
  69. </view>
  70. <view>
  71. <van-radio-group value="{{ form.havePatentNo }}" bind:change="onChange2" >
  72. <van-radio name="{{1}}">商品详细页上使用了未经授权的图片</van-radio>
  73. <van-radio name="{{2}}">实际商品或其包装包含非盗版的未授权的内容</van-radio>
  74. <van-radio name="{{3}}">商品详情页面上使用了未经授权的文本</van-radio>
  75. <van-radio name="{{4}}">商品或其包装为盗版(全盘复制受版权保护的商品)</van-radio>
  76. </van-radio-group>
  77. </view>
  78. </wux-field>
  79. <wux-field name="url" initialValue="{{''}}" rules="{{ [{ required: true },{type:'url'} ] }}">
  80. <my-form-item labelWidth="{{labelWidth}}" custom-class="form_label">
  81. <view slot="label" >
  82. 侵权店铺的链接
  83. </view>
  84. <wux-input maxlength="11" placeholder="请输入侵权店铺的链接" />
  85. </my-form-item>
  86. </wux-field>
  87. <wux-field name="phone" initialValue="{{''}}" rules="{{ [{ required: true },{validator:'checkPhone'} ] }}">
  88. <my-form-item labelWidth="{{labelWidth}}" custom-class="form_label">
  89. <view slot="label" >
  90. 联系电话
  91. </view>
  92. <wux-input maxlength="11" placeholder="请输入手机号" />
  93. </my-form-item>
  94. </wux-field>
  95. <wux-field name="person" initialValue="{{''}}">
  96. <my-form-item labelWidth="{{labelWidth}}" custom-class="form_label">
  97. <view slot="label" >
  98. 联系人
  99. </view>
  100. <wux-input maxlength="11" placeholder="请输入联系人" />
  101. </my-form-item>
  102. </wux-field>
  103. </wux-form>
  104. <view class="label">
  105. 请提供更多信息,以便于我们了解您的问题
  106. </view>
  107. <view class="value">
  108. <wux-textarea value="{{ form.value }}" placeholder="请输入版权作品的链接或者注册编号" bind:change="changRemark"/>
  109. </view>
  110. <view class="foot" bind:tap="submit">
  111. 提交
  112. </view>
  113. </scroll-view>
  114. </view>