historAllVisit.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724
  1. <template>
  2. <div class="bgcolor">
  3. <div class="navBarTOP">
  4. <!-- 顶部条-->
  5. <van-nav-bar class="navBar" title="历史拜访" left-arrow @click-left="onClickLeft" />
  6. <div class="searcTime">
  7. <van-row class="serchInput">
  8. <van-col span="12">
  9. <van-cell
  10. class="monthNow selectcell"
  11. :title="companyName"
  12. is-link
  13. arrow-direction="down"
  14. @click="regionClick" />
  15. </van-col>
  16. <van-col span="12">
  17. <van-cell
  18. class="monthNow selectcell"
  19. :title="regionName"
  20. is-link
  21. @click="SalesRegionClick"
  22. arrow-direction="down" />
  23. </van-col>
  24. <van-col span="12">
  25. <van-cell
  26. class="monthNow selectcell"
  27. :title="deptName"
  28. is-link
  29. @click="SalesDepartmentClick"
  30. arrow-direction="down" />
  31. </van-col>
  32. <van-col span="12">
  33. <van-cell
  34. class="monthNow selectcell"
  35. :title="userName"
  36. is-link
  37. @click="StaffClick"
  38. arrow-direction="down" />
  39. </van-col>
  40. <van-col span="12">
  41. <div class="monthNow" @click="startTimeshow = true">
  42. <span class="month">{{ startTime }}</span>
  43. <van-icon class="CalendarIcon" :name="timeico" />
  44. </div>
  45. </van-col>
  46. <van-col span="12">
  47. <div class="monthNow" @click="endTimeshow = true">
  48. <span class="month">{{ endTime }}</span>
  49. <van-icon class="CalendarIcon" :name="timeico" />
  50. </div>
  51. </van-col>
  52. </van-row>
  53. </div>
  54. <div class="searchDiv">
  55. <van-search v-model="storeName" show-action placeholder="搜索名称/编号/地址/拜访人">
  56. <template #action>
  57. <div @click="onSearch">搜索</div>
  58. </template>
  59. </van-search>
  60. </div>
  61. <div class="lineGrey"></div>
  62. </div>
  63. <!-- 主体内容-->
  64. <div class="container" style="margin-top: 262px">
  65. <van-list
  66. class="myList1"
  67. v-model="loading"
  68. :finished="finished"
  69. finished-text="没有更多了"
  70. @load="onLoad">
  71. <div v-if="list.length > 0">
  72. <div class="cellcontent" v-for="(item, index) in list" :key="index">
  73. <van-cell @click="detilsFn(item)">
  74. <div class="card" style="position: relative">
  75. <span v-if="item.visitSource == 2" class="stateAbnormal">异常拜访</span>
  76. <!--<span v-if="item.visitModel==5" class="state">偏差过大</span>-->
  77. <span v-if="item.visitSource == 1" class="state">正常拜访</span>
  78. <div class="title">
  79. <span>{{ item.storeName }}</span> (<span style="color: #0057ba">{{
  80. item.storeCode
  81. }}</span
  82. >)
  83. </div>
  84. <div class="info">拜访人:{{ item.nickName }}</div>
  85. <div class="info">
  86. 拜访时间:{{ item.visitsTime }}
  87. <span class="textRight" v-if="item.status == '1' && item.taskId == null"
  88. >审批中</span
  89. >
  90. <span
  91. class="textRight"
  92. v-if="item.status == '1' && item.taskId != null"
  93. style="color: red"
  94. >退回修改</span
  95. >
  96. <span class="textRight" style="color: #07c160" v-if="item.status == 2"
  97. >审批完成</span
  98. >
  99. <span class="textRight" v-if="item.status == '3'" style="color: red">拒绝</span>
  100. </div>
  101. <div class="info" v-if="item.dwellTime">拜访时长:{{ item.dwellTime }}</div>
  102. <div class="info">地址:{{ item.addressLine }}</div>
  103. <!-- 分销店 -->
  104. <template v-if="item.sfaStoreType && item.sfaStoreType.type == 'fxd'">
  105. <div class="info">
  106. 经销商:
  107. <template
  108. v-if="item.sfaStoreChainsContactList"
  109. v-for="(item, index) in item.sfaStoreChainsContactList">
  110. <span :key="index">{{ item.chainName }},</span>
  111. </template>
  112. </div>
  113. </template>
  114. <template v-else>
  115. <div class="info">经销商:{{ item.chainName }}</div>
  116. </template>
  117. </div>
  118. </van-cell>
  119. <div class="lineGrey"></div>
  120. </div>
  121. </div>
  122. </van-list>
  123. <!-- <p style="text-align: center;color: #ccc;font-size: 12px;" v-if="list.length!=0">&#45;&#45;已经到底了&#45;&#45;</p>-->
  124. <!-- <van-empty description="&#45;&#45;已经到底了&#45;&#45;" v-if="list.length==0"/>-->
  125. </div>
  126. <van-popup v-model="startTimeshow" position="bottom" :style="{ height: '30%' }">
  127. <van-datetime-picker
  128. v-model="startcurrentDate"
  129. type="date"
  130. title="开始日期"
  131. :min-date="minDate"
  132. :max-date="startmaxDate"
  133. @confirm="dateeconfirm"
  134. @cancel="startTimeshow = false" />
  135. </van-popup>
  136. <van-popup v-model="endTimeshow" position="bottom" :style="{ height: '50%' }">
  137. <van-datetime-picker
  138. v-model="currentDate"
  139. type="date"
  140. title="开始日期"
  141. :min-date="endminDate"
  142. :max-date="maxDate"
  143. @confirm="endTimeconfirm"
  144. @cancel="endTimeshow = false" />
  145. </van-popup>
  146. <van-popup v-model="RegionShow" capture position="bottom">
  147. <van-picker
  148. show-toolbar
  149. :columns="companyList"
  150. value-key="deptName"
  151. @confirm="onregionConfirm"
  152. @cancel="RegionShow = false" />
  153. </van-popup>
  154. <van-popup v-model="SalesRegionShow" capture position="bottom">
  155. <van-picker
  156. show-toolbar
  157. :columns="regionList"
  158. value-key="deptName"
  159. @confirm="onSalesRegionConfirm"
  160. @cancel="SalesRegionShow = false" />
  161. </van-popup>
  162. <van-popup v-model="SalesDepartmentShow" capture position="bottom">
  163. <van-picker
  164. show-toolbar
  165. :columns="deptList"
  166. value-key="deptName"
  167. @confirm="onSalesDepartmentConfirm"
  168. @cancel="SalesDepartmentShow = false" />
  169. </van-popup>
  170. <van-popup v-model="StaffShow" capture position="bottom">
  171. <van-picker
  172. show-toolbar
  173. :columns="userList"
  174. @confirm="onStaffConfirm"
  175. value-key="nickName"
  176. @cancel="StaffShow = false" />
  177. </van-popup>
  178. </div>
  179. </template>
  180. <script>
  181. import { getVisits, getvisitDeptInfo } from '@/api/index';
  182. import timeico from '@/assets/Icon/datatims.png';
  183. export default {
  184. name: 'index.vue',
  185. data() {
  186. return {
  187. timeico: timeico,
  188. defaultDate: new Date(),
  189. searchValue: '',
  190. calendarShow: '',
  191. monthNames: [
  192. '-01',
  193. '-02',
  194. '-03',
  195. '-04',
  196. '-05',
  197. '-06',
  198. '-07',
  199. '-08',
  200. '-09',
  201. '-10',
  202. '-11',
  203. '-12',
  204. ],
  205. calendarIsshow: false,
  206. tabVal: 'insidePlan',
  207. list: [],
  208. loading: false,
  209. finished: true,
  210. listActive: null,
  211. query: '',
  212. show: false,
  213. minDate: new Date(2022, 0, 1),
  214. maxDate: new Date(),
  215. currentDate: new Date(),
  216. startcurrentDate: new Date(),
  217. endminDate: new Date(),
  218. startmaxDate: new Date(),
  219. endTime: '',
  220. startTime: '',
  221. endTimeshow: false,
  222. startTimeshow: false,
  223. storeName: '',
  224. companyName: '全部公司',
  225. deptName: '全部销售部',
  226. regionName: '全部大区',
  227. userName: '全部业务员',
  228. companyCode: '',
  229. deptCode: '',
  230. regionCode: '',
  231. userCode: '',
  232. companyList: [],
  233. deptList: [],
  234. regionList: [],
  235. userList: [],
  236. RegionShow: false,
  237. SalesRegionShow: false,
  238. SalesDepartmentShow: false,
  239. StaffShow: false,
  240. deptForm: { type: '', parentId: '' },
  241. pageNum: 1, // 当前页码 int类型
  242. pageSize: 10, // 当前每页条数 int类型
  243. formData: {
  244. companyId: '', // 公司id,必传 Long类型
  245. regionId: '', // 大区id,必传 Long类型
  246. deptId: '', // 部门id,如果为周报或日报为必传 Long类型
  247. userId: '', // 业务员id,如果为日报为必传 Long类型
  248. startTime: '', // 开始时间,必传 格式:yyyy-MM-dd String类型
  249. endTime: '', // 结束时间,必传 格式:yyyy-MM-dd String类型
  250. pageNum: 1, // 当前页码 int类型
  251. pageSize: 10, // 当前每页条数 int类型
  252. },
  253. };
  254. },
  255. activated() {
  256. // watch: {
  257. // $route(to, from) {
  258. // if (from.path == "/My/index" && to.path == "/historAllVisit") {
  259. // this.info();
  260. // this.userList=[]
  261. this.pageNum = 1;
  262. this.list = [];
  263. // this.powerGrade = localStorage.getItem("powerGrade")
  264. // this.getDeptInfo("dept")
  265. // if(this.powerGrade==5){
  266. // setTimeout(()=>{
  267. // if(this.$route.query.userCode==undefined){
  268. // this.companyName=this.companyList[0].deptName;
  269. // this.companyCode=this.companyList[0].deptId;
  270. // }
  271. // this.getDeptInfo("dept",1)
  272. // },1000)
  273. // }
  274. // if(this.powerGrade==4){
  275. // setTimeout(()=>{
  276. // this.getDeptInfo("dept",1)
  277. // },1000)
  278. // }
  279. // if(this.powerGrade==3){
  280. // setTimeout(()=>{
  281. // this.getDeptInfo("dept",2)
  282. // },1000)
  283. // }
  284. // if(this.powerGrade==2||this.powerGrade==1){
  285. // setTimeout(()=>{
  286. // this.getDeptInfo("user")
  287. // },2000)
  288. // }
  289. setTimeout(() => {
  290. this.onSearch();
  291. }, 1000);
  292. // }
  293. // }
  294. // },
  295. },
  296. created() {
  297. this.info();
  298. this.userList = [];
  299. this.pageNum = 1;
  300. this.list = [];
  301. this.powerGrade = localStorage.getItem('powerGrade');
  302. this.getDeptInfo('dept');
  303. if (this.powerGrade == 5) {
  304. setTimeout(() => {
  305. if (this.$route.query.userCode == undefined) {
  306. this.companyName = this.companyList[0].deptName;
  307. this.companyCode = this.companyList[0].deptId;
  308. }
  309. this.getDeptInfo('dept', 1);
  310. }, 1000);
  311. }
  312. if (this.powerGrade == 4) {
  313. setTimeout(() => {
  314. this.getDeptInfo('dept', 1);
  315. }, 1000);
  316. }
  317. if (this.powerGrade == 3) {
  318. setTimeout(() => {
  319. this.getDeptInfo('dept', 2);
  320. }, 1000);
  321. }
  322. if (this.powerGrade == 2 || this.powerGrade == 1) {
  323. setTimeout(() => {
  324. this.getDeptInfo('user');
  325. }, 2000);
  326. }
  327. // setTimeout(()=>{
  328. // this.onSearch();
  329. // },1000)
  330. },
  331. methods: {
  332. onLoad() {
  333. // this.loading = false;
  334. this.getVisitsListFn();
  335. },
  336. info() {
  337. this.query = this.$route.query;
  338. this.startTime = this.getDay(-7);
  339. this.startcurrentDate = new Date(this.getDay(-7));
  340. this.endTime = this.parseTime(new Date(), '{y}-{m}-{d}');
  341. this.endminDate = new Date(this.getDay(-7));
  342. },
  343. detilsFn(val) {
  344. this.$router.push({
  345. path: '/historicalDetails',
  346. query: {
  347. visitId: val.id,
  348. storeId: val.storeId,
  349. storeCode: val.storeCode,
  350. taskId: val.taskId,
  351. userId: val.userId,
  352. storeCategory: val.storeCategory,
  353. },
  354. });
  355. },
  356. timeBefore7(date) {
  357. if (!date) {
  358. date = new Date();
  359. }
  360. var y = date.getFullYear();
  361. var m = date.getMonth() + 1;
  362. var d = date.getDate() - 6;
  363. if (d < 0) {
  364. m = date.getMonth();
  365. var d1 = new Date(y, m, 0);
  366. var d2 = d1.getDate();
  367. return y + '/' + (m < 10 ? '0' + m : m) + '/' + (d2 + d);
  368. } else {
  369. return y + '/' + (m < 10 ? '0' + m : m) + '/' + (d < 10 ? '0' + d : d);
  370. }
  371. },
  372. getDay(day) {
  373. var today = new Date();
  374. var targetday_milliseconds = today.getTime() + 1000 * 60 * 60 * 24 * day;
  375. today.setTime(targetday_milliseconds); //注意,这行是关键代码
  376. var tYear = today.getFullYear();
  377. var tMonth = today.getMonth();
  378. var tDate = today.getDate();
  379. tMonth = this.doHandleMonth(tMonth + 1);
  380. tDate = this.doHandleMonth(tDate);
  381. return tYear + '-' + tMonth + '-' + tDate;
  382. },
  383. doHandleMonth(month) {
  384. var m = month;
  385. if (month.toString().length == 1) {
  386. m = '0' + month;
  387. }
  388. return m;
  389. },
  390. dateeconfirm() {
  391. this.startTimeshow = false;
  392. this.startTime = this.parseTime(this.startcurrentDate, '{yy}-{mm}-{dd}');
  393. this.endminDate = new Date(this.startcurrentDate);
  394. this.onSearch();
  395. },
  396. endTimeconfirm() {
  397. this.endTimeshow = false;
  398. this.endTime = this.parseTime(this.currentDate, '{yy}-{mm}-{dd}');
  399. this.startmaxDate = new Date(this.currentDate);
  400. this.onSearch();
  401. },
  402. onClickLeft() {
  403. this.$router.go(-1);
  404. },
  405. onSearch() {
  406. this.pageNum = 1;
  407. this.list = [];
  408. this.getVisitsListFn();
  409. },
  410. getVisitsListFn() {
  411. let loading1 = this.$toast.loading({
  412. duration: 0,
  413. message: '数据获取中...',
  414. forbidClick: true,
  415. });
  416. if (this.refreshing) {
  417. this.list = [];
  418. this.refreshing = false;
  419. }
  420. getVisits({
  421. startTime: this.startTime + ' 00:00:00', //
  422. stopTime: this.endTime + ' 24:00:00', //
  423. storeRequest: this.storeName.trim(),
  424. pageNum: this.pageNum,
  425. pageSize: this.pageSize,
  426. companyId: this.companyCode,
  427. regionId: this.regionCode,
  428. userId: this.userCode,
  429. deptId: this.deptCode,
  430. }).then((res) => {
  431. loading1.clear();
  432. if (res.code == 200) {
  433. this.loading = false;
  434. this.list = this.list.concat(res.data);
  435. if (this.list.length >= res.total) {
  436. this.finished = true;
  437. } else {
  438. this.finished = false;
  439. }
  440. this.pageNum = this.pageNum + 1;
  441. } else {
  442. this.$toast.fail(res.msg);
  443. }
  444. });
  445. },
  446. regionClick() {
  447. // if(this.powerGrade>4){
  448. this.RegionShow = true;
  449. // }
  450. },
  451. SalesRegionClick(val) {
  452. // if(this.powerGrade>3){
  453. this.SalesRegionShow = true;
  454. // }
  455. },
  456. SalesDepartmentClick() {
  457. // if(this.powerGrade>2){
  458. this.SalesDepartmentShow = true;
  459. // }
  460. },
  461. StaffClick() {
  462. this.StaffShow = true;
  463. },
  464. StartTimeClick() {
  465. this.StartTimeShow = true;
  466. },
  467. onregionConfirm(val) {
  468. this.RegionShow = false;
  469. this.companyName = val.deptName;
  470. this.companyCode = val.deptId;
  471. this.regionName = '全部大区';
  472. this.regionCode = '';
  473. this.deptName = '全部销售部';
  474. this.deptCode = '';
  475. this.userName = '全部业务员';
  476. this.userCode = '';
  477. this.getDeptInfo('dept', 1);
  478. },
  479. onSalesRegionConfirm(val) {
  480. this.SalesRegionShow = false;
  481. this.regionName = val.deptName;
  482. this.regionCode = val.deptId;
  483. if (val.deptId != '') {
  484. this.getDeptInfo('dept', 2);
  485. }
  486. this.deptName = '全部销售部';
  487. this.deptCode = '';
  488. this.userName = '全部业务员';
  489. this.userCode = '';
  490. this.userList = [];
  491. },
  492. onSalesDepartmentConfirm(val) {
  493. this.SalesDepartmentShow = false;
  494. this.deptName = val.deptName;
  495. this.deptCode = val.deptId;
  496. if (val.deptId != '') {
  497. this.getDeptInfo('user');
  498. }
  499. this.userName = '全部业务员';
  500. this.userCode = '';
  501. },
  502. onStaffConfirm(val) {
  503. this.StaffShow = false;
  504. this.userName = val.nickName;
  505. this.userCode = val.userId;
  506. },
  507. getDeptInfo(type, grade) {
  508. this.deptForm.type = type;
  509. if (type == 'dept') {
  510. if (grade == '1') {
  511. this.deptForm.parentId = this.companyCode;
  512. } else if (grade == '2') {
  513. this.deptForm.parentId = this.regionCode;
  514. } else {
  515. this.deptForm.type = '';
  516. this.deptForm.parentId = '';
  517. }
  518. } else if (type == 'user') {
  519. this.deptForm.parentId = this.deptCode;
  520. }
  521. getvisitDeptInfo(this.deptForm).then((res) => {
  522. if (type == 'dept') {
  523. if (grade == '1') {
  524. if (res.data.region != null) {
  525. this.regionList = [{ deptName: '全部大区', deptId: '' }].concat(res.data.region);
  526. }
  527. } else if (grade == '2') {
  528. if (res.data.dept != null) {
  529. this.deptList = [{ deptName: '全部销售部', deptId: '' }].concat(res.data.dept);
  530. }
  531. } else {
  532. this.companyList = res.data.company;
  533. if (this.$route.query.userCode == undefined) {
  534. this.companyName = res.data.company[0].deptName;
  535. this.companyCode = res.data.company[0].deptId;
  536. }
  537. if (res.data.dept != null) {
  538. this.deptName = res.data.dept[0].deptName;
  539. this.deptCode = res.data.dept[0].deptId;
  540. this.deptList = res.data.dept;
  541. }
  542. if (res.data.region != null) {
  543. this.regionName = res.data.region[0].deptName;
  544. this.regionCode = res.data.region[0].deptId;
  545. this.regionList = res.data.region;
  546. }
  547. if (res.data.user != null) {
  548. this.userList = res.data.user;
  549. this.userCode = '';
  550. }
  551. }
  552. } else if (type == 'user') {
  553. if (res.data.user != null) {
  554. this.userList = [{ nickName: '全部业务员', userId: '' }].concat(res.data.user);
  555. }
  556. }
  557. });
  558. },
  559. },
  560. };
  561. </script>
  562. <style lang="scss">
  563. .searchDiv {
  564. .van-search {
  565. background: #fff;
  566. }
  567. .van-search__action {
  568. font-size: 14px;
  569. color: #1989fa;
  570. font-weight: bold;
  571. background: #f5f5f5;
  572. border-bottom-right-radius: 60px;
  573. border-top-right-radius: 60px;
  574. border: 1px solid #ccc;
  575. padding: 0 20px;
  576. }
  577. .van-search--show-action {
  578. padding-right: 12px;
  579. }
  580. .van-search__content {
  581. border: 1px solid #ccc;
  582. border-bottom-left-radius: 60px;
  583. border-top-left-radius: 60px;
  584. background: #f5f5f5;
  585. border-right: 0;
  586. }
  587. }
  588. .myList1 {
  589. .van-cell {
  590. padding: 10px 16px;
  591. &:after {
  592. border-bottom: none;
  593. }
  594. }
  595. }
  596. </style>
  597. <style lang="scss" scoped>
  598. .bgcolor {
  599. background-color: #f5f5f5;
  600. }
  601. .container {
  602. padding-bottom: 50px;
  603. }
  604. .monthNow {
  605. height: 34px;
  606. line-height: 34px;
  607. text-align: left;
  608. font-weight: bold;
  609. padding: 0 16px;
  610. box-sizing: border-box;
  611. background-color: #f1f1f1;
  612. border-radius: 20px;
  613. margin: 8px;
  614. border: 1px solid #ccc;
  615. position: relative;
  616. color: #333;
  617. font-size: 14px;
  618. .van-cell__left-icon,
  619. .van-cell__right-icon {
  620. line-height: 34px;
  621. }
  622. .CalendarIcon {
  623. float: right;
  624. font-size: 24px;
  625. color: #1989fa;
  626. margin-top: 6px;
  627. position: absolute;
  628. right: 12px;
  629. img {
  630. height: 0.8em;
  631. }
  632. }
  633. }
  634. .serchInput {
  635. padding: 0 4px;
  636. }
  637. .selectcell {
  638. width: 92%;
  639. }
  640. .card {
  641. box-sizing: border-box;
  642. .title {
  643. font-size: 16px;
  644. font-weight: bold;
  645. color: #333;
  646. line-height: 30px;
  647. width: 78%;
  648. }
  649. .info {
  650. font-size: 14px;
  651. color: #909090;
  652. line-height: 26px;
  653. }
  654. }
  655. /**/
  656. .searcTime {
  657. background-color: white;
  658. }
  659. .btnbox {
  660. padding: 0 16px;
  661. }
  662. .cellcontent .centerBtn {
  663. margin: 0 auto 10px;
  664. display: block;
  665. width: 92%;
  666. border-radius: 5px;
  667. }
  668. .statstext {
  669. background-color: #1c84c6;
  670. position: absolute;
  671. right: 0;
  672. top: 16px;
  673. padding: 2px 6px 2px 12px;
  674. border-bottom-left-radius: 60px;
  675. border-top-left-radius: 60px;
  676. color: #fff;
  677. }
  678. .stateAbnormal {
  679. position: absolute;
  680. right: 0;
  681. top: 0;
  682. color: #fff;
  683. background-color: red;
  684. border-radius: 5px;
  685. display: inline-block;
  686. padding: 0 5px;
  687. }
  688. .state {
  689. position: absolute;
  690. right: 0;
  691. top: 0;
  692. color: #fff;
  693. background-color: #1c84c6;
  694. border-radius: 5px;
  695. display: inline-block;
  696. padding: 0 5px;
  697. }
  698. .navBarTOP {
  699. position: fixed;
  700. width: 100%;
  701. z-index: 2;
  702. top: 0;
  703. }
  704. .cellcontent .textRight {
  705. float: right;
  706. color: #0057ba;
  707. }
  708. </style>