watchLog.vue 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="100px">
  4. <el-form-item label="看课方式" prop="sendType">
  5. <el-select v-model="queryParams.sendType" placeholder="选择看课方式" clearable size="small" @change="handleSendTypeChange">
  6. <el-option
  7. v-for="dict in sendTypeOptions"
  8. :key="dict.dictValue"
  9. :label="dict.dictLabel"
  10. :value="dict.dictValue"
  11. />
  12. </el-select>
  13. </el-form-item>
  14. <!-- <el-form-item label="项目" prop="project">-->
  15. <!-- <el-select v-model="queryParams.project" placeholder="请选择项目" clearable size="small" >-->
  16. <!-- <el-option-->
  17. <!-- v-for="item in projectOptions"-->
  18. <!-- :key="item.dictValue"-->
  19. <!-- :label="item.dictLabel"-->
  20. <!-- :value="item.dictValue"-->
  21. <!-- />-->
  22. <!-- </el-select>-->
  23. <!-- </el-form-item>-->
  24. <el-form-item label="企微账号" prop="qwUserId" v-if="queryParams.sendType == 2">
  25. <el-select v-model="queryParams.qwUserId" placeholder="企微账号" clearable size="small"
  26. @change="updateQwuser()">
  27. <el-option
  28. v-for="dict in myQwUserList"
  29. :key="dict.dictValue"
  30. :label="dict.dictLabel + '('+dict.corpName+')'"
  31. :value="dict.dictValue"
  32. />
  33. </el-select>
  34. </el-form-item>
  35. <el-form-item label="客户ID" prop="qwExternalContactId" v-if="queryParams.sendType == 2">
  36. <el-input
  37. v-model="queryParams.qwExternalContactId"
  38. placeholder="请输入客户ID"
  39. clearable
  40. size="small"
  41. @keyup.enter.native="handleQuery"
  42. />
  43. </el-form-item>
  44. <el-form-item label="会员ID" prop="userId" v-if="queryParams.sendType == 1">
  45. <el-input
  46. v-model="queryParams.userId"
  47. placeholder="请输入会员ID"
  48. clearable
  49. size="small"
  50. @keyup.enter.native="handleQuery"
  51. />
  52. </el-form-item>
  53. <el-form-item label="会员昵称" prop="nickName" v-if="queryParams.sendType == 1">
  54. <el-input
  55. v-model="queryParams.nickName"
  56. placeholder="请输入会员昵称"
  57. clearable
  58. size="small"
  59. @keyup.enter.native="handleQuery"
  60. />
  61. </el-form-item>
  62. <el-form-item label="企微客户昵称" prop="nickName" v-if="queryParams.sendType == 2">
  63. <el-input
  64. v-model="queryParams.externalUserName"
  65. placeholder="请输入企微客户昵称"
  66. clearable
  67. size="small"
  68. @keyup.enter.native="handleQuery"
  69. />
  70. </el-form-item>
  71. <el-form-item label="课程" prop="courseId">
  72. <el-select filterable v-model="queryParams.courseId" placeholder="请选择课程" clearable size="small"
  73. @change="courseChange(queryParams.courseId)">
  74. <el-option
  75. v-for="dict in courseLists"
  76. :key="dict.dictValue"
  77. :label="dict.dictLabel"
  78. :value="dict.dictValue"
  79. />
  80. </el-select>
  81. </el-form-item>
  82. <el-form-item label="小节" prop="videoId">
  83. <el-select filterable v-model="queryParams.videoId" placeholder="请选择小节" clearable size="small">
  84. <el-option
  85. v-for="dict in videoList"
  86. :key="dict.dictValue"
  87. :label="dict.dictLabel"
  88. :value="dict.dictValue"
  89. />
  90. </el-select>
  91. </el-form-item>
  92. <!-- sop名称 -->
  93. <el-form-item label="SOP名称" prop="sopId" v-if="queryParams.sendType == 2">
  94. <el-autocomplete
  95. v-model="sopSearchText"
  96. :fetch-suggestions="querySopAsync"
  97. placeholder="请输入SOP名称"
  98. clearable
  99. size="small"
  100. style="width: 200px"
  101. @select="handleSopSelect"
  102. @clear="handleSopClear"
  103. :trigger-on-focus="false"
  104. >
  105. <template slot-scope="{ item }">
  106. <div class="sop-item">
  107. <span class="sop-name">{{ item.name }}</span>
  108. </div>
  109. </template>
  110. </el-autocomplete>
  111. </el-form-item>
  112. <!-- 营期时间 -->
  113. <!-- <el-form-item label="营期时间" prop="scheduleTime">
  114. <el-input
  115. v-model="scheduleTimeText"
  116. placeholder="请选择营期时间"
  117. readonly
  118. @click.native="showScheduleCalendar = true"
  119. />
  120. <calendar
  121. v-model="scheduleTime"
  122. mode="during"
  123. :show.sync="showScheduleCalendar"
  124. @change="handleScheduleTimeChange"
  125. :key="scheduleCalendarKey"
  126. />
  127. </el-form-item> -->
  128. <el-form-item label="营期时间" prop="scheduleTime">
  129. <el-date-picker
  130. v-model="scheduleTimeText"
  131. type="daterange"
  132. range-separator="至"
  133. start-placeholder="开始日期"
  134. end-placeholder="结束日期"
  135. value-format="yyyy-MM-dd"
  136. style="width: 240px"
  137. @change="handleScheduleTimeChange"
  138. />
  139. </el-form-item>
  140. <!-- 创建时间 -->
  141. <!-- <el-form-item label="创建时间" prop="createTime">
  142. <el-input
  143. v-model="createTimeText"
  144. placeholder="请选择创建时间"
  145. readonly
  146. @click.native="showCreateCalendar = true"
  147. />
  148. <calendar
  149. v-model="createTime"
  150. mode="during"
  151. :show.sync="showCreateCalendar"
  152. @change="createChange"
  153. :key="createCalendarKey"
  154. />
  155. </el-form-item> -->
  156. <el-form-item label="创建时间" prop="createTime">
  157. <el-date-picker
  158. v-model="createTimeText"
  159. type="datetimerange"
  160. range-separator="至"
  161. start-placeholder="开始日期"
  162. end-placeholder="结束日期"
  163. value-format="yyyy-MM-dd HH:mm:ss"
  164. @change="createChange"
  165. :default-time="['00:00:00', '23:59:59']"
  166. />
  167. </el-form-item>
  168. <!-- 最新更新时间 -->
  169. <!-- <el-form-item label="最新更新时间" prop="updateTime">
  170. <el-input
  171. v-model="updateTimeText"
  172. placeholder="请选择更新时间"
  173. readonly
  174. @click.native="showUpdateCalendar = true"
  175. />
  176. <calendar
  177. v-model="updateTime"
  178. mode="during"
  179. :show.sync="showUpdateCalendar"
  180. @change="updateChange"
  181. :key="updateCalendarKey"
  182. />
  183. </el-form-item> -->
  184. <el-form-item label="最新更新时间" prop="updateTime">
  185. <el-date-picker
  186. v-model="updateTimeText"
  187. type="daterange"
  188. range-separator="至"
  189. start-placeholder="开始日期"
  190. end-placeholder="结束日期"
  191. value-format="yyyy-MM-dd"
  192. style="width: 240px"
  193. @change="updateChange"
  194. />
  195. </el-form-item>
  196. <!-- 进线时间 -->
  197. <!-- <el-form-item label="进线时间" prop="qecCreateTime">
  198. <el-input
  199. v-model="qecCreateTimeText"
  200. placeholder="请选择进线时间"
  201. readonly
  202. @click.native="showQecCalendar = true"
  203. />
  204. <calendar
  205. v-model="qecCreateTime"
  206. mode="during"
  207. :show.sync="showQecCalendar"
  208. @change="qecCreateTimeChange"
  209. :key="qecCalendarKey"
  210. />
  211. </el-form-item> -->
  212. <el-form-item label="进线时间" prop="qecCreateTime">
  213. <el-date-picker
  214. v-model="qecCreateTimeText"
  215. type="daterange"
  216. range-separator="至"
  217. start-placeholder="开始日期"
  218. end-placeholder="结束日期"
  219. value-format="yyyy-MM-dd"
  220. style="width: 240px"
  221. @change="qecCreateTimeChange"
  222. />
  223. </el-form-item>
  224. <el-form-item label="营期课程时间" prop="periodTime" v-if="queryParams.sendType==1">
  225. <el-date-picker
  226. v-model="periodTimeText"
  227. type="datetimerange"
  228. align="right"
  229. unlink-panels
  230. value-format="yyyy-MM-dd HH:mm:ss"
  231. range-separator="至"
  232. start-placeholder="开始日期"
  233. end-placeholder="结束日期"
  234. :picker-options="pickerOptions"
  235. @change="qecPeriodTimeChange"
  236. :default-time="['00:00:00', '23:59:59']">
  237. </el-date-picker>
  238. </el-form-item>
  239. <!-- <el-form-item label="是否注册" prop="isVip">-->
  240. <!-- <el-select-->
  241. <!-- filterable-->
  242. <!-- v-model="queryParams.isVip"-->
  243. <!-- placeholder="请选择是否注册"-->
  244. <!-- clearable size="small">-->
  245. <!-- <el-option-->
  246. <!-- v-for="dict in isVipList"-->
  247. <!-- :key="dict.dictValue"-->
  248. <!-- :label="dict.dictLabel"-->
  249. <!-- :value="dict.dictValue"-->
  250. <!-- />-->
  251. <!-- </el-select>-->
  252. <!-- </el-form-item>-->
  253. <el-form-item>
  254. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  255. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  256. </el-form-item>
  257. </el-form>
  258. <el-row :gutter="10" class="mb8">
  259. <el-col :span="1.5">
  260. <el-button
  261. type="warning"
  262. plain
  263. icon="el-icon-download"
  264. size="mini"
  265. :loading="exportLoading"
  266. @click="handleExport"
  267. v-hasPermi="['course:courseWatchLog:myExport']"
  268. >导出
  269. </el-button>
  270. <el-col :span="1.5" v-if="queryParams.sendType == 2">
  271. <el-button
  272. type="primary"
  273. plain
  274. size="mini"
  275. @click="addUserTag"
  276. v-hasPermi="['qw:externalContact:addTag']"
  277. >批量添加标签</el-button>
  278. </el-col>
  279. <el-col :span="1.5" v-if="queryParams.sendType == 2">
  280. <el-button
  281. type="primary"
  282. plain
  283. size="mini"
  284. @click="delUserTag"
  285. v-hasPermi="['qw:externalContact:delTag']"
  286. >批量移除标签</el-button>
  287. </el-col>
  288. </el-col>
  289. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  290. </el-row>
  291. <el-tabs type="card" v-model="activeName" @tab-click="handleClickX">
  292. <el-tab-pane label="全部" name="00"></el-tab-pane>
  293. <el-tab-pane v-for="(item,index) in logTypeOptions" :label="item.dictLabel" :name="item.dictValue"></el-tab-pane>
  294. </el-tabs>
  295. <!-- <el-table border v-loading="loading" :data="courseWatchLogList" @selection-change="handleSelectionChange">-->
  296. <el-table
  297. border
  298. v-loading="loading"
  299. :data="courseWatchLogList"
  300. @selection-change="handleSelectionChange"
  301. :key="tableKey">
  302. <el-table-column type="selection" width="55" align="center"/>
  303. <el-table-column label="记录编号" align="center" prop="logId"/>
  304. <el-table-column label="客户昵称" align="center" prop="externalUserName" v-if="queryParams.sendType == 2"/>
  305. &lt;!&ndash;
  306. <el-table-column label="会员ID" align="center" prop="userId" v-if="queryParams.sendType == 1"/>
  307. &ndash;&gt;
  308. <!-- <el-table-column label="客户头像" align="center" prop="externalUserAvatar" v-if="queryParams.sendType == 2">-->
  309. <!-- <template slot-scope="scope">-->
  310. <!-- <el-popover-->
  311. <!-- placement="right"-->
  312. <!-- title=""-->
  313. <!-- trigger="hover">-->
  314. <!-- <img slot="reference" :src="scope.row.externalUserAvatar" style="width: 50px;height: 50px">-->
  315. <!-- <img :src="scope.row.externalUserAvatar" style="max-width: 200px;max-height: 200px">-->
  316. <!-- </el-popover>-->
  317. <!-- </template>-->
  318. <!-- </el-table-column>-->
  319. <el-table-column label="头像" align="center">
  320. <template slot-scope="scope">
  321. <img
  322. v-if="queryParams.sendType == 1"
  323. :src="scope.row.fsAvatar"
  324. style="width:50px;height:50px"
  325. />
  326. <img
  327. v-else-if="queryParams.sendType == 2"
  328. :src="scope.row.externalUserAvatar"
  329. style="width:50px;height:50px"
  330. />
  331. </template>
  332. </el-table-column>
  333. <el-table-column label="用户昵称" align="center" v-if="queryParams.sendType == 1">
  334. <template slot-scope="scope">
  335. {{ queryParams.sendType=='1' ? scope.row.fsNickName : scope.row.externalUserName }}
  336. </template>
  337. </el-table-column>
  338. <el-table-column label="头像" align="center" v-if="queryParams.sendType == 1">
  339. <template slot-scope="scope">
  340. <img v-if="queryParams.sendType=='1'" :src="scope.row.fsAvatar" style="width:50px;height:50px" />
  341. <img v-else :src="scope.row.externalUserAvatar" style="width:50px;height:50px" />
  342. </template>
  343. </el-table-column>
  344. <el-table-column label="课程名称" align="center" prop="courseName"/>
  345. <el-table-column label="小节名称" align="center" prop="videoName"/>
  346. <el-table-column label="记录类型" align="center" prop="logType">
  347. <template slot-scope="scope">
  348. <dict-tag :options="logTypeOptions" :value="scope.row.logType"/>
  349. </template>
  350. </el-table-column>
  351. <el-table-column label="播放时长" align="center" prop="duration"/>
  352. <!-- <el-table-column label="所属销售" align="center" prop="companyUserName"/>-->
  353. <!-- <el-table-column label="所属公司" align="center" prop="companyName"/>-->
  354. <!-- <el-table-column label="企微员工名称" align="center" prop="qwUserName"/>-->
  355. <!-- 所属企微列 -->
  356. <el-table-column
  357. label="所属企微"
  358. align="center"
  359. prop="qwUserName"
  360. v-if="queryParams.sendType == 2"
  361. />
  362. <!-- <el-table-column label="所属发送方式" align="center" prop="sendType"/>-->
  363. <el-table-column label="创建时间" align="center" prop="createTime" width="100px"/>
  364. <el-table-column label="更新时间" align="center" prop="updateTime" width="100px" />
  365. <el-table-column label="完课时间" align="center" prop="finishTime" width="100px" />
  366. <el-table-column label="营期时间" align="center" prop="campPeriodTime" />
  367. <el-table-column label="是否领奖" align="center" prop="rewardType" >
  368. <template slot-scope="scope">
  369. <el-tag
  370. :type="scope.row.rewardType ? 'success' : 'info'"
  371. effect="plain"
  372. >
  373. {{ scope.row.rewardType ? '已领取' : '未领取' }}
  374. </el-tag>
  375. </template>
  376. </el-table-column>
  377. <el-table-column
  378. fixed="right"
  379. label="操作"
  380. width="100">
  381. <template slot-scope="scope">
  382. <el-button @click="openAnswerLogFun(scope.row)" type="text" size="small">答题记录</el-button>
  383. <el-button @click="openRedLogFun(scope.row)" type="text" size="small">红包记录</el-button>
  384. </template>
  385. </el-table-column>
  386. </el-table>
  387. <pagination
  388. v-show="total>0"
  389. :total="total"
  390. :page.sync="queryParams.pageNum"
  391. :limit.sync="queryParams.pageSize"
  392. @pagination="getList"
  393. />
  394. <el-drawer title="答题记录" :visible.sync="openAnswerLog" size="70%" append-to-body>
  395. <el-table border v-loading="" :data="answerLogsList">
  396. <el-table-column label="会员用户" align="center" prop="userName">
  397. <template slot-scope="scope">
  398. <div style="display: flex;white-space: nowrap">
  399. <div style="margin: auto">
  400. {{ scope.row.userName }}
  401. </div>
  402. <el-popover
  403. placement="right"
  404. title=""
  405. trigger="hover">
  406. <img slot="reference" :src="scope.row.fsAvatar" style="width: 30px;height: 30px">
  407. <img :src="scope.row.fsAvatar" style="max-width: 200px;max-height: 200px">
  408. </el-popover>
  409. </div>
  410. </template>
  411. </el-table-column>
  412. <el-table-column label="课程名称" align="center" prop="courseName"/>
  413. <el-table-column label="小节名称" align="center" prop="videoName"/>
  414. <el-table-column label="是否全部正确" align="center" prop="isRight">
  415. <template slot-scope="scope">
  416. <dict-tag :options="sysCompanyOr" :value="scope.row.isRight"></dict-tag>
  417. </template>
  418. </el-table-column>
  419. <el-table-column label="销售名称" align="center" prop="companyUserName"/>
  420. <el-table-column label="企微员工名称" align="center" prop="qwUserName"/>
  421. <el-table-column label="公司名称" align="center" prop="companyName"/>
  422. <el-table-column label="创建时间" align="center" prop="createTime"/>
  423. </el-table>
  424. <pagination
  425. v-show="answerLogTotal>0"
  426. :total="answerLogTotal"
  427. :page.sync="answerLogQueryParams.pageNum"
  428. :limit.sync="answerLogQueryParams.pageSize"
  429. @pagination="answerLogList"
  430. />
  431. </el-drawer>
  432. <el-drawer title="红包记录" :visible.sync="openRedLog" size="70%" append-to-body>
  433. <el-table border v-loading="" :data="redLogsList">
  434. <el-table-column type="selection" width="55" align="center" />
  435. <el-table-column label="记录编号" align="center" prop="logId" />
  436. <el-table-column label="批次单号" align="center" prop="outBatchNo" />
  437. <el-table-column label="课程名称" align="center" prop="courseId" >
  438. <template slot-scope="scope">
  439. <span prop="status" v-for="(item, index) in courseLists" v-if="scope.row.courseId==item.dictValue">{{item.dictLabel}}</span>
  440. </template>
  441. </el-table-column>
  442. <el-table-column label="小节名称" align="center" prop="title" />
  443. <!-- <el-table-column label="会员id" align="center" prop="userId" />-->
  444. <el-table-column label="会员用户" align="center" prop="fsNickName">
  445. <template slot-scope="scope">
  446. <div style="display: flex;white-space: nowrap">
  447. <div style="margin: auto">
  448. {{scope.row.fsNickName}}
  449. </div>
  450. <el-popover
  451. placement="right"
  452. title=""
  453. trigger="hover">
  454. <img slot="reference" :src="scope.row.fsAvatar" style="width: 30px;height: 30px">
  455. <img :src="scope.row.fsAvatar" style="max-width: 200px;max-height: 200px">
  456. </el-popover>
  457. </div>
  458. </template>
  459. </el-table-column>
  460. <!-- <el-table-column label="会员电话" align="center" prop="phone" />-->
  461. <!-- <el-table-column label="所属销售" align="center" prop="companyUserName" />-->
  462. <!-- <el-table-column label="所属公司" align="center" prop="companyName" />-->
  463. <el-table-column label="转帐金额" align="center" prop="amount" />
  464. <el-table-column label="状态" align="center" prop="status" >
  465. <template slot-scope="scope">
  466. <el-tag>
  467. {{
  468. scope.row.status === 0 ? "发送中" :
  469. scope.row.status === 2 ? "待补发" :
  470. "已完成"
  471. }}
  472. </el-tag>
  473. </template>
  474. </el-table-column>
  475. <el-table-column label="所属企微" align="center" prop="qwUserName" />
  476. <el-table-column label="创建时间" align="center" prop="createTime" />
  477. </el-table>
  478. <pagination
  479. v-show="redLogTotal>0"
  480. :total="redLogTotal"
  481. :page.sync="redLogQueryParams.pageNum"
  482. :limit.sync="redLogQueryParams.pageSize"
  483. @pagination="redLogList"
  484. />
  485. </el-drawer>
  486. <el-dialog title="批量添加标签" :visible.sync="tagOpen" width="800px" append-to-body>
  487. <div>搜索标签:
  488. <el-input v-model="tagChange.tagName" placeholder="请输入标签名称" clearable size="small" style="width: 200px;margin-right: 10px" />
  489. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleSearchTags(tagChange.tagName)">搜索</el-button>
  490. <el-button type="primary" icon="el-icon-plus" size="mini" @click="cancelSearchTags">重置</el-button>
  491. </div>
  492. <el-form ref="form" :model="addTagFormByWatch" label-width="80px">
  493. <div v-for="item in tagGroupList" :key="item.id" >
  494. <div style="font-size: 20px;margin-top: 20px;margin-bottom: 20px;">
  495. <span class="name-background">{{ item.name }}</span>
  496. </div>
  497. <!-- 添加外层滚动容器 -->
  498. <div class="scroll-wrapper">
  499. <div class="tag-container">
  500. <a
  501. v-for="tagItem in item.tag"
  502. class="tag-box"
  503. @click="tagSelection(tagItem)"
  504. :class="{ 'tag-selected': tagItem.isSelected }"
  505. >
  506. {{ tagItem.name }}
  507. </a>
  508. </div>
  509. </div>
  510. </div>
  511. </el-form>
  512. <pagination
  513. v-show="tagTotal>0"
  514. :total="tagTotal"
  515. :page.sync="queryTagParams.pageNum"
  516. :limit.sync="queryTagParams.pageSize"
  517. @pagination="getPageListTagGroup"
  518. />
  519. <div slot="footer" class="dialog-footer">
  520. <el-button type="primary" @click="addTagSubmitForm()">确 定</el-button>
  521. <el-button @click="addTagCancel">取 消</el-button>
  522. </div>
  523. </el-dialog>
  524. <el-dialog title="批量移除标签" :visible.sync="tagDelOpen" width="800px" append-to-body>
  525. <div>搜索标签:
  526. <el-input v-model="tagChange.tagName" placeholder="请输入标签名称" clearable size="small" style="width: 200px;margin-right: 10px" />
  527. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleSearchTags(tagChange.tagName)">搜索</el-button>
  528. <el-button type="primary" icon="el-icon-plus" size="mini" @click="cancelSearchTags">重置</el-button>
  529. </div>
  530. <el-form ref="form" :model="addTagFormByWatch" label-width="80px">
  531. <div v-for="item in tagGroupList" :key="item.id" >
  532. <div style="font-size: 20px;margin-top: 20px;margin-bottom: 20px;">
  533. <span class="name-background">{{ item.name }}</span>
  534. </div>
  535. <!-- 添加外层滚动容器 -->
  536. <div class="scroll-wrapper">
  537. <div class="tag-container">
  538. <a
  539. v-for="tagItem in item.tag"
  540. class="tag-box"
  541. @click="tagSelection(tagItem)"
  542. :class="{ 'tag-selected': tagItem.isSelected }"
  543. >
  544. {{ tagItem.name }}
  545. </a>
  546. </div>
  547. </div>
  548. </div>
  549. </el-form>
  550. <pagination
  551. v-show="tagTotal>0"
  552. :total="tagTotal"
  553. :page.sync="queryTagParams.pageNum"
  554. :limit.sync="queryTagParams.pageSize"
  555. @pagination="getPageListTagGroup"
  556. />
  557. <div slot="footer" class="dialog-footer">
  558. <el-button type="primary" @click="tagDelSubmitForm()">确 定</el-button>
  559. <el-button @click="DelTagCancel">取 消</el-button>
  560. </div>
  561. </el-dialog>
  562. <el-dialog
  563. :title="resultTitle"
  564. :visible.sync="resultDialogVisible"
  565. width="50%"
  566. custom-class="feedback-dialog"
  567. >
  568. <pre style="white-space: pre-wrap; font-family: inherit;">{{ resultMessage }}</pre>
  569. <span slot="footer" class="dialog-footer">
  570. <el-button @click="resultDialogVisible = false">关闭</el-button>
  571. </span>
  572. </el-dialog>
  573. </div>
  574. </template>
  575. <script>
  576. import {
  577. addCourseWatchLog,
  578. delCourseWatchLog,
  579. exportCourseWatchLog,
  580. getCourseWatchLog, myExportCourseWatchLog,
  581. myListCourseWatchLog,
  582. updateCourseWatchLog
  583. } from "@/api/course/courseWatchLog";
  584. import {courseList, myListCourseRedPacketLog, videoList} from '@/api/course/courseRedPacketLog'
  585. import {myListLogs} from "@/api/course/courseAnswerlogs";
  586. import {getMyQwUserList} from "@/api/qw/user";
  587. import {searchTags} from "../../../api/qw/tag";
  588. import {addTagByWatch, delTagByWatch} from "../../../api/qw/externalContact";
  589. import {allListTagGroup} from "../../../api/qw/tagGroup";
  590. import Vue from 'vue'
  591. import Calendar from 'vue-mobile-calendar'
  592. import {infoSop} from "@/api/qw/sop";
  593. Vue.use(Calendar)
  594. export default {
  595. name: "CourseWatchLog",
  596. data() {
  597. return {
  598. tableKey: 0,
  599. // 日历 key 控制刷新
  600. scheduleCalendarKey: 0,
  601. createCalendarKey: 0,
  602. updateCalendarKey: 0,
  603. qecCalendarKey: 0,
  604. periodTimeKey: 0,
  605. createTimeText: '',
  606. scheduleTimeText: '', // 新增
  607. updateTimeText: '', // 新增
  608. qecCreateTimeText: '', // 新增
  609. periodTimeText: '', // 营期课程时间
  610. scheduleTime: [], // 改为数组
  611. createTime: [], // 改为数组
  612. updateTime: [], // 改为数组
  613. qecCreateTime: [], // 改为数组
  614. periodTime: [], // 改为数组
  615. // 控制日历显隐
  616. showScheduleCalendar: false,
  617. showCreateCalendar: false,
  618. showUpdateCalendar: false,
  619. showQecCalendar: false,
  620. resultDialogVisible: false,
  621. resultMessage: '',
  622. resultTitle:'',
  623. activeName:"2",
  624. pickerOptions: {
  625. disabledDate(time) {
  626. // 获取13天前的日期(加上今天就是14天)
  627. const sixDaysAgo = new Date();
  628. sixDaysAgo.setDate(sixDaysAgo.getDate() - 13);
  629. sixDaysAgo.setHours(0, 0, 0, 0);
  630. // 获取明天的日期(不包括今天)
  631. const tomorrow = new Date();
  632. tomorrow.setDate(tomorrow.getDate() + 1);
  633. tomorrow.setHours(0, 0, 0, 0);
  634. return time.getTime() < sixDaysAgo.getTime() || time.getTime() >= tomorrow.getTime();
  635. }
  636. },
  637. courseLists: [],
  638. videoList: [],
  639. myQwUserList: [],
  640. logTypeOptions: [],
  641. // 遮罩层
  642. loading: true,
  643. // 导出遮罩层
  644. exportLoading: false,
  645. // 选中数组
  646. ids: [],
  647. // 非单个禁用
  648. single: true,
  649. // 非多个禁用
  650. multiple: true,
  651. // 显示搜索条件
  652. showSearch: true,
  653. sysCompanyOr: [],
  654. // 总条数
  655. total: 0,
  656. // 短链课程看课记录表格数据
  657. courseWatchLogList: [],
  658. openAnswerLog: false,
  659. loadingAnswerLog: true,
  660. answerLogsList: [],
  661. answerLogTotal: 0,
  662. answerLogQueryParams: {
  663. pageNum: 1,
  664. pageSize: 10,
  665. },
  666. projectOptions:[],
  667. sendTypeOptions:[{
  668. dictLabel:'会员',dictValue:'1'
  669. },
  670. {
  671. dictLabel:'企微',dictValue:'2'
  672. }
  673. ],
  674. openRedLog: false,
  675. loadingRedLog: true,
  676. redLogsList: [],
  677. redLogTotal: 0,
  678. redLogQueryParams: {
  679. pageNum: 1,
  680. pageSize: 10,
  681. },
  682. // 弹出层标题
  683. title: "",
  684. // 是否显示弹出层
  685. open: false,
  686. tagOpen:false,
  687. //标签弹窗选择
  688. tagChange:{
  689. open:false,
  690. index:null,
  691. },
  692. addTagFormByWatch:{
  693. logId:[],
  694. tagIds:[]
  695. },
  696. tagGroupList: [],
  697. tagTotal:0,
  698. tagDelOpen:false,
  699. queryTagParams:{
  700. pageNum: 1,
  701. pageSize: 5,
  702. total:0,
  703. name:null,
  704. corpId:null,
  705. },
  706. isVipList: [
  707. { dictLabel: '是', dictValue: 1 },
  708. { dictLabel: '否', dictValue: 0 }
  709. ],
  710. // SOP搜索相关
  711. sopSearchText: '', // SOP搜索框显示的文本
  712. selectedSopId: null, // 选中的SOP ID
  713. // 查询参数
  714. queryParams: {
  715. pageNum: 1,
  716. project: null,
  717. pageSize: 10,
  718. userId: null,
  719. videoId: null,
  720. nickName: null,
  721. logType: 2,
  722. qwExternalContactId: null,
  723. externalUserName:null,
  724. duration: null,
  725. qwUserId: null,
  726. companyUserId: null,
  727. companyId: null,
  728. courseId: null,
  729. sTime: null,
  730. eTime: null,
  731. upSTime:null,
  732. upETime:null,
  733. qecSTime:null,
  734. qecETime:null,
  735. periodSTime:null,
  736. periodETime:null,
  737. scheduleStartTime: null,
  738. scheduleEndTime: null,
  739. sendType:process.env.VUE_APP_COURSE_DEFAULT,
  740. isVip: null,
  741. sopId: null, // sopId
  742. },
  743. // 表单参数
  744. form: {},
  745. // 表单校验
  746. rules: {}
  747. };
  748. },
  749. created() {
  750. courseList().then(response => {
  751. this.courseLists = response.list;
  752. });
  753. this.getList();
  754. this.getDicts("sys_course_watch_log_type_new").then(response => {
  755. this.logTypeOptions = response.data;
  756. });
  757. this.getDicts("sys_company_or").then(response => {
  758. this.sysCompanyOr = response.data;
  759. });
  760. getMyQwUserList().then(response => {
  761. this.myQwUserList = response.data;
  762. });
  763. this.getDicts("sys_course_project").then(response => {
  764. this.projectOptions = response.data;
  765. });
  766. },
  767. methods: {
  768. handleSendTypeChange() {
  769. // 重置相关参数
  770. this.queryParams.qwUserId = null;
  771. this.queryParams.qwExternalContactId = null;
  772. this.queryParams.userId = null;
  773. this.queryParams.nickName = null;
  774. this.queryParams.externalUserName = null;
  775. this.queryParams.corpId = null;
  776. this.queryParams.project = null;
  777. this.queryParams.courseId = null;
  778. this.queryParams.videoId = null;
  779. // 重置选择
  780. this.ids = [];
  781. this.courseWatchLogList = []; // 清空表格数据
  782. // 重置分页
  783. this.queryParams.pageNum = 1;
  784. // 强制重新渲染表格
  785. this.tableKey += 1;
  786. this.getList();
  787. },
  788. // 重置日历组件
  789. resetCalendars() {
  790. this.scheduleTime = [];
  791. this.createTime = [];
  792. this.updateTime = [];
  793. this.qecCreateTime = [];
  794. this.periodTime = [];
  795. this.scheduleTimeText = '';
  796. this.createTimeText = '';
  797. this.updateTimeText = '';
  798. this.qecCreateTimeText = '';
  799. this.periodTimeText = [];
  800. // 强制刷新日历组件
  801. this.scheduleCalendarKey++;
  802. this.createCalendarKey++;
  803. this.updateCalendarKey++;
  804. this.qecCalendarKey++;
  805. this.periodTimeKey++;
  806. },
  807. formatDateRange(dates) {
  808. if (!dates || dates.length < 2) return '';
  809. return dates.map(date => date.format('YYYY-MM-DD')).join(' ~ ');
  810. },
  811. courseChange(row) {
  812. this.queryParams.videoId = null;
  813. if (row === '') {
  814. this.videoList = [];
  815. return
  816. }
  817. videoList(row).then(response => {
  818. this.videoList = response.list
  819. });
  820. },
  821. updateQwuser() {
  822. for (const user of this.myQwUserList) {
  823. if (user.dictValue == this.queryParams.qwUserId) {
  824. this.queryParams.corpId = user.corpId;
  825. break;
  826. }
  827. }
  828. this.getList();
  829. },
  830. handleClickX(tab) {
  831. this.activeName=tab.name;
  832. if(tab.name=="00"){
  833. this.queryParams.logType=null;
  834. }else{
  835. this.queryParams.logType=tab.name;
  836. }
  837. this.getList()
  838. },
  839. // 营期时间
  840. handleScheduleTimeChange(scheduleTime) {
  841. if (scheduleTime && scheduleTime.length >= 2) {
  842. // this.scheduleTimeText = this.formatDateRange(scheduleTime);
  843. this.queryParams.scheduleStartTime = scheduleTime[0] || null;
  844. this.queryParams.scheduleEndTime = scheduleTime[1] || null;
  845. console.log(this.queryParams.scheduleStartTime)
  846. console.log(this.queryParams.scheduleEndTime)
  847. } else {
  848. this.scheduleTimeText = [];
  849. this.queryParams.scheduleStartTime = null;
  850. this.queryParams.scheduleEndTime = null;
  851. }
  852. },
  853. // 创建时间
  854. createChange(createTime) {
  855. if (createTime && createTime.length >= 2) {
  856. // this.createTimeText = this.formatDateRange(createTime);
  857. this.queryParams.sTime = this.formatDate(createTime[0]) || null;
  858. this.queryParams.eTime = this.formatDate(createTime[1]) || null;
  859. } else {
  860. this.createTimeText = [];
  861. this.queryParams.sTime = null;
  862. this.queryParams.eTime = null;
  863. }
  864. },
  865. // 更新时间
  866. updateChange(updateTime) {
  867. if (updateTime && updateTime.length >= 2) {
  868. // this.updateTimeText = this.formatDateRange(updateTime);
  869. this.queryParams.upSTime = updateTime[0] || null;
  870. this.queryParams.upETime = updateTime[1] || null;
  871. } else {
  872. this.updateTimeText = [];
  873. this.queryParams.upSTime = null;
  874. this.queryParams.upETime = null;
  875. }
  876. },
  877. // 进线时间
  878. qecCreateTimeChange(qecCreateTime) {
  879. if (qecCreateTime && qecCreateTime.length >= 2) {
  880. // 检查选择的日期范围是否超过7天(包括起始和结束日期)
  881. const startDate = new Date(qecCreateTime[0]);
  882. const endDate = new Date(qecCreateTime[1]);
  883. // 设置时间为当天开始,避免时间部分影响计算
  884. startDate.setHours(0, 0, 0, 0);
  885. endDate.setHours(0, 0, 0, 0);
  886. const timeDiff = Math.abs(endDate - startDate);
  887. const diffDays = Math.ceil(timeDiff / (1000 * 60 * 60 * 24));
  888. // 如果超过6天的范围(总共7天,包括起始日)
  889. if (diffDays > 6) {
  890. this.$message.error('进线时间选择范围不能超过7天');
  891. // 清空选择
  892. this.qecCreateTime = [];
  893. this.qecCreateTimeText = [];
  894. this.queryParams.qecSTime = null;
  895. this.queryParams.qecETime = null;
  896. this.qecCalendarKey++;
  897. return;
  898. }
  899. this.qecCreateTimeText = this.formatDateRange(qecCreateTime);
  900. this.queryParams.qecSTime = qecCreateTime[0] || null;
  901. this.queryParams.qecETime = qecCreateTime[1] || null;
  902. } else {
  903. this.qecCreateTimeText = [];
  904. this.queryParams.qecSTime = null;
  905. this.queryParams.qecETime = null;
  906. }
  907. },
  908. //营期课程时间
  909. qecPeriodTimeChange(periodTime){
  910. if (periodTime && periodTime.length >= 2) {
  911. // 检查选择的日期范围是否超过7天(包括起始和结束日期)
  912. const startDate = new Date(periodTime[0]);
  913. const endDate = new Date(periodTime[1]);
  914. // 设置时间为当天开始,避免时间部分影响计算
  915. startDate.setHours(0, 0, 0, 0);
  916. endDate.setHours(0, 0, 0, 0);
  917. const timeDiff = Math.abs(endDate - startDate);
  918. const diffDays = Math.ceil(timeDiff / (1000 * 60 * 60 * 24));
  919. // 如果超过6天的范围(总共7天,包括起始日)
  920. if (diffDays > 13) {
  921. this.$message.error('时间选择范围不能超过14天');
  922. // 清空选择
  923. this.periodTime = [];
  924. this.periodTimeText = [];
  925. this.queryParams.periodSTime = null;
  926. this.queryParams.periodETime = null;
  927. this.periodTimeKey++;
  928. return;
  929. }
  930. this.queryParams.periodSTime = this.formatDate(periodTime[0]) || null;
  931. this.queryParams.periodETime = this.formatDate(periodTime[1]) || null;
  932. } else {
  933. this.periodTimeText = '';
  934. this.queryParams.periodSTime = null;
  935. this.queryParams.periodETime = null;
  936. }
  937. },
  938. formatDate(date) {
  939. if (!date) return ''
  940. // 确保 date 是 Date 对象
  941. let dateObj = date
  942. if (typeof date === 'string') {
  943. dateObj = new Date(date)
  944. }
  945. // 如果转换失败,返回空字符串
  946. if (!(dateObj instanceof Date) || isNaN(dateObj.getTime())) {
  947. return ''
  948. }
  949. // 使用更安全的格式化方法
  950. const year = dateObj.getFullYear()
  951. const month = String(dateObj.getMonth() + 1).padStart(2, '0')
  952. const day = String(dateObj.getDate()).padStart(2, '0')
  953. const hours = String(dateObj.getHours()).padStart(2, '0')
  954. const minutes = String(dateObj.getMinutes()).padStart(2, '0')
  955. const seconds = String(dateObj.getSeconds()).padStart(2, '0')
  956. return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`
  957. },
  958. /** 查询短链课程看课记录列表 */
  959. getList() {
  960. this.loading = true;
  961. let param = JSON.parse(JSON.stringify(this.queryParams));
  962. if (param.logType == "10") {
  963. param.logType = null;
  964. }
  965. myListCourseWatchLog(param).then(response => {
  966. this.courseWatchLogList = response.rows;
  967. this.total = response.total;
  968. this.loading = false;
  969. });
  970. },
  971. // 取消按钮
  972. cancel() {
  973. this.open = false;
  974. this.reset();
  975. },
  976. // 表单重置
  977. reset() {
  978. this.form = {
  979. logId: null,
  980. userId: null,
  981. videoId: null,
  982. logType: null,
  983. createTime: null,
  984. updateTime: null,
  985. qwExternalContactId: null,
  986. externalUserName:null,
  987. duration: null,
  988. qwUserId: null,
  989. companyUserId: null,
  990. companyId: null,
  991. courseId: null,
  992. sTime:null,
  993. eTime:null,
  994. upSTime:null,
  995. upETime:null,
  996. qecSTime:null,
  997. qecETime:null,
  998. scheduleStartTime: null,
  999. scheduleEndTime: null,
  1000. };
  1001. // 统一重置日历组件
  1002. this.resetCalendars();
  1003. this.resetForm("form");
  1004. },
  1005. /** 搜索按钮操作 */
  1006. handleQuery() {
  1007. this.queryParams.pageNum = 1;
  1008. this.getList();
  1009. },
  1010. /** 重置按钮操作 */
  1011. resetQuery() {
  1012. this.resetForm("queryForm");
  1013. this.queryParams.sTime = null;
  1014. this.queryParams.eTime = null;
  1015. this.queryParams.project = null;
  1016. this.queryParams.upSTime = null;
  1017. this.queryParams.upETime = null;
  1018. this.queryParams.qecSTime = null;
  1019. this.queryParams.qecETime = null;
  1020. this.queryParams.periodSTime = null;
  1021. this.queryParams.periodDTime = null;
  1022. this.queryParams.scheduleStartTime = null;
  1023. this.queryParams.scheduleEndTime = null;
  1024. this.queryParams.sopId = null; // 重置SOP ID
  1025. this.queryParams.isVip = null; // 重置 isVip 状态
  1026. this.queryParams.qwUserId = null; // 重置 qwUserId
  1027. this.queryParams.externalUserName=null;
  1028. // 重置SOP搜索
  1029. this.handleSopClear();
  1030. // 统一重置日历组件
  1031. this.resetCalendars();
  1032. this.handleQuery();
  1033. },
  1034. // 多选框选中数据
  1035. handleSelectionChange(selection) {
  1036. this.ids = selection.map(item => item.logId)
  1037. this.single = selection.length !== 1
  1038. this.multiple = !selection.length
  1039. },
  1040. /** 新增按钮操作 */
  1041. handleAdd() {
  1042. this.reset();
  1043. this.open = true;
  1044. this.title = "添加短链课程看课记录";
  1045. },
  1046. /** 修改按钮操作 */
  1047. handleUpdate(row) {
  1048. this.reset();
  1049. const logId = row.logId || this.ids
  1050. getCourseWatchLog(logId).then(response => {
  1051. this.form = response.data;
  1052. this.open = true;
  1053. this.title = "修改短链课程看课记录";
  1054. });
  1055. },
  1056. /** 提交按钮 */
  1057. submitForm() {
  1058. this.$refs["form"].validate(valid => {
  1059. if (valid) {
  1060. if (this.form.logId != null) {
  1061. updateCourseWatchLog(this.form).then(response => {
  1062. this.msgSuccess("修改成功");
  1063. this.open = false;
  1064. this.getList();
  1065. });
  1066. } else {
  1067. addCourseWatchLog(this.form).then(response => {
  1068. this.msgSuccess("新增成功");
  1069. this.open = false;
  1070. this.getList();
  1071. });
  1072. }
  1073. }
  1074. });
  1075. },
  1076. /** 删除按钮操作 */
  1077. handleDelete(row) {
  1078. const logIds = row.logId || this.ids;
  1079. this.$confirm('是否确认删除短链课程看课记录编号为"' + logIds + '"的数据项?', "警告", {
  1080. confirmButtonText: "确定",
  1081. cancelButtonText: "取消",
  1082. type: "warning"
  1083. }).then(function () {
  1084. return delCourseWatchLog(logIds);
  1085. }).then(() => {
  1086. this.getList();
  1087. this.msgSuccess("删除成功");
  1088. }).catch(() => {
  1089. });
  1090. },
  1091. /** 导出按钮操作 */
  1092. handleExport() {
  1093. const queryParams = this.queryParams;
  1094. this.$confirm('是否确认导出所有短链课程看课记录数据项?', "警告", {
  1095. confirmButtonText: "确定",
  1096. cancelButtonText: "取消",
  1097. type: "warning"
  1098. }).then(() => {
  1099. this.exportLoading = true;
  1100. return myExportCourseWatchLog(queryParams);
  1101. }).then(response => {
  1102. this.download(response.msg);
  1103. this.exportLoading = false;
  1104. }).catch(() => {
  1105. });
  1106. },
  1107. openAnswerLogFun(row) {
  1108. this.openAnswerLog = true;
  1109. this.answerLogQueryParams.watchLogId = row.logId;
  1110. this.answerLogList();
  1111. },
  1112. answerLogList() {
  1113. this.loadingAnswerLog = true;
  1114. myListLogs(this.answerLogQueryParams).then(e => {
  1115. this.answerLogsList = e.rows;
  1116. this.answerLogTotal = e.total;
  1117. this.loadingAnswerLog = false;
  1118. })
  1119. },
  1120. openRedLogFun(row) {
  1121. this.openRedLog = true;
  1122. this.redLogQueryParams.watchLogId = row.logId;
  1123. this.redLogList();
  1124. },
  1125. redLogList() {
  1126. this.loadingRedLog = true;
  1127. console.info("-----watch",this.redLogQueryParams)
  1128. myListCourseRedPacketLog(this.redLogQueryParams).then(e => {
  1129. this.redLogsList = e.rows;
  1130. this.redLogTotal = e.total;
  1131. this.loadingRedLog = false;
  1132. })
  1133. },
  1134. addUserTag(){
  1135. if(this.ids==null||this.ids==""){
  1136. return this.$message('请选择需要添加标签的客户');
  1137. }
  1138. this.getPageListTagGroup();
  1139. setTimeout(() => {
  1140. for (let i = 0; i < this.tagGroupList.length; i++) {
  1141. for (let x = 0; x < this.tagGroupList[i].tag.length; x++) {
  1142. this.tagGroupList[i].tag[x].isSelected=false;
  1143. }
  1144. }
  1145. }, 200);
  1146. this.tagOpen = true;
  1147. },
  1148. delUserTag(){
  1149. if(this.ids==null||this.ids==""){
  1150. return this.$message('请选择需要移除标签的客户');
  1151. }
  1152. this.getPageListTagGroup();
  1153. setTimeout(() => {
  1154. for (let i = 0; i < this.tagGroupList.length; i++) {
  1155. for (let x = 0; x < this.tagGroupList[i].tag.length; x++) {
  1156. this.tagGroupList[i].tag[x].isSelected=false;
  1157. }
  1158. }
  1159. }, 200);
  1160. this.tagDelOpen = true;
  1161. },
  1162. getPageListTagGroup(){
  1163. this.queryTagParams.corpId=this.queryParams.corpId
  1164. allListTagGroup(this.queryTagParams).then(response => {
  1165. this.tagGroupList = response.rows;
  1166. this.tagTotal = response.total;
  1167. });
  1168. },
  1169. tagSelection(row){
  1170. row.isSelected= !row.isSelected;
  1171. this.$forceUpdate();
  1172. },
  1173. handleSearchTags(name){
  1174. if (!name){
  1175. return this.$message.error("请输入要搜索的标签")
  1176. }
  1177. this.queryTagParams.name=name;
  1178. this.queryTagParams.corpId=this.queryParams.corpId;
  1179. searchTags(this.queryTagParams).then(response => {
  1180. this.tagGroupList = response.rows;
  1181. });
  1182. // searchTags({name:name,corpId:this.queryParams.corpId}).then(response => {
  1183. // this.tagGroupList = response.rows;
  1184. // });
  1185. },
  1186. cancelSearchTags(){
  1187. this.resetSearchQueryTag()
  1188. this.getPageListTagGroup();
  1189. },
  1190. resetSearchQueryTag(){
  1191. this.queryTagParams= {
  1192. pageNum: 1,
  1193. pageSize: 5,
  1194. total:0,
  1195. name:null,
  1196. };
  1197. },
  1198. addTagSubmitForm(){
  1199. for (let i = 0; i < this.tagGroupList.length; i++) {
  1200. for (let x = 0; x < this.tagGroupList[i].tag.length; x++) {
  1201. if(this.tagGroupList[i].tag[x].isSelected==true){
  1202. this.addTagFormByWatch.tagIds.push(this.tagGroupList[i].tag[x].tagId)
  1203. }
  1204. }
  1205. }
  1206. if(this.addTagFormByWatch.tagIds==[]||this.addTagFormByWatch.tagIds==null||this.addTagFormByWatch.tagIds==""){
  1207. return this.$message('请选择标签');
  1208. }
  1209. this.addTagFormByWatch.logIds=this.ids;
  1210. let loadingRock = this.$loading({
  1211. lock: true,
  1212. text: '正在执行中请稍后~~请不要刷新页面!!',
  1213. spinner: 'el-icon-loading',
  1214. background: 'rgba(0, 0, 0, 0.7)'
  1215. });
  1216. addTagByWatch(this.addTagFormByWatch).then(response => {
  1217. // this.msgSuccess(response.msg);
  1218. this.resultMessage = response.msg;
  1219. this.resultDialogVisible = true; // 显示弹窗
  1220. this.resultTitle = '批量添加标签结果';
  1221. this.tagOpen = false;
  1222. loadingRock.close();
  1223. this.addTagFormByWatch={
  1224. logIds:[],
  1225. tagIds:[]
  1226. };
  1227. this.getList()
  1228. }).finally(res=>{
  1229. loadingRock.close();
  1230. });
  1231. },
  1232. tagDelSubmitForm(){
  1233. for (let i = 0; i < this.tagGroupList.length; i++) {
  1234. for (let x = 0; x < this.tagGroupList[i].tag.length; x++) {
  1235. if(this.tagGroupList[i].tag[x].isSelected==true){
  1236. this.addTagFormByWatch.tagIds.push(this.tagGroupList[i].tag[x].tagId)
  1237. }
  1238. }
  1239. }
  1240. if(this.addTagFormByWatch.tagIds==[]||this.addTagFormByWatch.tagIds==null||this.addTagFormByWatch.tagIds==""){
  1241. return this.$message('请选择标签');
  1242. }
  1243. this.addTagFormByWatch.corpId=this.queryParams.corpId
  1244. this.addTagFormByWatch.logIds=this.ids;
  1245. let loadingRock = this.$loading({
  1246. lock: true,
  1247. text: '正在执行中请稍后~~请不要刷新页面!!',
  1248. spinner: 'el-icon-loading',
  1249. background: 'rgba(0, 0, 0, 0.7)'
  1250. });
  1251. delTagByWatch(this.addTagFormByWatch).then(response => {
  1252. // this.msgSuccess(response.msg);
  1253. this.resultMessage = response.msg;
  1254. this.resultDialogVisible = true; // 显示弹窗
  1255. this.resultTitle = '批量移除标签结果';
  1256. this.tagDelOpen = false;
  1257. loadingRock.close();
  1258. this.addTagFormByWatch={
  1259. userIds:[],
  1260. tagIds:[]
  1261. };
  1262. this.getList()
  1263. }).finally(res=>{
  1264. loadingRock.close();
  1265. });
  1266. },
  1267. addTagCancel() {
  1268. this.tagOpen = false;
  1269. this.addTagFormByWatch={
  1270. logIds:[],
  1271. tagIds:[]
  1272. };
  1273. },
  1274. DelTagCancel() {
  1275. this.tagDelOpen = false;
  1276. this.addTagFormByWatch={
  1277. logIds:[],
  1278. tagIds:[]
  1279. };
  1280. },
  1281. /**
  1282. * 异步查询SOP列表
  1283. * @param {string} queryString - 查询字符串
  1284. * @param {function} callback - 回调函数
  1285. */
  1286. querySopAsync(queryString, callback) {
  1287. if (!queryString) {
  1288. callback([]);
  1289. return;
  1290. }
  1291. infoSop({ name: queryString }).then(response => {
  1292. if (response && response.rows) {
  1293. const suggestions = response.rows.map(item => ({
  1294. value: item.name,
  1295. id: item.id,
  1296. name: item.name
  1297. }));
  1298. callback(suggestions);
  1299. } else {
  1300. callback([]);
  1301. }
  1302. }).catch(error => {
  1303. console.error('通过sop查询失败:', error);
  1304. callback([]);
  1305. });
  1306. },
  1307. /**
  1308. * 选择SOP
  1309. * @param {object} item - 选中的SOP项
  1310. */
  1311. handleSopSelect(item) {
  1312. this.selectedSopId = item.id;
  1313. this.queryParams.sopId = item.id;
  1314. this.sopSearchText = item.name;
  1315. },
  1316. /**
  1317. * 清空SOP选择
  1318. */
  1319. handleSopClear() {
  1320. this.selectedSopId = null;
  1321. this.queryParams.sopId = null;
  1322. this.sopSearchText = '';
  1323. },
  1324. }
  1325. };
  1326. </script>
  1327. <style scoped>
  1328. /* CSS 样式 */
  1329. .tag-container {
  1330. display: flex;
  1331. flex-wrap: wrap; /* 超出宽度时自动换行 */
  1332. gap: 8px; /* 设置标签之间的间距 */
  1333. }
  1334. .name-background {
  1335. display: inline-block;
  1336. background-color: #abece6; /* 背景颜色 */
  1337. padding: 4px 8px; /* 调整内边距,让背景包裹文字 */
  1338. border-radius: 4px; /* 可选:设置圆角 */
  1339. }
  1340. /* CSS 样式 */
  1341. .tag-container {
  1342. display: flex;
  1343. flex-wrap: wrap; /* 超出宽度时自动换行 */
  1344. gap: 8px; /* 设置标签之间的间距 */
  1345. }
  1346. .name-background {
  1347. display: inline-block;
  1348. background-color: #abece6; /* 背景颜色 */
  1349. padding: 4px 8px; /* 调整内边距,让背景包裹文字 */
  1350. border-radius: 4px; /* 可选:设置圆角 */
  1351. }
  1352. .tag-box {
  1353. padding: 8px 12px;
  1354. border: 1px solid #989797;
  1355. border-radius: 4px;
  1356. cursor: pointer;
  1357. display: inline-block;
  1358. }
  1359. .tag-selected {
  1360. background-color: #00bc98;
  1361. color: #fff;
  1362. border-color: #00bc98;
  1363. }
  1364. .el-tag + .el-tag {
  1365. margin-left: 10px;
  1366. }
  1367. .button-new-tag {
  1368. margin-left: 10px;
  1369. height: 32px;
  1370. line-height: 30px;
  1371. padding-top: 0;
  1372. padding-bottom: 0;
  1373. }
  1374. .input-new-tag {
  1375. width: 90px;
  1376. margin-left: 10px;
  1377. vertical-align: bottom;
  1378. }
  1379. /* 新增的滚动容器样式(不影响原有样式) */
  1380. .scroll-wrapper {
  1381. max-height: 130px; /* 大约三行的高度 */
  1382. overflow-y: auto; /* 垂直滚动 */
  1383. padding-right: 5px; /* 为滚动条留出空间 */
  1384. }
  1385. /* 美化滚动条(可选) */
  1386. .scroll-wrapper::-webkit-scrollbar {
  1387. width: 6px;
  1388. }
  1389. .scroll-wrapper::-webkit-scrollbar-thumb {
  1390. background: rgba(0, 0, 0, 0.2);
  1391. border-radius: 3px;
  1392. }
  1393. /* SOP搜索框样式 */
  1394. .sop-item {
  1395. display: flex;
  1396. align-items: center;
  1397. }
  1398. .sop-name {
  1399. font-size: 14px;
  1400. color: #606266;
  1401. }
  1402. </style>