eadit.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. <template>
  2. <view class="content">
  3. <view class="kk"></view>
  4. <view class="box">
  5. <view class="title">基础信息</view>
  6. <view class="line">
  7. <view class="lineLeft">
  8. <span class="linexx">*</span> <span>活动名称</span>
  9. </view>
  10. <view class="lineRight">
  11. <input type="text" v-model="activityName" placeholder="请输入" class="lineRightInput" placeholder-class="inputPlace">
  12. </view>
  13. </view>
  14. <view class="line">
  15. <view class="lineLeft">
  16. <span class="linexx">*</span> <span>报名时间</span>
  17. </view>
  18. <view class="lineRight timelineRight">
  19. <picker mode="date" :value="startTime" @change="bindTimeChangeStart">
  20. <view class="dateViewno" v-if="!startTime">开始时间</view>
  21. <view class="dateView" v-else>{{startTime}}</view>
  22. </picker>
  23. <view class="timeHx">-</view>
  24. <picker mode="date" :value="endTime" @change="bindTimeChangeendTime">
  25. <view class="dateViewno" v-if="!endTime">结束时间</view>
  26. <view class="dateView" v-else>{{endTime}}</view>
  27. </picker>
  28. </view>
  29. </view>
  30. <view class="line">
  31. <view class="lineLeft">
  32. <span class="linexx">*</span> <span>活动门店</span>
  33. </view>
  34. <view class="lineRight shopckBox">
  35. <view class="shopListNo">请选择活动门店,可多选请选择活动门店,可多选</view>
  36. <view class="addshop">添加</view>
  37. </view>
  38. </view>
  39. </view>
  40. <view class="kk"></view>
  41. <view class="box">
  42. <view class="title">报名信息</view>
  43. <view class="line">
  44. <view class="lineLeft">
  45. <span class="linexx">*</span> <span>报名凭证</span>
  46. </view>
  47. <view class="lineRight clWhereBox">
  48. <view class="clWhereLine" >手机号</view>
  49. <view class="clWhereLine clWhereActive" >车牌号</view>
  50. <view class="clWhereLine" >姓名</view>
  51. <view class="clWhereLine" >单位</view>
  52. </view>
  53. </view>
  54. <view class="line">
  55. <view class="lineLeft">
  56. <span class="linexx">*</span> <span>最多报名人数</span>
  57. </view>
  58. <view class="lineRight">
  59. <input type="text" v-model="activityName" placeholder="请输入" class="lineRightInput" placeholder-class="inputPlace">
  60. </view>
  61. </view>
  62. <view class="line">
  63. <view class="lineLeft">
  64. <span class="linexx">*</span> <span>支付方式</span>
  65. </view>
  66. <view class="lineRight payBox">
  67. <view class="payType">
  68. <img src="../../static/img/ckn.png" alt="" class="payTypeImg">
  69. <view class="payTypeTxt">在线支付</view>
  70. </view>
  71. <view class="payType">
  72. <img src="../../static/img/cky.png" alt="" class="payTypeImg">
  73. <view class="payTypeTxt">无需支付</view>
  74. </view>
  75. </view>
  76. </view>
  77. <view class="line">
  78. <view class="lineLeft">
  79. <span class="linexx">*</span> <span>支付金额</span>
  80. </view>
  81. <view class="lineRight">
  82. <input type="text" v-model="activityName" placeholder="请输入" class="lineRightInput" placeholder-class="inputPlace">
  83. </view>
  84. </view>
  85. </view>
  86. <view class="kk"></view>
  87. <view class="box">
  88. <view class="title">活动详情</view>
  89. </view>
  90. </view>
  91. </template>
  92. <script>
  93. export default {
  94. data() {
  95. return {
  96. id:'', //类型:String 可有字段 备注:新增无编辑有
  97. activityName:'', //类型:String 必有字段 备注:活动名称
  98. startTime:"", //类型:String 必有字段 备注:营业开始时间
  99. endTime:"", //类型:String 必有字段 备注:营业结束时间
  100. number:"mock", //类型:String 必有字段 备注:报名人数
  101. activityContent:"mock", //类型:String 必有字段 备注:活动说明
  102. clWhere:"mock", //类型:String 必有字段 备注:报名凭证1,2,3,4 1手机号2车牌号3姓名4单位
  103. payType:"mock", //类型:String 必有字段 备注:1在线支付2无需支付
  104. music:"mock", //类型:String 必有字段 备注:背景音乐
  105. clState:"mock", //类型:String 必有字段 备注:1未启用2启用
  106. img:"mock", //类型:String 必有字段 备注:从首页带进来的图片
  107. imgList:"mock",//类型:String 必有字段 备注:详情图片多个以逗号分割
  108. datetimerange: '',
  109. }
  110. },
  111. onLoad() {
  112. },
  113. methods: {
  114. bindTimeChangeStart(e){
  115. console.log(e)
  116. this.startTime=e.detail.value;
  117. },
  118. bindTimeChangeendTime(e){
  119. this.endTime=e.detail.value;
  120. }
  121. }
  122. }
  123. </script>
  124. <style scoped>
  125. .content{
  126. min-height: 100vh;
  127. background:#F4F5F7;
  128. }
  129. .payBox{
  130. display: flex;
  131. }
  132. .payTypeImg{
  133. width: 36rpx;
  134. height: 36rpx;
  135. }
  136. .payType{
  137. display: flex;
  138. line-height: 36rpx;
  139. }
  140. .payTypeTxt{
  141. padding-left: 10rpx;
  142. color: #3C3C3C;
  143. }
  144. .line{
  145. display: flex;
  146. font-size: 28rpx;
  147. padding: 30rpx 24rpx;
  148. border-bottom: 1px solid #EEEEEE;
  149. }
  150. .linexx{
  151. color: #FF3B30;
  152. }
  153. .dateView{
  154. color:#3C3C3C ;
  155. }
  156. .lineLeft{
  157. width: 200rpx;
  158. color: #666666;
  159. }
  160. .clWhereBox{
  161. display: flex;
  162. }
  163. .clWhereLine{
  164. width: 100rpx;
  165. height: 52rpx;
  166. background: #F4F5F7;
  167. border-radius: 10rpx;
  168. text-align: center;
  169. color: #3C3C3C;
  170. line-height: 52rpx;
  171. font-size: 24rpx;
  172. margin-right: 24rpx;
  173. }
  174. .clWhereBox .clWhereActive{
  175. background: #EAF3FF;
  176. border: 2rpx solid #3F90F7;
  177. height: 48rpx;
  178. color: #3F90F7;
  179. height: 48rpx;
  180. line-height: 48rpx;
  181. }
  182. .timelineRight{
  183. display: flex;
  184. }
  185. .shopListNo{
  186. width: 400rpx;
  187. white-space:nowrap;
  188. overflow:hidden;
  189. text-overflow:ellipsis;
  190. color: #CCCCCC;
  191. }
  192. .addshop{
  193. color: #3F90F7;
  194. padding-left: 10rpx;
  195. }
  196. .shopckBox{
  197. display: flex;
  198. }
  199. .timeHx{
  200. color: #CCCCCC;
  201. padding: 0 30rpx;
  202. }
  203. .lineRightInput{
  204. font-size: 28rpx;
  205. color:#3C3C3C ;
  206. }
  207. .lineRight{
  208. color:#3C3C3C ;
  209. }
  210. .inputPlace{
  211. color: #CCCCCC;
  212. }
  213. .dateViewno{
  214. color: #CCCCCC;
  215. }
  216. .box{
  217. background: #ffffff;
  218. }
  219. .kk{
  220. background:#F4F5F7;
  221. height: 20rpx;
  222. }
  223. .title{
  224. padding-left: 24rpx;
  225. padding-top: 30rpx;
  226. color: #333333;
  227. font-size: 32rpx;
  228. line-height: 45rpx;
  229. font-weight: 500;
  230. }
  231. </style>