index.vue 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200
  1. <template>
  2. <view class="content">
  3. <u-navbar title=" " height="88rpx" bgColor="#EE8529" :autoBack="true" :placeholder="true">
  4. <view class="u-nav-slot" slot="left">
  5. <view class="left_text">{{communityName}}</view>
  6. </view>
  7. </u-navbar>
  8. <u-tabs :list="tabs" :current="tab_active" :scrollable="scrollable" @click="changeTab" lineWidth="0" :activeStyle="{color: '#EE8529',marginRight: '22rpx'}" :inactiveStyle="{color: '#666666',marginRight: '22rpx'}"></u-tabs>
  9. <view class="tabs hflex acenter jaround" v-if="identity == 2" >
  10. <block v-for="(item,index) in tabs2" :key="index">
  11. <view class="tabs_item" :class="tab2_active == index ? 'tab_active' : ''" @click="changeTab2(index)">{{item.name}}</view>
  12. </block>
  13. </view>
  14. <view class="list">
  15. <block v-for="(item,index) in pageList" :key="index">
  16. <view class="box" @click="toDetail(index)">
  17. <view v-if="identity == 2">
  18. <view class="top hflex acenter jbetween" v-if="tabs[tab_active].type == 'life_supermarket'">
  19. <view class="hflex acenter">
  20. <u-icon name="order" color="#999999" size="20"></u-icon>
  21. <view class="top_text">{{item.order_sn}}</view>
  22. </view>
  23. <view class="status" v-if="item.status == 1">待发货</view>
  24. <view class="status" v-if="item.status == 2">配送中</view>
  25. <view class="status" v-if="item.status == 3">已完成</view>
  26. <view class="status" v-if="item.status == 4">已送达</view>
  27. </view>
  28. <view class="top hflex acenter jbetween" v-if="tabs[tab_active].type == 'home_service'">
  29. <view class="hflex acenter">
  30. <u-icon name="order" color="#999999" size="20"></u-icon>
  31. <view class="top_text">{{item.order_sn}}</view>
  32. </view>
  33. <view class="status" v-if="item.status == 0">已预约</view>
  34. <view class="status" v-if="item.status == 1">待服务</view>
  35. <view class="status" v-if="item.status == 2">已完成</view>
  36. </view>
  37. <view class="top hflex acenter jbetween" v-if="tabs[tab_active].type == 'daily_appliance'">
  38. <view class="hflex acenter">
  39. <u-icon name="order" color="#999999" size="20"></u-icon>
  40. <view class="top_text">{{item.order_sn}}</view>
  41. </view>
  42. <view class="status" v-if="item.status == 1">待发货</view>
  43. <view class="status" v-if="item.status == 2">配送中</view>
  44. <view class="status" v-if="item.status == 3">已完成</view>
  45. <view class="status" v-if="item.status == 4">已送达</view>
  46. </view>
  47. <view class="top hflex acenter jbetween" v-if="tabs[tab_active].type == 'sports'">
  48. <view class="hflex acenter">
  49. <u-icon name="order" color="#999999" size="20"></u-icon>
  50. <view class="top_text">{{item.order_sn}}</view>
  51. </view>
  52. <view class="status" v-if="item.status == 1">进行中</view>
  53. <view class="status status1" v-if="item.status == 3">已完成</view>
  54. </view>
  55. </view>
  56. <view class="top hflex acenter jbetween" v-if="identity == 4">
  57. <view class="hflex acenter">
  58. <u-icon name="order" color="#999999" size="20"></u-icon>
  59. <view class="top_text">{{item.order_sn}}</view>
  60. </view>
  61. <view class="status" v-if="item.status == 0">已预约</view>
  62. <view class="status" v-if="item.status == 1">待服务</view>
  63. <view class="status" v-if="item.status == 2">已完成</view>
  64. </view>
  65. <view class="top hflex acenter jbetween" v-if="identity == 3">
  66. <view class="hflex acenter">
  67. <u-icon name="order" color="#999999" size="20"></u-icon>
  68. <view class="top_text">{{item.order_sn}}</view>
  69. </view>
  70. <view class="status" v-if="item.status == 0">待支付</view>
  71. <view class="status" v-if="item.status == 1">待发货</view>
  72. <view class="status" v-if="item.status == 2">配送中</view>
  73. <view class="status" v-if="item.status == 3">已完成</view>
  74. <view class="status" v-if="item.status == 4">已送达</view>
  75. </view>
  76. <view class="top hflex acenter jbetween" v-if="identity == 5">
  77. <view class="hflex acenter">
  78. <u-icon name="order" color="#999999" size="20"></u-icon>
  79. <view class="top_text">{{item.order_sn}}</view>
  80. </view>
  81. <view class="status" v-if="item.status == 1">进行中</view>
  82. <view class="status status1" v-if="item.status == 3">已完成</view>
  83. </view>
  84. <view class="good hflex" v-if="identity == 4">
  85. <image :src="imgUrl + item.goods_image" mode="aspectFill" class="item_img"></image>
  86. <view class="vflex img_right">
  87. <view class="hflex acenter jbetween">
  88. <view class="item_name text_hide">{{item.goods_name}}</view>
  89. <!-- <view class="item_price" v-if="identity !== 4">¥{{item.current_goods_amount}}</view> -->
  90. </view>
  91. <view class="hflex acenter jbetween">
  92. <view class="item_spec text_hide">{{item.goods_sku_text}}</view>
  93. <!-- <view class="item_price" v-if="identity != 4">X{{item.good[0].num}}</view> -->
  94. </view>
  95. <view class="info">
  96. <view class="info_text" v-if="item.goods_pay_type == 1">先付款后服务</view>
  97. <view class="info_text" v-else>先预约后付款</view>
  98. </view>
  99. </view>
  100. </view>
  101. <block v-if="identity == 2">
  102. <block v-if="tabs[tab_active].type == 'life_supermarket'">
  103. <block v-for="(item2,index2) in item.ordergoods" :key="index">
  104. <view class="good hflex">
  105. <image :src="item2.goods_image" mode="aspectFill" class="item_img"></image>
  106. <view class="vflex img_right">
  107. <view class="hflex acenter jbetween">
  108. <view class="item_name text_hide">{{item2.goods_name}}</view>
  109. <view class="item_price">¥{{item2.goods_sku_price}}</view>
  110. </view>
  111. <view class="hflex acenter jbetween">
  112. <view class="item_spec text_hide">{{item2.goods_sku_text}}</view>
  113. <view class="item_price">X{{item2.goods_num}}</view>
  114. </view>
  115. </view>
  116. </view>
  117. </block>
  118. </block>
  119. <view class="good hflex" v-if="tabs[tab_active].type == 'home_service'">
  120. <image :src="imgUrl + item.goods_image" mode="aspectFill" class="item_img"></image>
  121. <view class="vflex img_right">
  122. <view class="hflex acenter jbetween">
  123. <view class="item_name text_hide">{{item.goods_name}}</view>
  124. <!-- <view class="item_price" v-if="identity !== 4">¥{{item.current_goods_amount}}</view> -->
  125. </view>
  126. <view class="hflex acenter jbetween">
  127. <view class="item_spec text_hide">{{item.goods_sku_text}}</view>
  128. <!-- <view class="item_price" v-if="identity != 4">X{{item.good[0].num}}</view> -->
  129. </view>
  130. <view class="info">
  131. <view class="info_text" v-if="item.goods_pay_type == 1">先付款后服务</view>
  132. <view class="info_text" v-else>先预约后付款</view>
  133. </view>
  134. </view>
  135. </view>
  136. <block v-if="tabs[tab_active].type == 'daily_appliance'">
  137. <block v-for="(item2,index2) in item.ordergoods" :key="index">
  138. <view class="good hflex">
  139. <image :src="item2.goods_image" mode="aspectFill" class="item_img"></image>
  140. <view class="vflex img_right">
  141. <view class="hflex acenter jbetween">
  142. <view class="item_name text_hide">{{item2.goods_name}}</view>
  143. <view class="item_price">¥{{item2.goods_sku_price}}</view>
  144. </view>
  145. <view class="hflex acenter jbetween">
  146. <view class="item_spec text_hide">{{item2.goods_sku_text}}</view>
  147. <view class="item_price">X{{item2.goods_num}}</view>
  148. </view>
  149. </view>
  150. </view>
  151. </block>
  152. </block>
  153. <block v-if="tabs[tab_active].type == 'sports'">
  154. <view class="good hflex">
  155. <image :src="item.goods.goods_image" mode="aspectFill" class="item_img"></image>
  156. <view class="vflex img_right">
  157. <view class="item_name text_hide">{{item.goods.goods_name}}</view>
  158. <view class="item_spec text_hide">{{item.community.name}}</view>
  159. <view class="item_spec text_hide">订单时间:{{item.createtime}}</view>
  160. </view>
  161. </view>
  162. </block>
  163. </block>
  164. <block v-if="identity == 3">
  165. <block v-for="(item2,index2) in item.ordergoods" :key="index">
  166. <view class="good hflex">
  167. <image :src="item2.goods_image" mode="aspectFill" class="item_img"></image>
  168. <view class="vflex img_right">
  169. <view class="hflex acenter jbetween">
  170. <view class="item_name text_hide">{{item2.goods_name}}</view>
  171. <view class="item_price">¥{{item2.goods_sku_price}}</view>
  172. </view>
  173. <view class="hflex acenter jbetween">
  174. <view class="item_spec text_hide">{{item2.goods_sku_text}}</view>
  175. <view class="item_price">X{{item2.goods_num}}</view>
  176. </view>
  177. </view>
  178. </view>
  179. </block>
  180. </block>
  181. <block v-if="identity == 5">
  182. <view class="good hflex">
  183. <image :src="item.goods.goods_image" mode="aspectFill" class="item_img"></image>
  184. <view class="vflex img_right">
  185. <view class="item_name text_hide">{{item.goods.goods_name}}</view>
  186. <view class="item_spec text_hide">{{item.community.name}}</view>
  187. <view class="item_spec text_hide">订单时间:{{item.createtime}}</view>
  188. </view>
  189. </view>
  190. </block>
  191. <block v-if="identity == 2">
  192. <block v-if="tabs[tab_active].type == 'home_service'">
  193. <view class="cell hflex acenter jbetween">
  194. <view class="label">服务类型:</view>
  195. <view class="label">{{item.category_name}}</view>
  196. </view>
  197. <view class="cell hflex acenter jbetween" v-if="item.goods_pay_type == 1">
  198. <view class="label">付款金额:</view>
  199. <view class="label">¥{{item.current_goods_pay_amount}}</view>
  200. </view>
  201. <view class="cell hflex acenter jbetween" v-if="item.goods_pay_type == 2 && Number(item.current_goods_amount) !== 0">
  202. <view class="label">待支付金额:</view>
  203. <view class="label">¥{{item.current_goods_amount}}</view>
  204. </view>
  205. <view class="cell hflex acenter jbetween">
  206. <view class="label">付款备注:</view>
  207. <view class="label">{{item.remark?item.remark:'-'}}</view>
  208. </view>
  209. <!-- 到家服务 未付款显示 -->
  210. <view class="bottom hflex jend" v-if="item.goods_pay_type == 2 && Number(item.current_goods_amount) !== 0 && item.status == 0">
  211. <view class="btn" @click="pay(index)">待用户付款</view>
  212. </view>
  213. <!-- 到家服务 没有价格显示 -->
  214. <view class="bottom hflex jend" v-if="item.goods_pay_type == 2 && Number(item.current_goods_amount) == 0">
  215. <view class="btn" @click.stop="estimateOpen(index)">待评估价格</view>
  216. </view>
  217. </block>
  218. <block v-if="tabs[tab_active].type == 'life_supermarket'">
  219. <view class="cell hflex acenter jbetween">
  220. <view class="label">商品总价:</view>
  221. <view class="label">¥{{item.type_goods_amount}}</view>
  222. </view>
  223. <view class="cell hflex acenter jbetween">
  224. <view class="label">订单时间:</view>
  225. <view class="label">{{item.createtime}}</view>
  226. </view>
  227. <view class="bottom hflex jend" v-if="item.status == 1 && item.delivery_id == 0">
  228. <view class="btn" @click.stop="open(index)">指派配送人员</view>
  229. </view>
  230. </block>
  231. <block v-if="tabs[tab_active].type == 'daily_appliance'">
  232. <view class="cell hflex acenter jbetween">
  233. <view class="label">商品总价:</view>
  234. <view class="label">¥{{item.type_goods_amount}}</view>
  235. </view>
  236. <view class="cell hflex acenter jbetween">
  237. <view class="label">订单时间:</view>
  238. <view class="label">{{item.createtime}}</view>
  239. </view>
  240. <view class="bottom hflex jend" v-if="item.status == 1 && item.delivery_id == 0">
  241. <view class="btn" @click.stop="send(index)">发货</view>
  242. </view>
  243. <!-- <view class="bottom hflex jend" v-if="item.status == 1 && item.delivery_id == 0">
  244. <view class="btn" @click.stop="send(index)">发货</view>
  245. </view> -->
  246. </block>
  247. <block v-if="tabs[tab_active].type == 'sports'">
  248. <view class="cell hflex acenter jbetween">
  249. <view class="label">课程规格:</view>
  250. <view class="label">{{item.goods.goods_sku_text}}</view>
  251. </view>
  252. <view class="cell hflex acenter jbetween" v-if="item.goods.sport_type == 'whole'">
  253. <view class="text">包场时长:</view>
  254. <view class="text">{{item.goods.sport_sum_count}}</view>
  255. </view>
  256. <view class="cell hflex acenter jbetween" v-if="item.goods.sport_type == 'whole'">
  257. <view class="text">开始时间:</view>
  258. <view class="text">{{item.goods.sport_whole_start_time}}</view>
  259. </view>
  260. <view class="cell hflex acenter jbetween" v-if="item.goods.sport_type == 'whole'">
  261. <view class="text">结束时间:</view>
  262. <view class="text">{{item.goods.sport_whole_end_time}}</view>
  263. </view>
  264. <view class="cell hflex acenter jbetween" v-if="item.goods.sport_type !== 'whole'">
  265. <view class="label">剩余次数:</view>
  266. <view class="label">{{item.goods.sport_remain_verify_count == -1 ? '无限制' : item.goods.sport_remain_verify_count}}</view>
  267. </view>
  268. <!-- <view class="cell hflex acenter jbetween">
  269. <view class="label">到期时间:</view>
  270. <view class="label">{{item.createtime}}</view>
  271. </view> -->
  272. <view class="cell hflex acenter jbetween">
  273. <view class="label">付款金额:</view>
  274. <view class="label">¥{{item.goods.current_goods_pay_amount}}</view>
  275. </view>
  276. </block>
  277. <!-- <block v-if="tabs[tab_active].type == 'home_service'"></block> -->
  278. </block>
  279. <block v-if="identity == 3">
  280. <view class="cell hflex acenter jbetween">
  281. <view class="label">商品总价:</view>
  282. <view class="label">¥{{item.type_goods_amount}}</view>
  283. </view>
  284. <view class="cell hflex acenter jbetween">
  285. <view class="label">订单时间:</view>
  286. <view class="label">{{item.createtime}}</view>
  287. </view>
  288. <view class="bottom hflex jend" v-if="item.status == 1 || item.status == 2">
  289. <view class="btn" v-if="item.status == 1" @click.stop="send(index)">发货</view>
  290. <view class="btn" v-if="item.status == 2" @click.stop="sendAppliance(4)">已送达</view>
  291. </view>
  292. </block>
  293. <block v-if="identity == 5">
  294. <view class="cell hflex acenter jbetween">
  295. <view class="label">课程规格:</view>
  296. <view class="label">{{item.goods.goods_sku_text}}</view>
  297. </view>
  298. <view class="cell hflex acenter jbetween" v-if="item.goods.sport_type == 'whole'">
  299. <view class="text">包场时长:</view>
  300. <view class="text">{{item.goods.sport_sum_count}}</view>
  301. </view>
  302. <view class="cell hflex acenter jbetween" v-if="item.goods.sport_type == 'whole'">
  303. <view class="text">开始时间:</view>
  304. <view class="text">{{item.goods.sport_whole_start_time}}</view>
  305. </view>
  306. <view class="cell hflex acenter jbetween" v-if="item.goods.sport_type == 'whole'">
  307. <view class="text">结束时间:</view>
  308. <view class="text">{{item.goods.sport_whole_end_time}}</view>
  309. </view>
  310. <view class="cell hflex acenter jbetween" v-if="item.goods.sport_type !== 'whole'">
  311. <view class="label">剩余次数:</view>
  312. <view class="label">{{item.goods.sport_remain_verify_count == -1 ? '无限制' : item.goods.sport_remain_verify_count}}</view>
  313. </view>
  314. <!-- <view class="cell hflex acenter jbetween">
  315. <view class="label">到期时间:</view>
  316. <view class="label">{{item.createtime}}</view>
  317. </view> -->
  318. <view class="cell hflex acenter jbetween">
  319. <view class="label">付款金额:</view>
  320. <view class="label">¥{{item.goods.current_goods_pay_amount}}</view>
  321. </view>
  322. </block>
  323. <block v-if="identity == 4">
  324. <view class="cell hflex acenter jbetween">
  325. <view class="label">服务类型:</view>
  326. <view class="label">{{item.category_name}}</view>
  327. </view>
  328. <view class="cell hflex acenter jbetween" v-if="item.goods_pay_type == 1">
  329. <view class="label">付款金额:</view>
  330. <view class="label">¥{{item.current_goods_pay_amount}}</view>
  331. </view>
  332. <view class="cell hflex acenter jbetween" v-if="item.goods_pay_type == 2 && Number(item.current_goods_amount) !== 0">
  333. <view class="label">待支付金额:</view>
  334. <view class="label">¥{{item.current_goods_amount}}</view>
  335. </view>
  336. <view class="cell hflex acenter jbetween">
  337. <view class="label">付款备注:</view>
  338. <view class="label">{{item.remark?item.remark:'-'}}</view>
  339. </view>
  340. <!-- 到家服务 未付款显示 -->
  341. <view class="bottom hflex jend" v-if="item.goods_pay_type == 2 && Number(item.current_goods_amount) !== 0 && item.status == 0">
  342. <view class="btn" @click="pay(index)">待用户付款</view>
  343. </view>
  344. <!-- 到家服务 没有价格显示 -->
  345. <view class="bottom hflex jend" v-if="item.goods_pay_type == 2 && Number(item.current_goods_amount) == 0">
  346. <view class="btn" @click.stop="estimateOpen(index)">待评估价格</view>
  347. </view>
  348. </block>
  349. </view>
  350. </block>
  351. </view>
  352. <u-popup :show="assign_show" @close="close">
  353. <view class="popup">
  354. <view class="popu_top hflex acenter jbetween">
  355. <view></view>
  356. <view class="title">指派配送人员</view>
  357. <u-icon name="close" color="#000000" size="26" @click="close"></u-icon>
  358. </view>
  359. <view class="popu_list hflex">
  360. <view class="left">{{communityName}}</view>
  361. <scroll-view class="right vflex acenter jcenter" :scroll-y="true">
  362. <block v-for="(item,index) in deliveryList" :key="index">
  363. <view class="name" :class="active === index ? 'active' : ''" @click="selectDelivery(index)">{{item.delivery_name}}</view>
  364. </block>
  365. </scroll-view>
  366. </view>
  367. <view class="popu_bottom hflex jend">
  368. <view class="btn" @click="sure">确认</view>
  369. </view>
  370. </view>
  371. </u-popup>
  372. <u-popup :show="estimate_show" @close="close">
  373. <view class="popup">
  374. <view class="popu_top border_bottom hflex acenter jbetween">
  375. <view></view>
  376. <view class="title">待评估价格</view>
  377. <u-icon name="close" color="#000000" size="26" @click="close"></u-icon>
  378. </view>
  379. <view class="popu_form">
  380. <view class="hflex acenter">
  381. <view class="form_label">商品价格:</view>
  382. <u-input placeholder="请输入评估后的价格" border="surround" v-model="estimate_price">
  383. <u--text text="¥" slot="prefix" margin="0 3px 0 0" type="tips"></u--text>
  384. </u-input>
  385. </view>
  386. <view class="hflex acenter" style="margin-top: 60rpx;">
  387. <view class="form_label">付款备注:</view>
  388. <u-input placeholder="请输入备注信息" border="surround" v-model="remarks">
  389. </u-input>
  390. </view>
  391. </view>
  392. <view class="popu_bottom hflex jend">
  393. <view class="btn btn1" @click="estimateSure">确认</view>
  394. </view>
  395. </view>
  396. </u-popup>
  397. <u-popup :show="send_show" @close="close">
  398. <view class="popup">
  399. <view class="popu_top border_bottom hflex acenter jbetween">
  400. <view></view>
  401. <view class="title">配送人员</view>
  402. <u-icon name="close" color="#000000" size="26" @click="close"></u-icon>
  403. </view>
  404. <view class="popu_form">
  405. <view class="hflex acenter">
  406. <!-- <view class="form_label">商品价格:</view> -->
  407. <u-input placeholder="请输入配送员的姓名" border="surround" v-model="appliance_name">
  408. </u-input>
  409. </view>
  410. <view class="hflex acenter" style="margin-top: 60rpx;">
  411. <!-- <view class="form_label">付款备注:</view> -->
  412. <u-input placeholder="请输入配送员的联系方式" border="surround" v-model="appliance_phone">
  413. </u-input>
  414. </view>
  415. </view>
  416. <view class="popu_bottom hflex jend">
  417. <view class="btn btn1" @click="sendAppliance(2)">立即发货</view>
  418. </view>
  419. </view>
  420. </u-popup>
  421. </view>
  422. </template>
  423. <!-- 订单列表 -->
  424. <script>
  425. import $api from '@/static/js/api.js'
  426. var that = ''
  427. export default {
  428. data() {
  429. return {
  430. communityName: '',
  431. tabs: [],
  432. scrollable: false,
  433. tab_active: 0,
  434. tabs2: [],
  435. tab2_active: 0,
  436. pageList: [],
  437. page: 1,
  438. pageSize: 10,
  439. total: 10,
  440. order_index: 0,
  441. select_index: 0,
  442. assign_show: false,
  443. deliveryList: [],
  444. active: 0,
  445. identity: '',
  446. imgUrl: $api.config.imgUrl,
  447. estimate_show: false,
  448. estimate_price: '',
  449. remarks: '',
  450. select_active: 0,
  451. send_show: false,
  452. appliance_name: '',
  453. appliance_phone: '',
  454. }
  455. },
  456. onLoad() {
  457. that = this
  458. that.identity = uni.getStorageSync('identity')
  459. // that.getTabs()
  460. },
  461. onShow() {
  462. that.tab_active = 0
  463. that.getTabs()
  464. that.communityName = uni.getStorageSync('community')
  465. },
  466. methods: {
  467. // 获取tabs
  468. getTabs() {
  469. if(that.identity == 4) {
  470. that.tabs = [
  471. {
  472. name: '全部',
  473. id: -1
  474. },
  475. {
  476. name: '已预约',
  477. id: 0
  478. },
  479. {
  480. name: '待服务',
  481. id: 1
  482. },
  483. {
  484. name: '已完成',
  485. id: 2
  486. }
  487. ]
  488. that.page = 1
  489. that.getList()
  490. } else if(that.identity == 2) {
  491. $api.req({
  492. url: '/api/index/get_cate',
  493. }, function(res) {
  494. if(res.code == 1) {
  495. that.tabs = res.data
  496. if(that.tabs[0].type == 'life_supermarket') {
  497. that.tabs2 = [
  498. {
  499. name: '全部',
  500. id: ''
  501. },
  502. {
  503. name: '待发货',
  504. id: 1
  505. },
  506. {
  507. name: '配送中',
  508. id: 2
  509. },
  510. {
  511. name: '已送达',
  512. id: 4
  513. },
  514. {
  515. name: '已完成',
  516. id: 3
  517. }
  518. ]
  519. } else if(that.tabs[0].type == 'home_service') {
  520. that.tabs2 = [
  521. {
  522. name: '全部',
  523. id: -1
  524. },
  525. {
  526. name: '已预约',
  527. id: 0
  528. },
  529. {
  530. name: '待服务',
  531. id: 1
  532. },
  533. {
  534. name: '已完成',
  535. id: 2
  536. }
  537. ]
  538. } else if(that.tabs[0].type == 'daily_appliance') {
  539. that.tabs2 = [
  540. {
  541. name: '全部',
  542. id: ''
  543. },
  544. {
  545. name: '待发货',
  546. id: 1
  547. },
  548. {
  549. name: '配送中',
  550. id: 2
  551. },
  552. /* {
  553. name: '已送达',
  554. id: 4
  555. }, */
  556. {
  557. name: '已完成',
  558. id: 3
  559. }
  560. ]
  561. } else if(that.tabs[0].type == 'sports') {
  562. that.tabs2 = [
  563. {
  564. name: '全部',
  565. id: ''
  566. },
  567. {
  568. name: '进行中',
  569. id: 1
  570. },
  571. {
  572. name: '已完成',
  573. id: 3
  574. }
  575. ]
  576. }
  577. that.tab_active = 0
  578. that.scrollable = true
  579. that.page = 1
  580. that.getList()
  581. }
  582. })
  583. } else if(that.identity == 3) {
  584. that.tabs = [
  585. {
  586. name: '全部',
  587. id: ''
  588. },
  589. {
  590. name: '待发货',
  591. id: 1
  592. },
  593. {
  594. name: '配送中',
  595. id: 2
  596. },
  597. /* {
  598. name: '已送达',
  599. id: 4
  600. }, */
  601. {
  602. name: '已完成',
  603. id: 3
  604. }
  605. ]
  606. that.page = 1
  607. that.getList()
  608. } else if(that.identity == 5) {
  609. that.tabs = [
  610. {
  611. name: '全部',
  612. id: ''
  613. },
  614. {
  615. name: '进行中',
  616. id: 1
  617. },
  618. {
  619. name: '已完成',
  620. id: 3
  621. },
  622. ]
  623. that.page = 1
  624. that.getList()
  625. }
  626. },
  627. // 获取列表
  628. getList() {
  629. let url = ''
  630. let data = {}
  631. if(that.identity == 4) {
  632. url = '/api/merchant_service_order/order_list'
  633. data = {
  634. page: that.page,
  635. status: that.tabs[that.tab_active].id
  636. }
  637. } else if(that.identity == 3) {
  638. url = '/api/merchant.appliance.order/get_list'
  639. data = {
  640. page: that.page,
  641. status: that.tabs[that.tab_active].id
  642. }
  643. } else if(that.identity == 2) {
  644. if(that.tabs[that.tab_active].type == 'life_supermarket') {
  645. url = '/api/merchant.community.order/get_list'
  646. data = {
  647. page: that.page,
  648. status: that.tabs2[that.tab2_active].id,
  649. type: 'life_supermarket'
  650. }
  651. } else if(that.tabs[that.tab_active].type == 'home_service') {
  652. url = '/api/merchant_service_order/order_list'
  653. data = {
  654. page: that.page,
  655. status: that.tabs2[that.tab2_active].id,
  656. // type: 'home_service'
  657. }
  658. } else if(that.tabs[that.tab_active].type == 'daily_appliance') {
  659. url = '/api/merchant.appliance.order/get_list'
  660. data = {
  661. page: that.page,
  662. status: that.tabs2[that.tab2_active].id,
  663. type: 'daily_appliance'
  664. }
  665. } else if(that.tabs[that.tab_active].type == 'sports') {
  666. url = '/api/merchant.sport.order/get_list'
  667. data = {
  668. page: that.page,
  669. status: that.tabs2[that.tab2_active].id,
  670. // type: 'sports'
  671. }
  672. } else {
  673. return
  674. }
  675. } else if(that.identity == 5) {
  676. url = '/api/merchant.sport.order/get_list'
  677. data = {
  678. page: that.page,
  679. status: that.tabs[that.tab_active].id
  680. }
  681. } else {
  682. return
  683. }
  684. $api.req({
  685. url: url,
  686. data: data
  687. }, function(res) {
  688. if(res.code == 1) {
  689. uni.stopPullDownRefresh();
  690. if(res.data.length == 0) {
  691. that.is_bottom = true
  692. } else {
  693. that.is_bottom = false
  694. }
  695. if(that.page == 1) {
  696. that.pageList = res.data
  697. } else {
  698. that.pageList = that.pageList.concat(res.data)
  699. }
  700. }
  701. })
  702. },
  703. // 切换tab
  704. changeTab(e) {
  705. if(that.identity == 4) {
  706. console.log(e);
  707. that.tab_active = e.index
  708. } else if(that.identity == 2) {
  709. that.tab_active = e.index
  710. if(that.tabs[that.tab_active].type == 'home_service') {
  711. that.tabs2 = [
  712. {
  713. name: '全部',
  714. id: -1
  715. },
  716. {
  717. name: '已预约',
  718. id: 0
  719. },
  720. {
  721. name: '待服务',
  722. id: 1
  723. },
  724. {
  725. name: '已完成',
  726. id: 2
  727. }
  728. ]
  729. } else if (that.tabs[that.tab_active].type == 'life_supermarket') {
  730. that.tabs2 = [
  731. {
  732. name: '全部',
  733. id: ''
  734. },
  735. {
  736. name: '待发货',
  737. id: 1
  738. },
  739. {
  740. name: '配送中',
  741. id: 2
  742. },
  743. {
  744. name: '已送达',
  745. id: 4
  746. },
  747. {
  748. name: '已完成',
  749. id: 3
  750. }
  751. ]
  752. } else if (that.tabs[that.tab_active].type == 'daily_appliance') {
  753. that.tabs2 = [
  754. {
  755. name: '全部',
  756. id: ''
  757. },
  758. {
  759. name: '待发货',
  760. id: 1
  761. },
  762. {
  763. name: '配送中',
  764. id: 2
  765. },
  766. /* {
  767. name: '已送达',
  768. id: 4
  769. }, */
  770. {
  771. name: '已完成',
  772. id: 3
  773. }
  774. ]
  775. } else if (that.tabs[that.tab_active].type == 'sports') {
  776. that.tabs2 = [
  777. {
  778. name: '全部',
  779. id: ''
  780. },
  781. {
  782. name: '进行中',
  783. id: 1
  784. },
  785. {
  786. name: '已完成',
  787. id: 3
  788. }
  789. ]
  790. }
  791. } else if(that.identity == 3) {
  792. that.tab_active = e.index
  793. } else if(that.identity == 5) {
  794. that.tab_active = e.index
  795. }
  796. that.page = 1
  797. that.tab2_active = 0
  798. that.pageList = []
  799. that.getList()
  800. },
  801. changeTab2(index) {
  802. that.tab2_active = index
  803. that.page = 1
  804. that.pageList = []
  805. that.getList()
  806. },
  807. // 查看详情
  808. toDetail(index) {
  809. if(that.identity == 2) {
  810. $api.jump('/pages/order/detail?id=' + that.pageList[index].id + '&type=' + that.tabs[that.tab_active].type)
  811. } else if(that.identity !== 2) {
  812. $api.jump('/pages/order/detail?id=' + that.pageList[index].id)
  813. }
  814. },
  815. // 打开配送人员列表
  816. open(index) {
  817. that.order_index = index
  818. that.assign_show = true
  819. that.getDelivery()
  820. // uni.hideTabBar()
  821. },
  822. // 获取配送人员
  823. getDelivery() {
  824. $api.req({
  825. url: '/api/merchant.community.delivery/index',
  826. }, function(res) {
  827. if(res.code == 1) {
  828. that.deliveryList = res.data
  829. }
  830. })
  831. },
  832. // 选择配送人员
  833. sure() {
  834. $api.req({
  835. url: '/api/merchant.community.order/add_delivery',
  836. data: {
  837. id: that.pageList[that.order_index].id,
  838. delivery_id: that.deliveryList[that.active].user_id
  839. }
  840. }, function(res) {
  841. if(res.code == 1) {
  842. $api.info(res.msg)
  843. that.close()
  844. that.page = 1
  845. that.getList()
  846. }
  847. })
  848. },
  849. // 家电配送人员
  850. send(index) {
  851. that.order_index = index
  852. that.send_show = true
  853. },
  854. // 立即发货
  855. sendAppliance(index) {
  856. let data = {}
  857. if(index == 2) {
  858. data = {
  859. id: that.pageList[that.order_index].id,
  860. status: index,
  861. delivery_name: that.appliance_name,
  862. delivery_mobile: that.appliance_phone
  863. }
  864. } else if(index == 4) {
  865. data = {
  866. id: that.pageList[that.order_index].id,
  867. status: index
  868. }
  869. }
  870. $api.req({
  871. url: '/api/merchant.appliance.order/make_order',
  872. data: data,
  873. }, function(res) {
  874. if(res.code == 1) {
  875. $api.info(res.msg)
  876. that.close()
  877. that.page = 1
  878. that.getList()
  879. }
  880. })
  881. },
  882. // 关闭
  883. close() {
  884. that.assign_show = false
  885. that.estimate_show = false
  886. that.send_show = false
  887. // uni.showTabBar()
  888. },
  889. // 点击配送人员
  890. selectDelivery(index) {
  891. that.active = index
  892. },
  893. // 评估价格弹窗
  894. estimateOpen(index) {
  895. that.estimate_show = true
  896. that.select_active = index
  897. },
  898. estimateSure() {
  899. if(that.estimate_price == '') {
  900. $api.info("请输入评估后的价格")
  901. return
  902. }
  903. $api.req({
  904. url: '/api/merchant_service_order/assess_price',
  905. data: {
  906. id: that.pageList[that.select_active].id,
  907. price: that.estimate_price,
  908. remark: that.remarks
  909. }
  910. }, function(res) {
  911. if(res.code == 1) {
  912. $api.info(res.msg)
  913. that.close()
  914. that.page = 1
  915. that.getList()
  916. }
  917. })
  918. }
  919. },
  920. onPullDownRefresh() {
  921. that.page = 1
  922. that.pageList = []
  923. that.getList()
  924. },
  925. onReachBottom() {
  926. if(that.is_bottom) {
  927. $api.info("没有更多了")
  928. } else {
  929. that.page ++
  930. that.getList()
  931. }
  932. }
  933. }
  934. </script>
  935. <style scoped lang="scss">
  936. .content::v-deep {
  937. background: #F1F2F4;
  938. .left_text {
  939. font-size: 32rpx;
  940. font-family: PingFangSC-Medium, PingFang SC;
  941. font-weight: 500;
  942. color: #FFFFFF;
  943. line-height: 44rpx;
  944. }
  945. .u-tabs {
  946. width: 100%;
  947. // height: 128rpx;
  948. background: #FFFFFF;
  949. box-sizing: border-box;
  950. padding: 22rpx 22rpx;
  951. .u-tabs__wrapper__nav__item__text {
  952. white-space: nowrap;
  953. }
  954. }
  955. .tabs {
  956. width: 100%;
  957. box-sizing: border-box;
  958. padding: 28rpx 24rpx 0;
  959. .tabs_item {
  960. height: 72rpx;
  961. font-size: 32rpx;
  962. font-family: PingFangSC-Regular, PingFang SC;
  963. font-weight: 400;
  964. color: #666666;
  965. line-height: 72rpx;
  966. padding: 0 24rpx;
  967. }
  968. .tab_active {
  969. background: #EE8529;
  970. border-radius: 36rpx;
  971. color: #FFFFFF;
  972. }
  973. }
  974. .list {
  975. box-sizing: border-box;
  976. padding: 32rpx 24rpx 0;
  977. .box {
  978. width: 100%;
  979. background: #FFFFFF;
  980. border-radius: 20rpx;
  981. box-sizing: border-box;
  982. padding: 32rpx 26rpx;
  983. margin-bottom: 24rpx;
  984. .top {
  985. width: 100%;
  986. padding-bottom: 24rpx;
  987. border-bottom: 1px solid #F5F5F5;
  988. .top_text {
  989. font-size: 36rpx;
  990. font-family: PingFangSC-Medium, PingFang SC;
  991. font-weight: 500;
  992. color: #333333;
  993. line-height: 50rpx;
  994. padding: 0 0 0 10rpx;
  995. }
  996. .status {
  997. font-size: 28rpx;
  998. font-family: PingFangSC-Medium, PingFang SC;
  999. font-weight: 500;
  1000. color: #EE8529;
  1001. line-height: 40rpx;
  1002. }
  1003. .status2 {
  1004. }
  1005. .status1 {
  1006. color: #5ACD4E;
  1007. }
  1008. }
  1009. .good {
  1010. width: 100%;
  1011. box-sizing: border-box;
  1012. padding: 52rpx 0 0;
  1013. .item_img {
  1014. width: 142rpx;
  1015. height: 142rpx;
  1016. margin-right: 12rpx;
  1017. }
  1018. .img_right {
  1019. width: calc(100% - 154rpx);
  1020. .item_name {
  1021. width: 400rpx;
  1022. font-size: 28rpx;
  1023. font-family: PingFangSC-Medium, PingFang SC;
  1024. font-weight: 500;
  1025. color: #333333;
  1026. line-height: 40rpx;
  1027. }
  1028. .item_price {
  1029. font-size: 28rpx;
  1030. font-family: PingFangSC-Medium, PingFang SC;
  1031. font-weight: 500;
  1032. color: #333333;
  1033. line-height: 28rpx;
  1034. }
  1035. .item_spec {
  1036. font-size: 28rpx;
  1037. font-family: PingFangSC-Regular, PingFang SC;
  1038. font-weight: 400;
  1039. color: #999999;
  1040. line-height: 40rpx;
  1041. padding: 16rpx 0;
  1042. }
  1043. }
  1044. }
  1045. .info {
  1046. padding: 8rpx 0;
  1047. .info_text {
  1048. width: 152rpx;
  1049. font-size: 20rpx;
  1050. font-family: PingFangSC-Medium, PingFang SC;
  1051. font-weight: 500;
  1052. color: #999999;
  1053. line-height: 28rpx;
  1054. border-radius: 16rpx;
  1055. border: 2rpx solid #999999;
  1056. padding: 2rpx 0;
  1057. text-align: center;
  1058. box-sizing: border-box;
  1059. }
  1060. }
  1061. .cell {
  1062. padding: 28rpx 0 0;
  1063. .label {
  1064. font-size: 28rpx;
  1065. font-family: PingFangSC-Medium, PingFang SC;
  1066. font-weight: 500;
  1067. color: #333333;
  1068. line-height: 40rpx;
  1069. }
  1070. }
  1071. .bottom {
  1072. padding-top: 20rpx;
  1073. .btn {
  1074. // width: 252rpx;
  1075. // height: 72rpx;
  1076. background: #FFFFFF;
  1077. border-radius: 36rpx;
  1078. border: 2rpx solid #EE8529;
  1079. font-size: 28rpx;
  1080. font-family: PingFangSC-Medium, PingFang SC;
  1081. font-weight: 500;
  1082. color: #EE8529;
  1083. // line-height: 72rpx;
  1084. text-align: center;
  1085. padding: 16rpx 44rpx;
  1086. box-sizing: border-box;
  1087. }
  1088. }
  1089. }
  1090. }
  1091. .popup {
  1092. background: #FFFFFF;
  1093. border-radius: 20rpx 20rpx 0rpx 0rpx;
  1094. .popu_top {
  1095. width: 100%;
  1096. height: 88rpx;
  1097. box-sizing: border-box;
  1098. padding: 0 30rpx;
  1099. .title {
  1100. font-size: 28rpx;
  1101. font-family: PingFangSC-Medium, PingFang SC;
  1102. font-weight: 500;
  1103. color: #333333;
  1104. line-height: 40rpx;
  1105. }
  1106. }
  1107. .popu_form {
  1108. width: 100%;
  1109. box-sizing: border-box;
  1110. padding: 80rpx 50rpx 178rpx 32rpx;
  1111. .form_label {
  1112. font-size: 28rpx;
  1113. font-family: PingFangSC-Medium, PingFang SC;
  1114. font-weight: 500;
  1115. color: #333333;
  1116. line-height: 40rpx;
  1117. }
  1118. .u-input {
  1119. border-radius: 20rpx;
  1120. border: 2rpx solid #CCCCCC;
  1121. padding: 24rpx;
  1122. height: 0 88rpx;
  1123. }
  1124. }
  1125. .border_bottom {
  1126. border-bottom: 1px solid #FFF5ED;
  1127. }
  1128. .popu_list {
  1129. background: #FFF5ED;
  1130. padding: 36rpx 0 0;
  1131. .left {
  1132. width: 238rpx;
  1133. height: 120rpx;
  1134. font-size: 28rpx;
  1135. font-family: PingFangSC-Medium, PingFang SC;
  1136. font-weight: 500;
  1137. color: #EE8529;
  1138. line-height: 120rpx;
  1139. background: #FFFFFF;
  1140. text-align: center;
  1141. }
  1142. .right {
  1143. width: calc(100% - 238rpx);
  1144. background: #FFFFFF;
  1145. height: 672rpx;
  1146. .name {
  1147. padding: 28rpx 0;
  1148. text-align: center;
  1149. font-size: 28rpx;
  1150. font-family: PingFangSC-Regular, PingFang SC;
  1151. font-weight: 400;
  1152. color: #666666;
  1153. line-height: 40rpx;
  1154. }
  1155. .active {
  1156. color: #EE8529;
  1157. }
  1158. }
  1159. }
  1160. .popu_bottom {
  1161. width: 100%;
  1162. margin-bottom: 60rpx;
  1163. .btn {
  1164. width: 316rpx;
  1165. height: 72rpx;
  1166. background: #FFFFFF;
  1167. border-radius: 36rpx;
  1168. border: 2rpx solid #EE8529;
  1169. font-size: 28rpx;
  1170. font-family: PingFangSC-Medium, PingFang SC;
  1171. font-weight: 500;
  1172. color: #EE8529;
  1173. line-height: 72rpx;
  1174. text-align: center;
  1175. margin: 2rpx 24rpx;
  1176. }
  1177. .btn1 {
  1178. width: 630rpx !important;
  1179. height: 88rpx !important;
  1180. background: #EE8529 !important;
  1181. border-radius: 20rpx !important;
  1182. color: #FFFFFF !important;
  1183. line-height: 88rpx ;
  1184. margin: 0 auto;
  1185. }
  1186. }
  1187. }
  1188. }
  1189. </style>