index.tsx 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. import ColSearch from '@/components/col-search'
  2. import {
  3. ActionSheet,
  4. Cell,
  5. CellGroup,
  6. Col,
  7. DatetimePicker,
  8. Dialog,
  9. Icon,
  10. Image,
  11. List,
  12. Popup,
  13. Row
  14. } from 'vant'
  15. import { defineComponent } from 'vue'
  16. import styles from './index.module.less'
  17. import { formatterDate } from '@/helpers/utils'
  18. // import tipBg from './images/tip-bg.png'
  19. import fly from './images/icon_fly.png'
  20. import iconTime from '@/common/images/icon_timer2.png'
  21. import request from '@/helpers/request'
  22. import ColResult from '@/components/col-result'
  23. import dayjs from 'dayjs'
  24. import { bizStatus, postStatus } from '@/constant'
  25. import iconStudent from '@/common/images/icon_student.png'
  26. import ColHeader from '@/components/col-header'
  27. export const getAssetsHomeFile = (fileName: string) => {
  28. const path = `./images/${fileName}`
  29. const modules = import.meta.globEager('./images/*')
  30. return modules[path].default
  31. }
  32. export default defineComponent({
  33. name: 'extendPlan',
  34. data() {
  35. return {
  36. allAmount: {
  37. cancelAmount: 0,
  38. recordedAmount: 0,
  39. studentNum: 0,
  40. totalAmount: 0,
  41. waitAmount: 0
  42. } as any,
  43. list: [],
  44. dataShow: true, // 判断是否有数据
  45. loading: false,
  46. finished: false,
  47. timeStatus: false,
  48. currentDate: new Date(),
  49. params: {
  50. username: '',
  51. bizType: '',
  52. searchDate: dayjs().format('YYYY-MM'),
  53. page: 1,
  54. rows: 20
  55. },
  56. // 业务类型:PRACTICE, 趣纠课 LIVE, 直播课 VIDEO, 视频课 MUSIC, 乐谱 WITHDRAWAL, 提现 LIVE_SHARE, 直播课分润 VIDEO_SHARE, 视频课分润 MUSIC_SHARE, 乐谱分润 VIP_SHARE, 会员分润 MALL_SHARE, 商品分润 ,可用值:PRACTICE,LIVE,VIDEO,MUSIC,VIP,MALL,WITHDRAWAL,LIVE_SHARE,VIDEO_SHARE,MUSIC_SHARE,VIP_SHARE,MALL_SHARE
  57. actions: [
  58. { name: '全部推广', value: '' },
  59. { name: '直播课', value: 'LIVE_SHARE' },
  60. { name: "小组课", value: "GROUP_SHARE" },
  61. { name: '视频课', value: 'VIDEO_SHARE' },
  62. { name: '小酷Ai会员', value: 'VIP_SHARE' },
  63. { name: '曲谱', value: 'MUSIC_SHARE' },
  64. { name: '专辑', value: 'ALBUM_SHARE' },
  65. { name: '商品', value: 'MALL_SHARE' },
  66. { name: '活动报名', value: 'ACTI_REGIST_SHARE' }
  67. ],
  68. actionsType: {
  69. LIVE_SHARE: '直播课',
  70. GROUP_SHARE: '小组课',
  71. VIDEO_SHARE: '视频课',
  72. VIP_SHARE: '小酷Ai会员',
  73. MUSIC_SHARE: '曲谱',
  74. ALBUM_SHARE: '专辑',
  75. MALL_SHARE: '商品',
  76. ACTI_REGIST_SHARE: '活动报名'
  77. },
  78. actionType: false
  79. }
  80. },
  81. async mounted() {
  82. try {
  83. const res = await request.post(
  84. '/api-teacher/userAccount/accountShareTotal',
  85. {}
  86. )
  87. this.allAmount = res.data || {}
  88. this.getList()
  89. } catch {
  90. //
  91. }
  92. },
  93. methods: {
  94. async getList() {
  95. try {
  96. const params = this.params
  97. const res = await request.post('/api-teacher/userAccount/sharePage', {
  98. data: {
  99. ...params
  100. }
  101. })
  102. this.loading = false
  103. const result = res.data || {}
  104. // 处理重复请求数据
  105. if (this.list.length > 0 && result.pageNo === 1) {
  106. return
  107. }
  108. this.list = this.list.concat(result.rows || [])
  109. this.finished = result.pageNo >= result.totalPage
  110. this.params.page = result.pageNo + 1
  111. this.dataShow = this.list.length > 0
  112. } catch {
  113. this.dataShow = false
  114. this.finished = true
  115. }
  116. },
  117. onSelect(item: any) {
  118. console.log(item)
  119. this.params.bizType = item.value
  120. this.onSearch()
  121. },
  122. onSearch() {
  123. this.dataShow = true
  124. this.loading = false
  125. this.finished = false
  126. this.list = []
  127. this.params.page = 1
  128. this.getList()
  129. },
  130. onSearchStr(name: string) {
  131. console.log(name)
  132. this.params.username = name
  133. this.onSearch()
  134. },
  135. onConfirm(item: any) {
  136. console.log(item)
  137. this.params.searchDate = dayjs(item).format('YYYY-MM')
  138. this.timeStatus = false
  139. this.onSearch()
  140. },
  141. onTips(index: number, type = 'center' as any) {
  142. const template = [
  143. '累计奖励是您成功分享酷乐秀平台产品所获得的总收益',
  144. '当您分享酷乐秀平台产品,学生成功购买后获得预计收益,该收益还未进入您的账户,暂时无法结算\n入账规则:学生成功购买后2天入账',
  145. '您成功分享酷乐秀平台产品且已经入账的收益金额',
  146. '直播课成课失败或商品退货会造成退费'
  147. ]
  148. Dialog.alert({
  149. title: '提示',
  150. message: template[index],
  151. messageAlign: type,
  152. confirmButtonColor: 'var(--van-primary)'
  153. })
  154. }
  155. },
  156. render() {
  157. return (
  158. <div style={{ overflow: 'hidden' }}>
  159. <ColHeader />
  160. <div class={styles.allNumber}>
  161. {/* <img
  162. src={tipBg}
  163. class={styles.tips}
  164. onClick={() => {
  165. this.$router.push('/extendPlanDetail')
  166. }}
  167. /> */}
  168. <Cell
  169. class={styles.cell}
  170. v-slots={{
  171. title: () => (
  172. <div class={[styles.title, 'van-hairline--bottom']}>
  173. <Row>
  174. <Col
  175. onClick={() => {
  176. this.onTips(0)
  177. }}
  178. >
  179. <div class={styles.price}>
  180. {this.allAmount.totalAmount}
  181. <span>元</span>
  182. </div>
  183. <p style={{ display: 'flex', alignItems: 'center' }}>
  184. 累计奖励
  185. <Icon
  186. name={getAssetsHomeFile('info-o.png')}
  187. size="13"
  188. style={{ paddingLeft: '3px' }}
  189. />
  190. </p>
  191. </Col>
  192. <Col
  193. onClick={() => {
  194. this.onTips(1, 'left')
  195. }}
  196. >
  197. <div class={styles.price}>
  198. {this.allAmount.waitAmount}
  199. <span>元</span>
  200. </div>
  201. <p style={{ display: 'flex', alignItems: 'center' }}>
  202. 待入账
  203. <Icon
  204. name={getAssetsHomeFile('info-o.png')}
  205. size="13"
  206. style={{ paddingLeft: '3px' }}
  207. />
  208. </p>
  209. </Col>
  210. <Col
  211. onClick={() => {
  212. this.onTips(2)
  213. }}
  214. >
  215. <div class={styles.price}>
  216. {this.allAmount.recordedAmount}
  217. <span>元</span>
  218. </div>
  219. <p style={{ display: 'flex', alignItems: 'center' }}>
  220. 已入账
  221. <Icon
  222. name={getAssetsHomeFile('info-o.png')}
  223. size="13"
  224. style={{ paddingLeft: '3px' }}
  225. />
  226. </p>
  227. </Col>
  228. <Col
  229. onClick={() => {
  230. this.onTips(3)
  231. }}
  232. >
  233. <div class={styles.price}>
  234. {this.allAmount.cancelAmount}
  235. <span>元</span>
  236. </div>
  237. <p style={{ display: 'flex', alignItems: 'center' }}>
  238. 已退费
  239. <Icon
  240. name={getAssetsHomeFile('info-o.png')}
  241. size="13"
  242. style={{ paddingLeft: '3px' }}
  243. />
  244. </p>
  245. </Col>
  246. </Row>
  247. </div>
  248. ),
  249. label: () => (
  250. <div class={styles.label}>
  251. <img src={fly} />
  252. <span>累计推广学员 {this.allAmount.studentNum} 人</span>
  253. </div>
  254. )
  255. }}
  256. ></Cell>
  257. </div>
  258. <ColSearch
  259. background="transparent"
  260. inputBackground="white"
  261. placeholder="请输入学员姓名"
  262. onSearch={this.onSearchStr}
  263. />
  264. <div class={styles.search}>
  265. <div
  266. class={styles.search_item}
  267. onClick={() => (this.timeStatus = true)}
  268. >
  269. {dayjs(this.currentDate).format('YYYY年MM月')}{' '}
  270. <Icon name="arrow-down" size={12} />
  271. </div>
  272. <div
  273. class={styles.search_item}
  274. onClick={() => (this.actionType = true)}
  275. >
  276. {this.params.bizType
  277. ? this.actionsType[this.params.bizType]
  278. : '全部推广'}
  279. <Icon name="arrow-down" size={12} />
  280. </div>
  281. </div>
  282. {this.dataShow ? (
  283. <List
  284. v-model:loading={this.loading}
  285. finished={this.finished}
  286. finishedText=" "
  287. class={[styles.liveList, 'mb12']}
  288. onLoad={this.getList}
  289. immediateCheck={false}
  290. >
  291. {this.list.map((item: any) => (
  292. <CellGroup class={styles.cellGroup}>
  293. <Cell
  294. v-slots={{
  295. icon: () => (
  296. <div class={styles.courseImg}>
  297. <img src={getAssetsHomeFile(`${item.bizType}.png`)} />
  298. </div>
  299. ),
  300. title: () => (
  301. <div class={styles.crouseTitle}>
  302. <div class={styles.title}>{item.bizName}</div>
  303. <div class={styles.timer}>
  304. <Image src={iconTime} />
  305. <span>{item.updateTime}</span>
  306. </div>
  307. </div>
  308. ),
  309. value: () => (
  310. <div class={styles.cursePrice}>¥{item.transAmount}</div>
  311. )
  312. }}
  313. />
  314. <Cell
  315. v-slots={{
  316. title: () => (
  317. <div class={styles.userInfo}>
  318. <Image
  319. src={item.buyUserAvatar || iconStudent}
  320. class={styles.userLogo}
  321. />
  322. <span>{item.buyUserName}</span>
  323. </div>
  324. ),
  325. value: () => (
  326. <div
  327. class={[
  328. styles.status,
  329. item.postStatus && styles.active
  330. ]}
  331. >
  332. {postStatus[item.postStatus]}
  333. </div>
  334. )
  335. }}
  336. />
  337. </CellGroup>
  338. ))}
  339. </List>
  340. ) : (
  341. <ColResult btnStatus={false} classImgSize="SMALL" tips="暂无推广" />
  342. )}
  343. <ActionSheet
  344. v-model:show={this.actionType}
  345. actions={this.actions}
  346. onSelect={this.onSelect}
  347. cancel-text="取消"
  348. close-on-click-action
  349. onCancel={() => (this.actionType = false)}
  350. />
  351. <Popup
  352. v-model:show={this.timeStatus}
  353. position="bottom"
  354. round
  355. closeOnPopstate
  356. >
  357. <DatetimePicker
  358. type="year-month"
  359. v-model={this.currentDate}
  360. formatter={formatterDate}
  361. onCancel={() => {
  362. this.timeStatus = false
  363. }}
  364. onConfirm={this.onConfirm}
  365. />
  366. </Popup>
  367. </div>
  368. )
  369. }
  370. })