customList.vue 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646
  1. <template>
  2. <div class="customList_container" ref="cusContainer">
  3. <div class="customList_bot_top">
  4. <div>
  5. <div v-if="Role!='finance'">
  6. <el-button type="primary" @click="addCustom" style="marginRight:10px;width:80px;" v-if="AddCompanyBtn">新增</el-button>
  7. <!-- <a :href="exportUrlDl" download>
  8. <el-button type="primary" plain style="width:100px;marginRight:10px;">导出客户</el-button>
  9. </a>
  10. <a :href="exportUserDl" download>
  11. <el-button type="primary" plain style="width:110px;">导出联系人</el-button>
  12. </a> -->
  13. </div>
  14. </div>
  15. <el-input
  16. placeholder="客户名称/社会信用码/手机号码/邮箱"
  17. v-model="search_txt"
  18. style="max-width:520px"
  19. @input="searchHandle"
  20. clearable>
  21. <i slot="prefix" class="el-input__icon el-icon-search"></i>
  22. </el-input>
  23. </div>
  24. <div class="customList_bot">
  25. <div class="customList_top">
  26. <el-row :span="24">
  27. <el-select v-model="fromArea" placeholder="请选择所属区域" style="width:200px;marginRight:10px;marginBottom:8px;" clearable @change="changeFromArea">
  28. <el-option
  29. v-for="item in areaArr"
  30. :key="item"
  31. :label="item.name"
  32. :value="item.name">
  33. </el-option>
  34. </el-select>
  35. <el-select v-model="type" placeholder="请选择客户类型" style="width:200px;marginRight:10px;marginBottom:8px;" clearable v-if="Role=='finance'||Role=='admin'" @change="changeType">
  36. <el-option
  37. v-for="item in typeArr"
  38. :key="item"
  39. :label="item.name"
  40. :value="item.name">
  41. </el-option>
  42. </el-select>
  43. <el-select v-model="trade" placeholder="请选择行业" style="width:200px;marginRight:10px;marginBottom:8px;" clearable @change="changeTrade">
  44. <el-option
  45. v-for="item in tradeArr"
  46. :key="item.IndustryId"
  47. :label="item.IndustryName"
  48. :value="item.IndustryId">
  49. </el-option>
  50. </el-select>
  51. <el-cascader
  52. v-if="this.act_status=='流失' ||(Role=='finance'||Role=='admin'||Role=='ficc_admin'||Role=='rai_admin'||ManageType!=0)"
  53. v-model="sales"
  54. placeholder="请选择销售"
  55. style="width:200px;marginRight:10px;marginBottom:8px;"
  56. :options="salesArr"
  57. :props="defaultSalesProps"
  58. :show-all-levels="false"
  59. :key="modifySales"
  60. collapse-tags
  61. clearable
  62. filterable
  63. @change="changeSales">
  64. </el-cascader>
  65. <el-select v-model="setmealSelect" placeholder="请选择套餐类型" style="width:200px;marginRight:10px;marginBottom:8px;" clearable @change="changeTrade">
  66. <el-option
  67. v-for="item in setmealArr"
  68. :key="item.id"
  69. :label="item.name"
  70. :value="item.id">
  71. </el-option>
  72. </el-select>
  73. <el-cascader
  74. v-model="variety"
  75. placeholder="请选择已购品种"
  76. style="width:200px;marginRight:10px;marginBottom:8px;"
  77. :options="varietyArr"
  78. :props="defaultprops"
  79. :show-all-levels="false"
  80. collapse-tags
  81. clearable
  82. filterable
  83. @change="changeVariety">
  84. </el-cascader>
  85. <el-cascader
  86. v-model="variety_red"
  87. placeholder="请选择阅读权限"
  88. style="width:200px;marginRight:10px;marginBottom:8px;"
  89. :options="varietyArr"
  90. :props="defaultprops"
  91. :show-all-levels="false"
  92. collapse-tags
  93. clearable
  94. filterable
  95. @change="changeVariety">
  96. </el-cascader>
  97. <el-cascader v-model="valueLocation" collapse-tags :props="locationProps" clearable :options="locationOptions" @change="handleChangeLocation"
  98. placeholder="请选择客户地址" style="width:200px;marginRight:10px;marginBottom:8px;">
  99. </el-cascader>
  100. <date-picker
  101. v-model="date"
  102. type="date"
  103. range
  104. value-type="format"
  105. placeholder="服务日期"
  106. @change="dateChange"
  107. style="width:200px;marginRight:10px;marginBottom:8px;">
  108. </date-picker>
  109. <date-picker
  110. v-model="createdate"
  111. type="date"
  112. range
  113. value-type="format"
  114. placeholder="创建时间"
  115. @change="dateChange2" style="width:200px;marginRight:10px;marginBottom:8px;">
  116. </date-picker>
  117. <el-select v-model="todoType" placeholder="请选择任务状态" clearable @change="changeTodoType" style="width:200px;marginRight:10px;marginBottom:8px;">
  118. <el-option
  119. v-for="item in todoTypeArr"
  120. :key="item.id"
  121. :label="item.name"
  122. :value="item.name">
  123. </el-option>
  124. </el-select>
  125. </el-row>
  126. </div>
  127. <ul class="tabs_cont">
  128. <li :class="['tab',{'act':act_status === item.Status}]" v-for="(item,index) in tabs" :key="index" @click="changeStatus(item,index)">
  129. {{item.Status+'('+item.Count+')'}}
  130. </li>
  131. </ul>
  132. <ul class="tabs_cont trial-ul" v-if="act_status === '试用'">
  133. <li :class="['trial-item',{'act':act_trialTag === item.TryStage}]" v-for="item in trialTagArr" :key="item.TryStage" @click="changeTagStatus(item)">
  134. {{item.TryStageStr+'('+item.Count+')'}}
  135. </li>
  136. </ul>
  137. <div class="bot_cont">
  138. <el-table
  139. ref="userTable"
  140. :data="tableData"
  141. v-loading="isShowloadding"
  142. element-loading-text="数据加载中..."
  143. @sort-change="sortChangeHandle"
  144. border>
  145. <el-table-column
  146. prop="CompanyName"
  147. label="客户名称"
  148. align="center"
  149. min-width="7.14%"
  150. >
  151. <template slot-scope="scope"
  152. :class="{'isShared':scope.row.IsShared}"
  153. >
  154. <span
  155. v-if="scope.row.IsSuspend ===1 || scope.row.Status=='潜在'"
  156. @click="goDetail(scope.row)"
  157. class="mouse-enter"
  158. :class="{'color-red':act_status==='正式'&&scope.row.Status.includes('正式')&&scope.row.WeekViewActive===0}"
  159. :style="scope.row.Status=='潜在'?'':'color:#bbb;cursor:pointer'">
  160. {{scope.row.CompanyName}}
  161. </span>
  162. <span v-else style="color:#409EFF;cursor:pointer;" @click="goDetail(scope.row)" class="customName"
  163. :class="{'isShared':scope.row.IsShared,'color-red':act_status==='正式'&&scope.row.Status.includes('正式')&&scope.row.WeekViewActive===0}"
  164. >{{scope.row.CompanyName}}</span>
  165. <img width="15" src="../../../assets/img/icons/remark.png" alt="" v-if="scope.row.RenewalReason||(scope.row.Status==='冻结'&&scope.row.FreezeReason)">
  166. <el-tooltip content="此客户存在长期且反复申请试用,但从未签约的情况,请谨慎领取" placement="top" :open-delay="500"
  167. v-if="RaiSellerRole && scope.row.IsScrounge == 1">
  168. <img width="16" style="cursor: pointer;" src="../../../assets/img/icons/warning_triangle_yellow.png" />
  169. </el-tooltip>
  170. </template>
  171. </el-table-column>
  172. <el-table-column label="To-Do" prop="todo" align="center" min-width="5.14%" sortable="custom">
  173. <template slot="header" slot-scope="{}">
  174. <div class="todolabel" :class="{sort:SortByTodo}" style="display:inline-block;">
  175. <span>To-Do</span><!-- <img :src="todoSrc" style="margin-left:3px;width:16px;height:16px;padding:3px;"/> -->
  176. </div>
  177. </template>
  178. <template slot-scope="scope">
  179. <div class="todo-btn">
  180. <p class="hint" :style="`background-color:${getTodoBtnColor(scope.row.TodoButtonColor)}`"></p>
  181. <div class="btnwrap">
  182. <span class="item"
  183. v-for="item in getToDoBtn(scope.row)"
  184. :key="item.key"
  185. :style="item.style"
  186. @click="!item.disable&&handleToDoBtnClick(scope.row,item.key)"
  187. >{{item.label}}</span>
  188. </div>
  189. </div>
  190. </template>
  191. </el-table-column>
  192. <el-table-column label="DL" prop="deadline" align="center" min-width="5%" sortable="custom">
  193. <template slot="header" slot-scope="{}">
  194. <div class="todolabel" :class="{sort:sort_param==='deadline'}" style="display:inline-block;">
  195. <span>DL</span>
  196. <el-tooltip
  197. effect="dark"
  198. placement="top-start"
  199. content="未完成To Do任务的截止日期-当前日期"
  200. >
  201. <i class="el-icon-info"/>
  202. </el-tooltip>
  203. <!-- <img :src="todoSrc" style="margin-left:3px;width:16px;height:16px;padding:3px;"/> -->
  204. </div>
  205. </template>
  206. <template slot-scope="{row}">
  207. <span>{{row.Deadline||'--'}}</span>
  208. </template>
  209. </el-table-column>
  210. <el-table-column
  211. prop="CompanyType"
  212. label="类型"
  213. align="center"
  214. min-width="4.14%"
  215. >
  216. <template slot-scope="{row}">
  217. <!-- <p :style="scope.row.IsSuspend===1?'color:#bbb':''">{{scope.row.CompanyType}}</p>
  218. <span v-if="scope.row.FiccPackageType" class="ficc-package">{{scope.row.FiccPackageType == 1 ? '大套餐': '小套餐'}}</span> -->
  219. <template v-if="row.CompanyType.indexOf('/')!==-1">
  220. <span :style="row.IsSuspend===1?'color:#bbb':''">{{row.CompanyType.split('/')[0]}}</span><br/>
  221. <span v-if="row.FiccPackageType" class="ficc-package">{{row.FiccPackageType == 1 ? '大套餐': '小套餐'}}</span>
  222. <br v-if="row.FiccPackageType"/>
  223. <span :style="row.IsSuspend===1?'color:#bbb':''">{{row.CompanyType.split('/')[1]}}</span>
  224. </template>
  225. <template v-else>
  226. <span :style="row.IsSuspend===1?'color:#bbb':''">{{row.CompanyType}}</span>
  227. <span v-if="row.FiccPackageType&&row.CompanyType.includes('ficc')" class="ficc-package">{{row.FiccPackageType == 1 ? '大套餐': '小套餐'}}</span>
  228. </template>
  229. </template>
  230. </el-table-column>
  231. <el-table-column
  232. prop="IndustryName"
  233. label="所属行业"
  234. min-width="6.14%"
  235. align="center">
  236. <template slot-scope="scope">
  237. <!-- <span :style="scope.row.IsSuspend===1?'color:#bbb':''">{{scope.row.IndustryName}}</span> -->
  238. <div :style="scope.row.IsSuspend===1?'color:#bbb':''">
  239. <p :style="scope.row.IsSuspend===1?'color:#bbb':''" v-for="item in scope.row.IndustryName.split('/')" :key="item">{{item}}</p>
  240. </div>
  241. </template>
  242. </el-table-column>
  243. <el-table-column
  244. prop="City"
  245. label="客户地址"
  246. min-width="6.14%"
  247. align="center">
  248. <template slot-scope="scope">
  249. <!-- <span v-if="scope.row.Province && scope.row.City" :style="scope.row.IsSuspend===1?'color:#bbb':''">{{scope.row.Province+'/'+scope.row.City}}</span> -->
  250. <span v-if="scope.row.Province && scope.row.City" :style="scope.row.IsSuspend===1?'color:#bbb':''">{{scope.row.Province}}<br/>{{scope.row.City}}</span>
  251. <span v-else :style="scope.row.IsSuspend===1?'color:#bbb':''">{{scope.row.RegionType}}</span>
  252. </template>
  253. </el-table-column>
  254. <el-table-column
  255. prop="SellerName"
  256. label="销售"
  257. min-width="6.14%"
  258. align="center">
  259. <template slot-scope="scope">
  260. <!-- <span :style="scope.row.IsSuspend===1?'color:#bbb':''">{{scope.row.SellerName}}</span> -->
  261. <p :style="scope.row.IsSuspend===1?'color:#bbb':''" v-for="item in scope.row.SellerName.split('/')" :key="item">{{item}}</p>
  262. </template>
  263. </el-table-column>
  264. <el-table-column
  265. prop="Status"
  266. label="状态"
  267. min-width="7.14%"
  268. align="center" :sortable="act_status==='试用'&&act_trialTag===0?'custom':false" style="background:red">
  269. <template slot="header" slot-scope="{}">
  270. <div class="todolabel" :class="{sort:sort_param==='tryStage'}" style="display:inline-block;">
  271. <span>状态</span><!-- <img :src="require('@/assets/img/icons/todo.png')" v-if="act_status==='试用'&&act_trialTag===0" style="margin-left:5px;width:22px;height:22px;"/> -->
  272. </div>
  273. </template>
  274. <template slot-scope="scope">
  275. <!-- <span :style="scope.row.IsSuspend===1?'color:#bbb':''">{{scope.row.Status+(scope.row.ApproveStatus?'('+scope.row.ApproveStatus+')':'')}}</span> -->
  276. <p :style="scope.row.IsSuspend===1?'color:#bbb;margin:3px 0':'margin:3px 0'" v-for="(item,index) in scope.row.Status.split('/')" :key="item">
  277. {{ item }}
  278. <template v-if="item === '试用' && scope.row.TryStageSlice">
  279. <el-select
  280. v-model="scope.row.TryStageSlice[index].TryStage"
  281. v-if="scope.row.Status === '试用/试用'"
  282. :disabled="!scope.row.TryStageSlice[index].HasPermission"
  283. size="mini"
  284. style="width: 50px"
  285. placeholder=""
  286. @change="changeTrialHandle(scope.row,scope.row.TryStageSlice[index])"
  287. >
  288. <el-option
  289. v-for="item in trialTags"
  290. :key="item.value"
  291. :label="item.label"
  292. :value="item.value">
  293. </el-option>
  294. </el-select>
  295. <el-select
  296. v-model="scope.row.TryStageSlice[0].TryStage"
  297. :disabled="!scope.row.TryStageSlice[0].HasPermission"
  298. v-else
  299. size="mini"
  300. style="width: 50px"
  301. placeholder=""
  302. @change="changeTrialHandle(scope.row,scope.row.TryStageSlice[0])"
  303. >
  304. <el-option
  305. v-for="item in trialTags"
  306. :key="item.value"
  307. :label="item.label"
  308. :value="item.value">
  309. </el-option>
  310. </el-select>
  311. </template>
  312. </p>
  313. <!-- 共享客户显示咨询组销售 -->
  314. <span v-if="scope.row.IsShare==1 && scope.row.ShareSeller">{{ scope.row.ShareSeller }}</span>
  315. </template>
  316. </el-table-column>
  317. <el-table-column
  318. label="累计试用天数"
  319. align="center"
  320. min-width="5.14%"
  321. prop="tryOutDay"
  322. sortable="custom">
  323. <template slot-scope="{row}">
  324. <el-tooltip :disabled="row.IsSuspend===1||(row.FiccTryOutDay+row.RaiTryOutDay===0)">
  325. <div slot="content">
  326. <p v-if="row.FiccTryOutDay">FICC累计试用天数:{{row.FiccTryOutDay}}</p>
  327. <p v-if="row.RaiTryOutDay">权益累计试用天数:{{row.RaiTryOutDay}}</p>
  328. </div>
  329. <span :style="row.IsSuspend===1?'color:#bbb':'color:#409EFF;cursor:pointer;'" @click="handleTotalDayClick(row)">
  330. {{row.FiccTryOutDay+row.RaiTryOutDay}}
  331. </span>
  332. </el-tooltip>
  333. </template>
  334. </el-table-column>
  335. <el-table-column
  336. label="阅读"
  337. align="center"
  338. min-width="5.14%"
  339. prop="viewTotal"
  340. sortable="custom">
  341. <template slot-scope="{row}">
  342. <el-tooltip :disabled="row.IsSuspend===1 || (row.FiccView+row.RaiView)===0">
  343. <div slot="content"><p v-if="row.FiccView">FICC报告阅读次数:{{row.FiccView}}</p><p v-if="row.RaiView">权益报告阅读次数:{{row.RaiView}}</p></div>
  344. <span :style="row.IsSuspend===1?'color:#bbb':'color:#409EFF;cursor:pointer;'">
  345. <!-- {{row.FiccView+row.RaiView}} -->
  346. <!-- 阅读次数拆分 -->
  347. {{row.AllViewTotal}}
  348. </span>
  349. </el-tooltip>
  350. </template>
  351. </el-table-column>
  352. <el-table-column
  353. label="路演"
  354. align="center"
  355. min-width="5.14%"
  356. prop="roadShowTotal"
  357. sortable="custom">
  358. <template slot-scope="scope">
  359. <span :style="scope.row.IsSuspend===1?'color:#bbb':''" @click="accumulativeFrequencyClick(scope)" class="editsty" v-if="scope.row.RoadShowTotal > 0">{{scope.row.RoadShowTotal}}</span>
  360. <span :style="scope.row.IsSuspend===1?'color:#bbb':''" v-else>{{scope.row.RoadShowTotal}}</span>
  361. </template>
  362. </el-table-column>
  363. <el-table-column
  364. label="最近阅读"
  365. min-width="8.14%"
  366. align="center"
  367. prop="viewTime"
  368. sortable="custom">
  369. <template slot-scope="scope">
  370. <p v-if="scope.row.FiccLastViewTime" :style="scope.row.IsSuspend===1?'color:#bbb':''">ficc: {{$moment(scope.row.FiccLastViewTime).format('YYYY.MM.DD')}}</p>
  371. <p v-else-if="scope.row.RaiLastViewTime" :style="scope.row.IsSuspend===1?'color:#bbb':''">权益: {{$moment(scope.row.RaiLastViewTime).format('YYYY.MM.DD')}}</p>
  372. <p v-else :style="scope.row.IsSuspend===1?'color:#bbb':''">--</p>
  373. </template>
  374. </el-table-column>
  375. <el-table-column
  376. prop="EndDate"
  377. :label="act_status=='冻结'?'冻结期限':'服务期限'"
  378. align="center"
  379. min-width="6.14%">
  380. <template slot-scope="scope">
  381. <span :style="scope.row.IsSuspend===1?'color:#bbb':''">
  382. <!-- 正常的时间显示 -->
  383. <template v-if="scope.row.StartDate.indexOf('/')==-1">
  384. <template v-if="act_status=='流失'">
  385. 创建时间:{{scope.row.CreatedTime|formatTime}}
  386. </template>
  387. <template v-else-if="scope.row.Status == '永续'">
  388. 永久
  389. </template>
  390. <template v-else-if="act_status == '冻结'">
  391. {{scope.row.FreezeStartDate}}~{{scope.row.FreezeEndDate}}
  392. </template>
  393. <template v-else>
  394. {{scope.row.StartDate}}~{{scope.row.EndDate}}
  395. </template>
  396. </template>
  397. <!-- 公用客户的时间显示 -->
  398. <template v-else>
  399. {{scope.row.StartDate.substr(0,10)}}~{{scope.row.EndDate.substr(0,10)}}/{{scope.row.StartDate.substr(11)}}~{{scope.row.EndDate.substr(11)}}
  400. </template>
  401. </span>
  402. </template>
  403. </el-table-column>
  404. <el-table-column
  405. prop="expireDay"
  406. :label="act_status=='冻结'?'解冻':'到期'"
  407. align="center"
  408. min-width="5.14%"
  409. sortable="custom">
  410. <template slot-scope="scope">
  411. <span :style="scope.row.IsSuspend===1?'color:#bbb':''">
  412. <template v-if="act_status=='冻结'">
  413. {{scope.row.FreezeExpireDays||'--'}}
  414. </template>
  415. <template v-else>
  416. {{scope.row.ExpireDay||'--'}}
  417. </template>
  418. </span>
  419. </template>
  420. </el-table-column>
  421. <el-table-column
  422. prop="createTime"
  423. :label="
  424. act_status=='冻结'?'冻结时间'
  425. :act_status=='正式'?'转正时间'
  426. :act_status=='流失'?'流失时间'
  427. :act_status=='关闭'?'关闭时间':'创建时间'"
  428. sortable="custom"
  429. align="center" min-width="6.14%">
  430. <template slot-scope="scope">
  431. <span :style="scope.row.IsSuspend===1?'color:#bbb':''">
  432. <template v-if="act_status=='冻结'">
  433. {{$moment(scope.row.FreezeTime).format('YYYY.MM.DD')}}
  434. </template>
  435. <template v-else-if="act_status=='正式'">
  436. {{$moment(scope.row.FormalTime).format('YYYY.MM.DD')}}
  437. </template>
  438. <template v-else-if="act_status=='流失'">
  439. <!-- {{scope.row.LossTime?$moment(scope.row.LossTime.replaceAll('.','-')).format('YYYY.MM.DD'):''}} -->
  440. {{scope.row.LossTime
  441. ?(`${scope.row.LossTime.split('/')[0].substr(0,10)}`)
  442. :''}}
  443. {{scope.row.LossTime&&scope.row.IsShared&&scope.row.LossTime.split('/')[1]
  444. ? `/${scope.row.LossTime.split('/')[1].substr(0,10)}`
  445. :''}}
  446. </template>
  447. <template v-else-if="act_status=='关闭'">
  448. {{$moment(scope.row.CloseTime).format('YYYY.MM.DD')}}
  449. </template>
  450. <template v-else>
  451. {{$moment(scope.row.CreatedTime).format('YYYY.MM.DD')}}
  452. </template>
  453. </span>
  454. </template>
  455. </el-table-column>
  456. <el-table-column label="操作" align="center" min-width="7.14%">
  457. <template slot-scope="scope" v-if="!scope.row.ApproveStatus">
  458. <!-- 新操作栏 -->
  459. <div style="color:#4099ef; font-size:24px;display:flex;align-content: center;justify-content: center;align-items: center;">
  460. <div class="tool" style="display: flex;flex-direction: column;">
  461. <span :class="item==='BtnDelete'?'deletesty':'editsty'" style="margin: 0 5px;" @click.stop="itemclickHandle({type:btnName(item,scope.row),data:scope.row})"
  462. v-for="item,index in btnList(scope.row.BtnItem,'front')" :key="index">{{btnName(item,scope.row)}}</span>
  463. </div>
  464. <el-dropdown size="medium" placement="bottom-start" @command="itemclickHandle"
  465. v-if="btnList(scope.row.BtnItem,'back').length" style="height: 16px;">
  466. <span class="el-dropdown-link">
  467. <i class="el-icon-more el-icon--right"></i>
  468. <el-dropdown-menu slot="dropdown">
  469. <el-dropdown-item :command="{type:btnName(item,scope.row),data:scope.row}"
  470. v-for="item,index in btnList(scope.row.BtnItem,'back')" :key="index">
  471. <span>{{btnName(item,scope.row)}}</span>
  472. </el-dropdown-item>
  473. </el-dropdown-menu>
  474. </span>
  475. </el-dropdown>
  476. </div>
  477. </template>
  478. </el-table-column>
  479. <div slot="empty" style="lineHeight:44px;margin:60px 0;color:#999;">
  480. <img src="~@/assets/img/cus_m/nodata.png" alt="" style="display:block;width:160px;height:128px;margin: auto;">
  481. <span>暂无信息</span>
  482. </div>
  483. </el-table>
  484. <!-- <el-col :span="24" class="toolbar">
  485. <el-pagination
  486. layout="total,prev,pager,next,jumper"
  487. background
  488. :current-page="page_no"
  489. @current-change="handleCurrentChange"
  490. :page-size="pageSize"
  491. @size-change="handleSizeChange"
  492. :total="total"
  493. style="float:right;">
  494. </el-pagination>
  495. </el-col> -->
  496. <div class="toolbar fixedbar">
  497. <el-pagination
  498. layout="prev,pager,next"
  499. background
  500. :current-page="page_no"
  501. @current-change="handleCurrentChange"
  502. :page-size="pageSize"
  503. @size-change="handleSizeChange"
  504. :total="total"
  505. style="float:right;">
  506. </el-pagination>
  507. </div>
  508. </div>
  509. </div>
  510. <!-- 申请弹窗 -->
  511. <Capplydia
  512. :isApply="isApply"
  513. :title="applyTit"
  514. :formdata="applyForm"
  515. :contactFormData="contactFormData"
  516. @cancelHandle="cancelHandle">
  517. </Capplydia>
  518. <!-- 查看权限弹窗 -->
  519. <permissionView :isLook.sync="isLook" :lookTitle="lookTitle" :lookAuthList="lookAuthList" :lookAuthListEquity="lookAuthListEquity"
  520. @closeDia="closeDia"></permissionView>
  521. <!-- 增开试用弹窗 -->
  522. <el-dialog
  523. :visible.sync="isAddTrial"
  524. :close-on-click-modal="false"
  525. :modal-append-to-body='false'
  526. @close="isAddTrial=false"
  527. width="800px"
  528. v-dialogDrag
  529. center>
  530. <div slot="title" style="display:flex;alignItems:center;">
  531. <!-- <img :src="$icons.auth" style="color:#fff;width:16px;height:16px;marginRight:5px;"> -->
  532. <span style="fontSize:16px;">增开试用(默认两个月)</span>
  533. </div>
  534. <Cauthlist
  535. :autharr="authList"
  536. :id="addTryId"
  537. @addOver="addTryOver"
  538. @close="isAddTrial=false"/>
  539. </el-dialog>
  540. <!-- 修改销售弹窗 -->
  541. <el-dialog
  542. v-dialogDrag
  543. :visible.sync="isMove"
  544. :close-on-click-modal="false"
  545. :modal-append-to-body='false'
  546. @close="cancelMove"
  547. center
  548. width="30%">
  549. <div slot="title" style="display:flex;alignItems:center;">
  550. <img :src="$icons.edit" style="color:#fff;width:16px;height:16px;marginRight:5px;">
  551. <span style="fontSize:16px;">修改销售</span>
  552. </div>
  553. <el-form :model="moveform" :rules="moveRule" ref="moveform" label-width="100px" style="marginTop:15px;">
  554. <el-form-item label="客户名称" prop="name">
  555. <span style="fontSize:16px;">{{moveform.companyName}}</span>
  556. </el-form-item>
  557. <el-form-item label="当前销售" prop="name">
  558. <span style="fontSize:16px;">{{moveform.sellerName}}</span>
  559. </el-form-item>
  560. <el-form-item label="移至销售" prop="sale">
  561. <!-- <el-select
  562. v-model="moveform.sale"
  563. filterable
  564. placeholder="请选择修改的销售"
  565. style="width: 70%">
  566. <el-option
  567. v-for="item in modifysalesArr"
  568. :key="item.AdminId"
  569. :label="item.RealName"
  570. :value="item.AdminId">
  571. </el-option>
  572. </el-select> -->
  573. <el-cascader
  574. v-model="moveform.sale"
  575. placeholder="请选择修改的销售"
  576. style="width: 70%"
  577. :options="modifysalesArr"
  578. :props="{multiple: false,label:'RealName',children:'ChildrenList',value:'AdminId'}"
  579. :show-all-levels="false"
  580. clearable
  581. filterable>
  582. </el-cascader>
  583. </el-form-item>
  584. </el-form>
  585. <div style="display:flex;justify-content:center;margin:75px 0 26px;">
  586. <el-button type="primary" style="width:80px;marginRight:24px;" @click="saveMove">保存</el-button>
  587. <el-button style="width:80px;" @click="cancelMove">取消</el-button>
  588. </div>
  589. </el-dialog>
  590. <!-- 添加联系人弹窗 -->
  591. <Contactdia
  592. :id="addCompanyId"
  593. :title="'新增联系人'"
  594. :userForm="diaform"
  595. :custom_name="moveform.companyName"
  596. :needCard="true"
  597. :isShowclose="isShowclose"
  598. :isPickLoss="isPickLoss"
  599. :isPickSelf="isPickSelf"
  600. :regionType="regionType"
  601. :isAddContact="isAddContact"
  602. @cancel="cancelConcatdia"
  603. @addContactNext="addContactNext">
  604. </Contactdia>
  605. <!-- 冻结理由弹窗 -->
  606. <el-dialog
  607. :visible.sync="isFreezeReason"
  608. :close-on-click-modal="false"
  609. :modal-append-to-body='false'
  610. @close="closeFreezeReason"
  611. width="800px"
  612. v-dialogDrag
  613. center>
  614. <div slot="title" style="display:flex;alignItems:center;">
  615. <img src="../../../assets/img/freeze-icon.png" alt="" width="16" style="margin-right:10px">
  616. <span style="fontSize:16px;">冻结</span>
  617. </div>
  618. <el-input
  619. type="textarea"
  620. :rows="6"
  621. placeholder="请输入冻结理由"
  622. v-model="freezeData.reason">
  623. </el-input>
  624. <div style="text-align:center;margin:30px 0;">
  625. <el-button type="primary" @click="handleConfirmFreeze">确定</el-button>
  626. <el-button type="primary" plain @click="closeFreezeReason">取消</el-button>
  627. </div>
  628. </el-dialog>
  629. <!-- 补全信息弹窗 -->
  630. <CompleteInfo
  631. :form="completeForm"
  632. @cancel="cancelCompleteInfo($event)"
  633. ></CompleteInfo>
  634. <!-- 申请转正、续约申请、补充协议选择申请合同模式弹窗 -->
  635. <el-dialog
  636. :visible.sync="contractModel.show"
  637. :modal-append-to-body='false'
  638. width="800px"
  639. class="self-dialog"
  640. v-dialogDrag
  641. >
  642. <div style="text-align:center;margin:30px 0 100px 0">
  643. <img width="191" src="../../../assets/img/cus_m/bzht.png" @click="handleContractModel('标准')" style="margin-right:80px;cursor: pointer;">
  644. <img width="191" src="../../../assets/img/cus_m/fbzht.png" @click="handleContractModel('非标准')" style="cursor: pointer;">
  645. <p style="font-size:15px;color:#333;text-align:left;padding-left:100px;margin-top:30px">
  646. 注:<br>
  647. 系统生成合同请选择标准合同入口<br>
  648. 非系统生成合同请选择非标准合同入口(包含已走完邮件流程的标准合同)</p>
  649. </div>
  650. </el-dialog>
  651. <!-- 申请转正、续约申请、补充协议标准合同模式下 合同信息弹窗 -->
  652. <ContractInfo
  653. :initData="contractDialog"
  654. @contractInfoDialogClose="contractInfoDialogClose"
  655. ></ContractInfo>
  656. <!-- 查看备注弹窗 -->
  657. <el-dialog
  658. :visible.sync="isRemarkLook"
  659. :close-on-click-modal="false"
  660. :modal-append-to-body="true"
  661. :append-to-body="true"
  662. @close="closeDia"
  663. width="800px"
  664. v-dialogDrag
  665. center>
  666. <div slot="title" style="display:flex;alignItems:center;">
  667. <img :src="$icons.auth" style="color:#fff;width:16px;height:16px;marginRight:5px;">
  668. <span style="fontSize:16px;">{{lookRemarkTitle}}</span>
  669. </div>
  670. <template>
  671. <div v-if="(RoleIdentity == 'rai_seller' || RoleIdentity == 'ficc_seller') || (SellerAdminId == lookRemarkItem.SellerId)">
  672. <el-input
  673. type="textarea"
  674. :rows="3"
  675. placeholder="请输入文字"
  676. v-model="lookRemarkTextarea">
  677. </el-input>
  678. <div class="look-remark-commit" @click="lookRemarkAdd">保存</div>
  679. </div>
  680. <el-table
  681. :data="lookRemarkList"
  682. border
  683. max-height="300"
  684. style="width: 100%; margin-top: 20px;margin-bottom: 20px">
  685. <el-table-column label="备注内容" key="Remark" align="center">
  686. <template slot-scope="scope">{{scope.row.Remark}}</template>
  687. </el-table-column>
  688. <el-table-column label="客户类型" align="center" key="ProductName" v-if="lookRemarkItem.IsShared && (RoleIdentity != 'rai_seller' && RoleIdentity != 'ficc_seller')">
  689. <template slot-scope="scope">{{scope.row.ProductName}}</template>
  690. </el-table-column>
  691. <el-table-column label="创建时间" key="CreateTime" align="center">
  692. <template slot-scope="scope">{{scope.row.CreateTime}}</template>
  693. </el-table-column>
  694. <el-table-column label="操作" align="center">
  695. <template slot-scope="{row}">
  696. <el-button type="text" size="small" style="color:red;" v-if="row.ButtonDel"
  697. @click="lookRemarkDelete(row)">删除</el-button>
  698. </template>
  699. </el-table-column>
  700. </el-table>
  701. </template>
  702. <div style="padding:20px 0;"></div>
  703. </el-dialog>
  704. <!-- 查看备注弹窗 -->
  705. <accumulative-frequency-dlg :accumulativeFrequencyDlg.sync="accumulativeFrequencyDlg" :accumulativeFrequencyItem.sync="accumulativeFrequencyItem" />
  706. <!-- 新建/编辑销售To Do的弹窗 -->
  707. <Modify-to-do-dialog
  708. :todoInfo.sync="todoInfo"
  709. :type="modifyToDoType"
  710. :isModifyDialogShow.sync="isModifyDialogShow"
  711. @modify="handleModifyToDo"
  712. ></Modify-to-do-dialog>
  713. <check-to-do-dialog
  714. :todoInfo.sync="todoInfo"
  715. :ischeckToDoDialogShow.sync="ischeckToDoDialogShow"
  716. @check="handleApprove"
  717. ></check-to-do-dialog>
  718. <history-to-do-dialog :todoInfo.sync="todoInfo" :isHistoryDialogShow.sync="isHistoryDialogShow"></history-to-do-dialog>
  719. <!-- 累计试用天数弹窗 -->
  720. <total-day-dialog
  721. :isTotalDayDialogShow.sync="isTotalDayDialogShow"
  722. :customInfo.sync="customInfo"
  723. />
  724. <!-- 服务记录弹窗 -->
  725. <share-list-dialog
  726. :isShareRecodeDialogShow="isShareRecodeDialogShow"
  727. :customInfo="customInfo"
  728. :allowEdit="false"
  729. @close="isShareRecodeDialogShow=false"/>
  730. <!-- 关闭客户弹窗 -->
  731. <el-dialog
  732. :visible.sync="isCloseCustomDialogShow"
  733. :close-on-click-modal="false"
  734. :modal-append-to-body='false'
  735. title="关闭"
  736. @close="isCloseCustomDialogShow=false"
  737. width="800px"
  738. v-dialogDrag
  739. center>
  740. <div class="close-custom-dialog">
  741. <p>是否确认将试用客户【{{customInfo.CompanyName}}】转为关闭客户?若关闭,请填写关闭理由!</p>
  742. <textarea rows="6" v-model="closeReason" placeholder="关闭理由描述"></textarea>
  743. <div class="btn-list">
  744. <el-button type="primary" plain @click="isCloseCustomDialogShow=false">取消</el-button>
  745. <el-button type="primary" @click="closeCustom">确定</el-button>
  746. </div>
  747. </div>
  748. </el-dialog>
  749. </div>
  750. </template>
  751. <script>
  752. import Capplydia from '../compontents/Capplydialog.vue'
  753. import { customInterence } from '@/api/api.js'
  754. import Contactdia from '../compontents/Contactdialog'
  755. import Cauthlist from '../compontents/CauthList.vue'
  756. import CompleteInfo from '../compontents/CompleteInfo.vue'
  757. import ContractInfo from '../compontents/ContractInfo.vue'
  758. import {locationOptions} from "./location"
  759. import AccumulativeFrequencyDlg from '../compontents/accumulativeFrequencyDlg.vue'
  760. import ModifyToDoDialog from '../compontents/ModifyToDoDialog.vue'
  761. import CheckToDoDialog from '../compontents/CheckToDoDialog.vue'
  762. import HistoryToDoDialog from '../compontents/HistoryToDoDialog.vue'
  763. import permissionView from './components/permissionView.vue'
  764. import mixin from './mixins/customlistMixin';
  765. import TotalDayDialog from '../compontents/TotalDayDialog.vue'
  766. import ShareListDialog from './components/shareListDialog.vue'
  767. export default {
  768. name:'',
  769. mixins: [ mixin ],
  770. components: {Capplydia,Contactdia,Cauthlist,CompleteInfo,ContractInfo, AccumulativeFrequencyDlg,
  771. ModifyToDoDialog, CheckToDoDialog,HistoryToDoDialog,TotalDayDialog,permissionView,
  772. ShareListDialog},
  773. computed:{
  774. Role() {
  775. let role = localStorage.getItem('Role') || '';
  776. return role;
  777. },
  778. RoleType() {
  779. let type = localStorage.getItem('RoleType') || '';
  780. return type;
  781. },
  782. RaiSellerRole(){
  783. return ['rai_seller','rai_admin','admin'].includes(this.Role)
  784. },
  785. SellerAdminId() {
  786. let type = localStorage.getItem('AdminId') || '';
  787. return type;
  788. },
  789. //管理权限
  790. ManageType() {
  791. return localStorage.getItem('ManageType') || '';
  792. },
  793. RoleIdentity(){
  794. let role = localStorage.getItem('RoleIdentity') || '';
  795. return role;
  796. },
  797. /* 导出客户地址 */
  798. exportUrlDl() {
  799. let url = this.exportUrl;
  800. /* 处理品种结构 */
  801. let param_arr = [];
  802. let param_arr_red = []
  803. //已购权限
  804. if(this.variety.length) {
  805. param_arr = this.variety.map(item => {
  806. return item[1];
  807. })
  808. }
  809. //阅读权限
  810. if(this.variety_red.length){
  811. param_arr_red = this.variety_red.map(item => {
  812. return item[1]
  813. })
  814. }
  815. let param_token = localStorage.getItem('auth')||'';
  816. let param_variety = param_arr.join(',');
  817. let param_variety_red = param_arr_red.join(',')
  818. // let param_sale = this.sales.length?this.sales.join(','):'';
  819. let param_saleArr = this.sales.length? this.sales.map(item=>{
  820. return item[item.length-1]
  821. }):[];
  822. let param_sale = param_saleArr.length ? param_saleArr.join(',') : ''
  823. let param_trade = this.trade?Number(this.trade):'';
  824. let param_package = this.setmealSelect ? Number(this.setmealSelect) : 0
  825. return `${url}?Status=${this.act_status}`+
  826. `&CompanyType=${this.type}`+
  827. `&PackageType=${param_package}`+
  828. `&IndustryId=${param_trade}`+
  829. `&AdminId=${param_sale}`+
  830. `&Province=${this.provinceValue}`+
  831. `&City=${this.cityValue}`+
  832. `&ChartPermissionIds=${param_variety_red}`+
  833. `&ContractPermissionIds=${param_variety}`+
  834. `&StartDate=${this.start_date}`+
  835. `&EndDate=${this.end_date}`+
  836. `&CreateStartDate=${this.createdate.length ? this.createdate[0]:''}`+
  837. `&CreateEndDate=${this.createdate.length ? this.createdate[1]:''}`+
  838. `&KeyWord=${this.search_txt}&${param_token}`
  839. },
  840. /* 导出联系人地址 */
  841. exportUserDl() {
  842. let url = this.exportUser;
  843. /* 处理品种结构 */
  844. let param_arr = [];
  845. let param_arr_red = []
  846. //已购品种
  847. if(this.variety.length) {
  848. param_arr = this.variety.map(item => {
  849. return item[1];
  850. })
  851. }
  852. //阅读权限
  853. if(this.variety_red.length){
  854. param_arr_red = this.variety_red.map(item => {
  855. return item[1]
  856. })
  857. }
  858. let param_token = localStorage.getItem('auth')||'';
  859. let param_variety = param_arr.join(',');
  860. let param_variety_red = param_arr_red.join(',')
  861. // let param_sale = this.sales.length?this.sales.join(','):'';
  862. let param_saleArr = this.sales.length? this.sales.map(item=>{
  863. return item[item.length-1]
  864. }):[];
  865. let param_sale = param_saleArr.length ? param_saleArr.join(',') : ''
  866. let param_trade = this.trade?Number(this.trade):'';
  867. let param_package = this.setmealSelect ? Number(this.setmealSelect) : 0
  868. return `${url}?Status=${this.act_status}`+
  869. `&CompanyType=${this.type}`+
  870. `&Province=${this.provinceValue}`+
  871. `&City=${this.cityValue}`+
  872. `&PackageType=${param_package}`+
  873. `&IndustryId=${param_trade}`+
  874. `&AdminId=${param_sale}`+
  875. `&ChartPermissionIds=${param_variety_red}`+
  876. `&ContractPermissionIds=${param_variety}`+
  877. `&StartDate=${this.start_date}`+
  878. `&EndDate=${this.end_date}`+
  879. `&CreateStartDate=${this.createdate.length ? this.createdate[0]:''}`+
  880. `&CreateEndDate=${this.createdate.length ? this.createdate[1]:''}`+
  881. `&KeyWord=${this.search_txt}&${param_token}`
  882. }
  883. },
  884. data () {
  885. return {
  886. contractModel:{
  887. show:false,
  888. data:null,//客户信息(列表用户数据)
  889. type:'',//类型 申请转正、续约申请、补充协议
  890. },// 申请转正、续约申请、补充协议 选择合同类型弹窗
  891. contractDialog:{
  892. show:false,
  893. type:'',//类型 申请转正、续约申请、补充协议
  894. cusdata:null,//客户信息(列表用户数据)
  895. },//申请转正、续约申请、补充协议 合同信息弹窗
  896. exportUrl:process.env.API_ROOT+'/custom/export',//导出数据
  897. exportUser:process.env.API_ROOT+'/custom/user/export',//导出联系人
  898. defaultprops:{
  899. multiple: true,
  900. label:'ClassifyName',
  901. children:'Items',
  902. value:'ChartPermissionId'
  903. },//块级选择器配置
  904. tabs:[],
  905. act_status:this.$route.query.act_status||'全部',//状态
  906. type:'',//类型
  907. typeArr:[
  908. {
  909. name:'ficc'
  910. },{
  911. name:'权益'
  912. }
  913. ],//类型
  914. setmealArr:[
  915. {
  916. name:'大套餐',
  917. id:1
  918. },{
  919. name:'小套餐',
  920. id:2
  921. }
  922. ],
  923. setmealSelect:'',//套餐的选择
  924. trade:'',
  925. tradeArr:[],//行业
  926. sales:'',
  927. salesArr:[],//销售
  928. defaultSalesProps:{
  929. multiple: true,
  930. label:'RealName',
  931. children:'ChildrenList',
  932. value:'AdminId'
  933. },//销售级联配置
  934. modifysalesArr:[],//修改销售选择列表(不存在不可选的销售)
  935. modifysalesArrtem:[],//从后台获取的修改销售时选择的列表(包括不可选的销售)
  936. variety:[],//已购品种
  937. variety_red:[],//阅读权限
  938. varietyArr:[],
  939. date:'',
  940. start_date:'',//开始日期
  941. end_date:'',//结束日期
  942. createdate:'',//创建日期
  943. tableData:[],
  944. isShowloadding:false,
  945. search_txt:'',
  946. total:1,
  947. page_no:sessionStorage.getItem('customListBack')?JSON.parse(sessionStorage.getItem('customListBack')).page_no:1,
  948. // page_no:1,
  949. pageSize:10,
  950. isApply:false,
  951. applyTit:'',
  952. applyForm: {},//申请弹窗客户信息
  953. isLook:false,//权限弹窗
  954. lookTitle:'',//权限弹窗标题
  955. lookAuthList:[],//查看的权限
  956. lookAuthListEquity:[],//权益
  957. authList:[],//现有权限列表
  958. citiesListEquity:[],//权益//现有权限列表
  959. citiesListpitchOn:[],//权益//现有权限列表
  960. citiesEquity:[],//权益//现有权限列表
  961. isMove:false,//修改销售
  962. moveform:{
  963. companyType:'',
  964. companyId:'',//客户id
  965. companyName:'',
  966. sale:'',//修改的销售
  967. sellerName:''
  968. },
  969. moveRule:{
  970. sale:[
  971. { required: true, message: '所属销售不能为空', trigger: 'blur' },
  972. ]
  973. },
  974. addCompanyId:'',//新增联系人的公司id
  975. diaform:{
  976. name:'',
  977. sex:1,
  978. telCode:'86',
  979. tel1:'',
  980. tel2:'',
  981. mail:'',
  982. post:'',
  983. desiger:'',
  984. depart:'',
  985. carte:'',
  986. Source:'pick_custom'
  987. },
  988. isAddContact:false,//是否添加联系人
  989. isShowclose:false,//是否显示取消
  990. isPickLoss:false,//联系人弹窗时记录是否是领取流失客户
  991. isPickSelf:false,//是否为领取自己的流失客户
  992. isAddTrial:false,//增加试用弹窗
  993. addTryId:'',//增开试用的id
  994. regionType:'',
  995. sort_type:'',//自定义排序方式
  996. sort_param:'',//自定义排序方式的哪一个
  997. isFreezeReason:false,//冻结理由弹窗
  998. freezeData:{
  999. reason:"",//冻结理由
  1000. CompanyId:'',
  1001. CompanyType:""
  1002. },
  1003. completeForm:{
  1004. show:false,
  1005. },//补全信息弹窗
  1006. contactFormData:{},//领取自己的流失客户新增联系人填写的表单数据
  1007. locationOptions,
  1008. valueLocation:[],
  1009. // locationValue:'',
  1010. provinceValue:'',
  1011. cityValue:'',
  1012. locationProps:{multiple: true,value:'name',children:'city',label:'name'},
  1013. btnCommandList:{
  1014. BtnAddAgreement: '补充协议',
  1015. BtnApplyReceive: '申请领取',
  1016. BtnDelay: '申请延期',
  1017. BtnDelete: '删除',
  1018. BtnDetail: '',
  1019. BtnEdit: '编辑',
  1020. BtnFreeze: '冻结',
  1021. BtnModifySeller: '修改销售',
  1022. BtnReceive: '领取客户',
  1023. BtnReceiveOther: '领取',
  1024. BtnSuspend: '启用/暂停',
  1025. BtnThaw: '申请解冻',
  1026. BtnTryOut: '增开试用',
  1027. BtnTurnPositive: '申请转正',
  1028. BtnUpdate: '续约申请',
  1029. BtnView: '查看权限',
  1030. // BtnRemarkEdit: '编辑备注',
  1031. BtnRemarkView: '备注',
  1032. BtnShare:'设置共享',
  1033. BtnCancelShare:'取消共享',
  1034. BtnServiceRecord:'沟通记录',
  1035. BtnClose:'关闭',
  1036. BtnLoss:'转流失'
  1037. }, // 按钮命令列表
  1038. lookRemarkTitle:'',//查看备注标题
  1039. lookRemarkList:[],//查看备注列表
  1040. lookRemarkTextarea:'',//备注的文本框
  1041. isRemarkLook:false ,////查看备注弹窗
  1042. lookRemarkItem:{},////查看备注的item项
  1043. accumulativeFrequencyDlg:false,//路演业阅读的弹框
  1044. accumulativeFrequencyItem:{},////
  1045. todoBtnType:[
  1046. {
  1047. label:'新建',
  1048. key:'add'
  1049. },
  1050. {
  1051. label:'编辑',
  1052. key:'edit'
  1053. },
  1054. {
  1055. label:'完成',
  1056. key:'confirm'
  1057. },
  1058. {
  1059. label:'历史',
  1060. key:'history'
  1061. }
  1062. ],//销售To-Do的按钮
  1063. todoInfo:null,//
  1064. isModifyDialogShow:false,//是否显示销售To-Do新建/编辑的弹窗
  1065. ischeckToDoDialogShow:false,//是否显示销售To-Do的确认完成弹窗
  1066. isHistoryDialogShow:false,//是否显示销售To-Do的历史记录弹窗
  1067. modifyToDoType:'add',//新增or编辑
  1068. todoType:'',
  1069. todoTypeArr:[
  1070. {
  1071. id:1,
  1072. name:'未完成'
  1073. },
  1074. { id:2,
  1075. name:'已完成'
  1076. },
  1077. { id:3,
  1078. name:'无任务'
  1079. }
  1080. ],
  1081. todoSrc:require('@/assets/img/icons/todo2.png'),
  1082. SortByTodo:false,
  1083. cusCon:null,
  1084. isFixed:false,
  1085. modifySales:0,//用于重新渲染选择销售级联选择窗
  1086. AddCompanyBtn:false,//控制新增客户按钮是否显示
  1087. };
  1088. },
  1089. watch: {
  1090. 'type': {
  1091. handler(newval) {
  1092. this.getIndustry();
  1093. this.getVariety();
  1094. }
  1095. },
  1096. },
  1097. /* 页面跳转前记录参数 */
  1098. beforeRouteLeave(to, form, next) {
  1099. let backData = {
  1100. page_no:this.page_no,
  1101. act_status:this.act_status,
  1102. type:this.type,
  1103. trade:this.trade,
  1104. sales:this.sales,
  1105. variety:this.variety,
  1106. date:this.date,
  1107. start_date:this.start_date,
  1108. end_date:this.end_date,
  1109. createdate:this.createdate,
  1110. keyword:this.search_txt,
  1111. setmealSelect:this.setmealSelect,
  1112. valueLocation:JSON.stringify(this.valueLocation),
  1113. todoStatus:this.todoType
  1114. }
  1115. sessionStorage.setItem('customListBack',JSON.stringify(backData))
  1116. next()
  1117. },
  1118. /* 页面进入前是否清除参数 */
  1119. beforeRouteEnter(to,from,next) {
  1120. if(from.path!='/editCustom'&&from.path!='/turnCustom'&&from.path!='/updateCustom'&&from.path!='/customDetail') {
  1121. sessionStorage.removeItem('customListBack')
  1122. }
  1123. next()
  1124. },
  1125. methods: {
  1126. handleChangeLocation(){
  1127. // const arr =[]
  1128. const provinceArr = []
  1129. const cityArr = []
  1130. this.valueLocation.forEach(item=>{
  1131. // arr.push(item.join(''))
  1132. // 省
  1133. provinceArr.push(item[0])
  1134. // 市
  1135. cityArr.push(item[1])
  1136. })
  1137. // this.locationValue=arr.join(',')
  1138. //provinceArr需要去重
  1139. this.provinceValue = [...new Set(provinceArr)].join(',')
  1140. this.cityValue = cityArr.join(',')
  1141. this.page_no = 1;
  1142. this.getTableData();
  1143. },
  1144. contractInfoDialogClose(e){
  1145. this.contractDialog={
  1146. show:false,
  1147. type:'',//类型 申请转正、续约申请、补充协议
  1148. cusdata:null,//客户信息(列表用户数据)
  1149. }
  1150. if(e==='updateList'){
  1151. this.getTableData();
  1152. }
  1153. },
  1154. // 申请转正、续约申请、补充协议点击合同类型
  1155. handleContractModel(e){
  1156. this.contractModel.show=false
  1157. if(e==='非标准'){
  1158. if(this.contractModel.type==='申请转正'){
  1159. sessionStorage.setItem('companyInfo',JSON.stringify(this.contractModel.data))
  1160. /* this.$router.push({
  1161. path:'/turnCustom',
  1162. }) */
  1163. const { href } = this.$router.resolve({path:'/turnCustom',});
  1164. window.open(href, '_blank');
  1165. }else if(this.contractModel.type==='续约申请'){
  1166. sessionStorage.setItem('companyInfo',JSON.stringify(this.contractModel.data))
  1167. /* this.$router.push({
  1168. path:'/updateCustom',
  1169. }) */
  1170. const { href } = this.$router.resolve({path:'/updateCustom',});
  1171. window.open(href, '_blank');
  1172. }else if(this.contractModel.type==='补充协议'){
  1173. sessionStorage.setItem('companyInfo',JSON.stringify(this.contractModel.data))
  1174. /* this.$router.push({
  1175. path:'/addAgreement',
  1176. }) */
  1177. const { href } = this.$router.resolve({path:'/addAgreement',});
  1178. window.open(href, '_blank');
  1179. }
  1180. return
  1181. }
  1182. // 标准合同
  1183. this.contractDialog.show=true
  1184. this.contractDialog.type=this.contractModel.type
  1185. this.contractDialog.cusdata=this.contractModel.data
  1186. },
  1187. /* 修改销售时选择列表 */
  1188. getmodifySale() {
  1189. customInterence.getSale({AllSeller:true}).then(res => {
  1190. if(res.Ret === 200) {
  1191. this.modifysalesArrtem = res.Data.List;
  1192. }
  1193. })
  1194. },
  1195. // 领取自己的流失客户下一步申请操作
  1196. addContactNext({formData}){
  1197. this.contactFormData=formData
  1198. this.isAddContact=false
  1199. this.isApply=true
  1200. },
  1201. //关闭冻结理由弹窗
  1202. closeFreezeReason(){
  1203. this.isFreezeReason=false
  1204. this.freezeData={
  1205. reason:"",
  1206. CompanyId:'',
  1207. CompanyType:""
  1208. }
  1209. },
  1210. //确认冻结
  1211. async handleConfirmFreeze(){
  1212. if(!this.freezeData.reason){
  1213. this.$message.error('请填写冻结理由')
  1214. return
  1215. }
  1216. let res=await customInterence.Freez({
  1217. CompanyId:Number(this.freezeData.CompanyId),
  1218. CompanyType:this.freezeData.CompanyType,
  1219. Remark:this.freezeData.reason
  1220. })
  1221. if(res.Ret===200){
  1222. this.$message.success('冻结成功');
  1223. this.closeFreezeReason()
  1224. this.getTableData();
  1225. }
  1226. },
  1227. /* 获取表格 */
  1228. getTableData() {
  1229. this.isShowloadding = true;
  1230. /* 处理品种结构 和 阅读权限 */
  1231. let param_arr = [];
  1232. let variety_red_arr = []
  1233. if(this.variety.length) {
  1234. param_arr = this.variety.map(item => {
  1235. return item[1];
  1236. })
  1237. }
  1238. if(this.variety_red.length){
  1239. variety_red_arr = this.variety_red.map(item => {
  1240. return item[1];
  1241. })
  1242. }
  1243. // 处理销售筛选
  1244. let salesArr=[]
  1245. if(this.sales.length){
  1246. salesArr=this.sales.map(item=>{
  1247. return item[item.length-1]
  1248. })
  1249. }
  1250. let params = {
  1251. SortParam:this.sort_param,//自定义排序字段
  1252. SortType:this.sort_type,//排序方式
  1253. PageSize:this.pageSize,
  1254. CurrentIndex:this.page_no,
  1255. Status:this.act_status,
  1256. CompanyType:this.type,
  1257. IndustryId:this.trade?Number(this.trade):'',
  1258. // AdminId:this.sales?String(this.sales):'',
  1259. AdminId:salesArr.join(','),
  1260. ChartPermissionIds:variety_red_arr.join(','),//阅读权限
  1261. ContractPermissionIds:param_arr.join(','),//已购权限
  1262. StartDate:this.start_date,
  1263. EndDate:this.end_date,
  1264. CreateStartDate:this.createdate[0]?this.createdate[0]:'',
  1265. CreateEndDate:this.createdate[0]?this.createdate[1]:'',
  1266. KeyWord:this.search_txt,
  1267. // Address:this.locationValue,
  1268. Province:this.provinceValue,
  1269. City:this.cityValue,
  1270. PackageType: this.setmealSelect ? Number(this.setmealSelect) : 0,
  1271. TodoStatus:this.todoType,
  1272. SortByTodo:this.SortByTodo,
  1273. TryStage: this.act_trialTag,
  1274. RegionType:this.fromArea
  1275. }
  1276. customInterence.customList(params).then(res => {
  1277. if(res.Ret === 200) {
  1278. res.Data.List&&res.Data.List.forEach(item => {
  1279. item.StartDate = item.StartDate.replace(/-/g,'.');
  1280. item.EndDate = item.EndDate.replace(/-/g,'.');
  1281. item.FreezeStartDate = item.FreezeStartDate?item.FreezeStartDate.replace(/-/g,'.'):'';
  1282. item.FreezeEndDate = item.FreezeEndDate?item.FreezeEndDate.replace(/-/g,'.'):'';
  1283. item.LossTime = item.LossTime?item.LossTime.replace(/-/g,'.'):'';
  1284. item.ApproveStatus = item.ApproveStatus=='待审批'?'待审批':''
  1285. })
  1286. this.tabs = res.Data.StatusCount;
  1287. console.log(this.tabs);
  1288. this.total = res.Data.Paging.Totals;
  1289. this.trialTagArr = res.Data.TryStageCount ? res.Data.TryStageCount.sort((x,y) => x.TryStage-y.TryStage ) : []
  1290. if(this.trialTagArr.length) {
  1291. const [ x, y, ...res] = this.trialTagArr;
  1292. this.trialTagArr = [ x,...res,y ];
  1293. }
  1294. this.tableData = res.Data.List || [];
  1295. this.AddCompanyBtn = res.Data.AddCompanyBtn
  1296. this.isShowloadding = false;
  1297. }
  1298. })
  1299. },
  1300. /* 获取品种信息 */
  1301. getVariety() {
  1302. customInterence.getvariety({
  1303. CompanyType:this.type
  1304. }).then(res => {
  1305. if(res.Ret === 200) {
  1306. this.varietyArr = res.Data.List;
  1307. }
  1308. })
  1309. },
  1310. /* 根据类型获取行业 */
  1311. getIndustry() {
  1312. customInterence.getindustry({
  1313. Classify:this.type
  1314. }).then(res => {
  1315. if(res.Ret === 200) {
  1316. this.tradeArr = res.Data.List || [];
  1317. }
  1318. })
  1319. },
  1320. /* 获取销售 */
  1321. getSale() {
  1322. let status=0;
  1323. if(this.act_status=='流失'){
  1324. status=1;
  1325. }
  1326. customInterence.getSale({"Status":status}).then(res => {
  1327. if(res.Ret === 200) {
  1328. this.salesArr = res.Data.List;
  1329. }
  1330. })
  1331. },
  1332. /* 新增客户 */
  1333. addCustom() {
  1334. this.$router.push({path:'/addCustom'});
  1335. },
  1336. /* 前往详情页 */
  1337. goDetail(item) {
  1338. this.regionType=item.RegionType
  1339. /* this.$router.push({
  1340. path:'/customDetail',
  1341. query:{
  1342. id:item.CompanyId,
  1343. }
  1344. }) */
  1345. const { href } = this.$router.resolve({
  1346. path:'/customDetail',
  1347. query:{
  1348. id:item.CompanyId,
  1349. }});
  1350. window.open(href, '_blank');
  1351. },
  1352. /* 搜索客户 重置筛选条件 */
  1353. searchHandle() {
  1354. this.init();
  1355. this.getTableData();
  1356. },
  1357. /* 重置 */
  1358. init() {
  1359. this.act_status = '全部';
  1360. if(this.Role == 'admin'||this.Role=='finance') {
  1361. this.type = '';
  1362. }
  1363. this.trade = '';
  1364. this.sales = '';
  1365. this.variety = '';
  1366. this.date = '';
  1367. this.valueLocation=[]
  1368. // this.locationValue='';
  1369. this.provinceValue=''
  1370. this.cityValue=''
  1371. this.start_date = '';//开始日期
  1372. this.end_date = '';//结束日期
  1373. this.page_no = 1;
  1374. },
  1375. /* 选择类型时 */
  1376. changeType() {
  1377. this.trade = '';
  1378. //this.variety= this.type=='ficc'?[[100,1]]:[];
  1379. this.variety=[]
  1380. this.page_no = 1;
  1381. this.getTableData()
  1382. },
  1383. /* 选择行业 */
  1384. changeTrade() {
  1385. this.page_no = 1;
  1386. this.getTableData();
  1387. },
  1388. /* 选择销售时 */
  1389. changeSales() {
  1390. this.page_no = 1;
  1391. this.getTableData();
  1392. },
  1393. /* 选择品种 */
  1394. changeVariety() {
  1395. this.page_no = 1;
  1396. this.getTableData();
  1397. },
  1398. /* 选择服务日期 */
  1399. dateChange(e) {
  1400. if(e[0]) {
  1401. this.start_date = e[0];
  1402. this.end_date = e[1];
  1403. }else {
  1404. this.start_date = '';
  1405. this.end_date = '';
  1406. }
  1407. this.page_no = 1;
  1408. this.getTableData();
  1409. },
  1410. /* 选择日期 */
  1411. dateChange2(e) {
  1412. // console.log(e[0]);
  1413. if(!e[0]) {
  1414. this.createdate =[]
  1415. }
  1416. this.page_no = 1;
  1417. this.getTableData();
  1418. },
  1419. /* 切换状态 表格重置 */
  1420. changeStatus(item,index) {
  1421. this.act_status = item.Status;
  1422. this.act_trialTag = 0;
  1423. this.$refs.userTable.clearSort()
  1424. this.sort_type = '';
  1425. this.sort_param = '';
  1426. this.SortByTodo = false
  1427. this.page_no = 1;
  1428. this.getTableData()
  1429. /* this.sales=''; */
  1430. //重新获取销售信息
  1431. this.getSale();
  1432. },
  1433. //关闭补全信息弹窗
  1434. cancelCompleteInfo(refresh){
  1435. // 刷新列表
  1436. if(refresh){
  1437. this.getTableData()
  1438. }
  1439. this.completeForm={
  1440. show:false
  1441. }
  1442. },
  1443. // 获取客户详情判断基本信息是否完整 id 客户
  1444. async getCustomerDetail(id){
  1445. let res=await customInterence.customDetail({
  1446. CompanyId:id
  1447. })
  1448. if(res.Ret!=200) return
  1449. let RoleType=localStorage.getItem('RoleType')
  1450. let IndustryId='',Source=';'
  1451. if(RoleType=='ficc'){
  1452. IndustryId=res.Data.FiccItem.IndustryId
  1453. Source=res.Data.FiccItem.Source
  1454. }else if(RoleType=='权益'){
  1455. IndustryId=res.Data.RaiItem.IndustryId
  1456. Source=res.Data.RaiItem.Source
  1457. }
  1458. // let IndustryId=res.Data.CreateAuth == 1?res.Data.FiccItem.IndustryId:res.Data.RaiItem.IndustryId
  1459. // let Source=res.Data.CreateAuth == 1?res.Data.FiccItem.Source:res.Data.RaiItem.Source
  1460. if((res.Data.Item.RegionType!='海外'&&!res.Data.Item.Province&&!res.Data.Item.City)||!res.Data.Item.CreditCode||!IndustryId||!Source){
  1461. this.completeForm={
  1462. nameDisable:res.Data.Item.CompanyName!='',
  1463. CityDisable:res.Data.Item.City!='',
  1464. CreditCodeDisable:res.Data.Item.CreditCode!='',
  1465. IndustryIdDisable:IndustryId!=' ',
  1466. SourceDisable:Source!='',
  1467. CompanyId:id,
  1468. name:res.Data.Item.CompanyName,
  1469. Province:res.Data.Item.Province,
  1470. RegionType:res.Data.Item.RegionType,
  1471. City:res.Data.Item.City,
  1472. CreditCode:res.Data.Item.CreditCode,
  1473. IndustryId:IndustryId?IndustryId:'',
  1474. Source:Source,
  1475. flag:false,//是否为跨部门
  1476. show:true
  1477. }
  1478. }else{
  1479. this.completeForm.show=false
  1480. }
  1481. return new Promise((resolve,reject)=>{
  1482. resolve(this.completeForm.show)
  1483. })
  1484. },
  1485. /* 下拉菜单操作 */
  1486. async itemclickHandle(query) {
  1487. if(query.type == '申请转正') {
  1488. //判断是否需要补全信息
  1489. let flag=await this.getCustomerDetail(query.data.CompanyId)
  1490. if(flag) return
  1491. this.contractModel={
  1492. show:true,
  1493. data:query.data,
  1494. type:'申请转正'
  1495. }
  1496. // sessionStorage.setItem('companyInfo',JSON.stringify(query.data))
  1497. // this.$router.push({
  1498. // path:'/turnCustom',
  1499. // })
  1500. }else if(query.type == '申请延期') {
  1501. //判断是否需要补全信息
  1502. let flag=await this.getCustomerDetail(query.data.CompanyId)
  1503. if(flag) return
  1504. this.applyTit = query.type;
  1505. this.applyForm = query.data;
  1506. this.isApply = true;
  1507. }else if(query.type == '修改销售') {
  1508. this.updateSale(query.data)
  1509. }else if(query.type == '启用' || query.type == '暂停') {
  1510. customInterence.Suspend({
  1511. CompanyId:query.data.CompanyId
  1512. }).then(res => {
  1513. if(res.Ret === 200) {
  1514. this.$message.success(res.Msg);
  1515. query.data.IsSuspend = query.data.IsSuspend === 1 ? 0 : 1;
  1516. }
  1517. })
  1518. }else if(query.type == '冻结') {
  1519. this.isFreezeReason=true
  1520. this.freezeData.CompanyId=query.data.CompanyId
  1521. // this.freezeData.CompanyType=query.data.CompanyType
  1522. let RoleType=localStorage.getItem('RoleType')
  1523. this.freezeData.CompanyType=RoleType
  1524. // this.$confirm('确认冻结该客户?','提示',{
  1525. // type:'warning'
  1526. // }).then(() => {
  1527. // customInterence.Freez({
  1528. // CompanyId:query.data.CompanyId,
  1529. // CompanyType:query.data.CompanyType
  1530. // }).then(res => {
  1531. // if(res.Ret === 200) {
  1532. // this.$message.success('冻结成功');
  1533. // this.getTableData();
  1534. // }
  1535. // })
  1536. // }).catch(() => {});
  1537. }else if(query.type == '增开试用') {
  1538. this.addTrialHandle(query.data)
  1539. }else if(query.type=='编辑'){
  1540. this.editHandle(query.data)
  1541. }else if(query.type=='删除'){
  1542. this.delHandle(query.data)
  1543. }else if(query.type=='查看权限'){
  1544. this.lookHandle(query.data)
  1545. }else if(query.type=='续约申请'){
  1546. this.updateHandle(query.data)
  1547. }else if(query.type=='补充协议'){
  1548. this.addAgreement(query.data)
  1549. }else if(query.type=='申请解冻'){
  1550. this.applyPick(query.data,'申请解冻')
  1551. }else if(query.type=='申请领取'){
  1552. if(this.RaiSellerRole && query.data.IsScrounge == 1){
  1553. this.$confirm('此客户存在长期且反复申请试用,但从未签约的情况,确定要领取吗?','申请领取',{
  1554. type:'warning'
  1555. }).then(() => {
  1556. this.applyPick(query.data,'申请领取')
  1557. }).catch(() => {});
  1558. }else{
  1559. this.applyPick(query.data,'申请领取')
  1560. }
  1561. }else if(query.type=='领取客户'){
  1562. if(this.RaiSellerRole && query.data.IsScrounge == 1){
  1563. this.$confirm('此客户存在长期且反复申请试用,但从未签约的情况,确定要领取吗?','领取客户',{
  1564. type:'warning'
  1565. }).then(() => {
  1566. this.pickHandle(query.data)
  1567. }).catch(() => {})
  1568. }else{
  1569. this.pickHandle(query.data)
  1570. }
  1571. }else if(query.type=='备注'){
  1572. this.lookRemarkHandle(query.data)
  1573. }else if(query.type=='设置共享' || query.type=='取消共享'){
  1574. this.shareSetting(query.data)
  1575. }else if(query.type=='沟通记录'){
  1576. this.handleShowShareRecode(query.data)
  1577. }else if(query.type=='关闭'){
  1578. this.openCloseReasonDialog(query.data)
  1579. }else if(query.type=='转流失'){
  1580. this.turnLose(query.data)
  1581. }
  1582. },
  1583. /* 续约申请操作 */
  1584. async updateHandle(item) {
  1585. //判断是否需要补全信息
  1586. let flag=await this.getCustomerDetail(item.CompanyId)
  1587. if(flag) return
  1588. this.contractModel={
  1589. show:true,
  1590. data:item,
  1591. type:'续约申请'
  1592. }
  1593. // sessionStorage.setItem('companyInfo',JSON.stringify(item))
  1594. // this.$router.push({
  1595. // path:'/updateCustom',
  1596. // })
  1597. },
  1598. // 补充协议
  1599. async addAgreement(item) {
  1600. //判断是否需要补全信息
  1601. let flag=await this.getCustomerDetail(item.CompanyId)
  1602. if(flag) return
  1603. this.contractModel={
  1604. show:true,
  1605. data:item,
  1606. type:'补充协议'
  1607. }
  1608. // sessionStorage.setItem('companyInfo',JSON.stringify(item))
  1609. // this.$router.push({
  1610. // path:'/addAgreement',
  1611. // })
  1612. },
  1613. /* 申请领取/解冻操作 */
  1614. async applyPick(item,type) {
  1615. //判断是否需要补全信息
  1616. let flag=await this.getCustomerDetail(item.CompanyId)
  1617. if(flag) return
  1618. this.applyTit = type;
  1619. this.applyForm = item;
  1620. // 如果是申请领取(即领取自己流失客户)先添加联系人再进行申请操作
  1621. if(type=='申请领取'&& (item.SellerId != localStorage.getItem("AdminId"))){
  1622. this.isPickLoss = true;
  1623. this.isPickSelf=true
  1624. this.regionType = item.RegionType;
  1625. this.addCompanyId = item.CompanyId;
  1626. this.diaform={
  1627. name:'',
  1628. sex:1,
  1629. telCode:'86',
  1630. tel1:'',
  1631. tel2:'',
  1632. mail:'',
  1633. post:'',
  1634. desiger:'',
  1635. depart:'',
  1636. carte:'',
  1637. Source:'pick_custom'
  1638. },
  1639. this.isAddContact = true;
  1640. }else{
  1641. this.isApply = true;
  1642. }
  1643. },
  1644. /* 領取流失客戶操作 */
  1645. async pickHandle(item) {
  1646. //判断是否需要补全信息
  1647. let flag=await this.getCustomerDetail(item.CompanyId)
  1648. if(flag) return
  1649. if(this.RaiSellerRole && item.IsScrounge == 1){
  1650. // 已经弹过二次确认弹窗 避免再一次的弹窗
  1651. this.isPickLoss = true;
  1652. this.regionType = item.RegionType;
  1653. this.addCompanyId = item.CompanyId;
  1654. this.diaform.telCode='86'
  1655. this.isAddContact = true;
  1656. return
  1657. }
  1658. this.$confirm('是否确认领取该客户?','提示',{
  1659. type:'warning'
  1660. }).then(() => {
  1661. // /* 如果是权益领取,需要添加联系人 */
  1662. // if(this.RoleType == '权益') {
  1663. this.isPickLoss = true;
  1664. this.regionType = item.RegionType;
  1665. this.addCompanyId = item.CompanyId;
  1666. this.diaform.telCode='86'
  1667. this.isAddContact = true;
  1668. // }else {
  1669. // customInterence.Pick({
  1670. // CompanyId:item.CompanyId,
  1671. // }).then(res => {
  1672. // if(res.Ret === 200) {
  1673. // this.$message.success(res.Msg);
  1674. // this.getTableData();
  1675. // }
  1676. // })
  1677. // }
  1678. }).catch(() => {});
  1679. },
  1680. /* 修改销售操作 */
  1681. updateSale(item) {
  1682. this.moveform = {
  1683. companyType:item.CompanyType,
  1684. companyName:item.CompanyName,
  1685. companyId:item.CompanyId,
  1686. sale:'',
  1687. sellerName:item.SellerName,
  1688. }
  1689. this.handleModifysalesArr(item.SellerIds)
  1690. this.isMove = true;
  1691. },
  1692. /* 查看权限 */
  1693. lookHandle(item) {
  1694. this.lookTitle = item.CompanyName;
  1695. customInterence.lookauth({
  1696. CompanyId:item.CompanyId
  1697. }).then(res => {
  1698. if(res.Ret === 200) {
  1699. this.isLook = true;
  1700. let auth = [];
  1701. res.Data.List ? res.Data.List.forEach(item=> {
  1702. auth.push(item.Items)
  1703. }):''
  1704. this.lookAuthList = auth.flat(Infinity);
  1705. let authEquity =[] //权益
  1706. res.Data.ListRai ? res.Data.ListRai.forEach(item=> {//权益
  1707. // 过滤没有权限的套餐
  1708. authEquity.push(item.Items.filter(it => item.CheckList.includes(it.ChartPermissionId)))
  1709. }):''
  1710. this.lookAuthListEquity = authEquity.flat(Infinity) //权益
  1711. }
  1712. })
  1713. },
  1714. /* 编辑客户 */
  1715. editHandle(item) {
  1716. /* this.$router.push({
  1717. path:'/editCustom',
  1718. query:{
  1719. id:item.CompanyId
  1720. }
  1721. }) */
  1722. this.regionType=item.RegionType
  1723. const { href } = this.$router.resolve({
  1724. path:'/editCustom',
  1725. query:{
  1726. id:item.CompanyId,
  1727. }});
  1728. window.open(href, '_blank');
  1729. },
  1730. /* 删除客户 */
  1731. delHandle(item) {
  1732. this.$confirm('删除后客户将不能查阅报告,确定删除吗?','提示',{
  1733. type:'warning'
  1734. }).then(() => {
  1735. customInterence.customDel({
  1736. CompanyId:item.CompanyId
  1737. }).then(res => {
  1738. if(res.Ret === 200) {
  1739. this.$message.success(res.Msg)
  1740. this.getTableData()
  1741. // let index = this.tableData.indexOf(item);
  1742. // this.tableData.splice(index,1)
  1743. }
  1744. })
  1745. }).catch(() => {});
  1746. },
  1747. /* 页码改变 */
  1748. handleCurrentChange(page) {
  1749. this.page_no = page;
  1750. this.getTableData();
  1751. },
  1752. /* 关闭查看权限弹窗 */
  1753. closeDia() {
  1754. this.lookTitle = '';
  1755. this.lookRemarkTextarea = '';
  1756. this.lookRemarkList = []
  1757. this.resetEquity()
  1758. this.isLook = false;
  1759. },
  1760. /* 关闭弹框后重置 */
  1761. resetEquity(){
  1762. this.lookAuthList = [];
  1763. this.lookAuthListEquity = []
  1764. },
  1765. /* 取消申请弹窗 */
  1766. cancelHandle(type) {
  1767. this.isApply = false;
  1768. this.isPickSelf=false
  1769. this.diaform={}
  1770. this.contactFormData={}
  1771. if(type == 1) {
  1772. this.getTableData();
  1773. }
  1774. },
  1775. /* 移动客户所属销售 */
  1776. saveMove() {
  1777. this.$refs.moveform.validate((valid) => {
  1778. if (valid) {
  1779. customInterence.moveSale({
  1780. CompanyType:this.moveform.companyType,
  1781. CompanyId:this.moveform.companyId,
  1782. SellsId:Number(this.moveform.sale[1]) || Number(this.moveform.sale[2])
  1783. }).then(res => {
  1784. if(res.Ret === 200) {
  1785. this.$message.success(res.Msg);
  1786. this.getTableData();
  1787. this.isMove = false;
  1788. }
  1789. })
  1790. }
  1791. })
  1792. },
  1793. /* 取消移动客户 */
  1794. cancelMove() {
  1795. this.$refs.moveform.resetFields();
  1796. this.isMove = false;
  1797. },
  1798. /* 领取流失添加联系人后再领取 */
  1799. cancelConcatdia(type) {
  1800. this.isAddContact = false;
  1801. this.isPickSelf=false
  1802. this.diaform = {
  1803. name:'',
  1804. sex:1,
  1805. telCode:'86',
  1806. tel1:'',
  1807. tel2:'',
  1808. mail:'',
  1809. post:'',
  1810. desiger:'',
  1811. depart:'',
  1812. carte:'',
  1813. Source:'pick_custom'
  1814. };
  1815. if(type == 1) {
  1816. customInterence.Pick({
  1817. CompanyId:this.addCompanyId,
  1818. }).then(res => {
  1819. if(res.Ret === 200) {
  1820. this.$message.success(res.Msg);
  1821. this.getTableData();
  1822. }
  1823. })
  1824. }else {
  1825. this.$message.warning('领取失败')
  1826. }
  1827. },
  1828. /* 增加试用 */
  1829. addTrialHandle(item) {
  1830. this.authList = [];
  1831. customInterence.lookauth({
  1832. CompanyId:item.CompanyId,
  1833. LookType:1
  1834. }).then(res => {
  1835. if(res.Ret === 200) {
  1836. let auth = [];
  1837. // res.Data.List 有值为 ficc
  1838. // res.Data.ListRai 有值为 权益
  1839. res.Data.List ? res.Data.List.forEach(item=> {
  1840. item.Items=item.Items||[]
  1841. item.CheckList=item.CheckList||[]
  1842. let obj = {
  1843. checkAll:item.CheckList&&item.CheckList.length===item.Items.length?true:false,
  1844. isIndeterminate:item.CheckList&&item.CheckList.length>0 && item.CheckList.length<item.Items.length,
  1845. defaultAuth:item.CheckList,
  1846. customType:'ficc',
  1847. ...item,
  1848. }
  1849. auth.push(obj)
  1850. }):
  1851. // 权益 RaiMerge 0不管 1合并 2拆分 所传入的数据结构不一样
  1852. res.Data.ListRai[0].RaiMerge==1?res.Data.ListRai.forEach(item=> { // 合并
  1853. let obj = {
  1854. checkAll:item.CheckList&&item.CheckList.length===item.Items.length?true:false,
  1855. isIndeterminate:item.CheckList&&item.CheckList.length>0 && item.CheckList.length<item.Items.length,
  1856. defaultAuth:item.CheckList,
  1857. ...item,
  1858. }
  1859. auth.push(obj)
  1860. }): res.Data.ListRai.forEach(item=> { // 拆分
  1861. let obj = {
  1862. defaultAuth:item.CheckList,
  1863. customType:'权益',
  1864. ...item,
  1865. }
  1866. // 组合所需的数据格式
  1867. obj.dataList=[
  1868. {
  1869. PermissionTypeName:'',
  1870. medicine:{
  1871. value:'医药',
  1872. isIndeterminate:item.CheckList.filter(id => [obj.Items[0].ChartPermissionId,obj.Items[1].ChartPermissionId].includes(id)).length ==1,
  1873. isCheckAll:item.CheckList.filter(id => [obj.Items[0].ChartPermissionId,obj.Items[1].ChartPermissionId].includes(id)).length == 2,
  1874. isDisabled:item.CheckList.filter(id => [obj.Items[0].ChartPermissionId,obj.Items[1].ChartPermissionId].includes(id)).length ==2
  1875. },
  1876. consumption:{
  1877. value:'消费',
  1878. isIndeterminate:item.CheckList.filter(id => [obj.Items[2].ChartPermissionId,obj.Items[3].ChartPermissionId].includes(id)).length ==1,
  1879. isCheckAll:item.CheckList.filter(id => [obj.Items[2].ChartPermissionId,obj.Items[3].ChartPermissionId].includes(id)).length == 2,
  1880. isDisabled:item.CheckList.filter(id => [obj.Items[2].ChartPermissionId,obj.Items[3].ChartPermissionId].includes(id)).length ==2
  1881. },
  1882. technology:{
  1883. value:'科技',
  1884. isIndeterminate:item.CheckList.filter(id => [obj.Items[4].ChartPermissionId,obj.Items[5].ChartPermissionId].includes(id)).length ==1,
  1885. isCheckAll:item.CheckList.filter(id => [obj.Items[4].ChartPermissionId,obj.Items[5].ChartPermissionId].includes(id)).length == 2,
  1886. isDisabled:item.CheckList.filter(id => [obj.Items[4].ChartPermissionId,obj.Items[5].ChartPermissionId].includes(id)).length ==2
  1887. },
  1888. smart:{
  1889. value:'智造',
  1890. isIndeterminate:item.CheckList.filter(id => [obj.Items[6].ChartPermissionId,obj.Items[7].ChartPermissionId].includes(id)).length ==1,
  1891. isCheckAll:item.CheckList.filter(id => [obj.Items[6].ChartPermissionId,obj.Items[7].ChartPermissionId].includes(id)).length == 2,
  1892. isDisabled:item.CheckList.filter(id => [obj.Items[6].ChartPermissionId,obj.Items[7].ChartPermissionId].includes(id)).length ==2
  1893. },
  1894. strategy:{
  1895. value:'策略'
  1896. },
  1897. experts:{
  1898. value:'专家'
  1899. },
  1900. roadshow:{
  1901. value:'路演服务'
  1902. },
  1903. choose:{
  1904. value:'研选订阅'
  1905. },
  1906. points:{
  1907. value:'研选扣点包'
  1908. },
  1909. },
  1910. {
  1911. PermissionTypeName:{
  1912. value:'主观',
  1913. isIndeterminate:[1,2,3].includes(item.CheckList.filter(id => [obj.Items[0].ChartPermissionId,obj.Items[2].ChartPermissionId,
  1914. obj.Items[4].ChartPermissionId,obj.Items[6].ChartPermissionId].includes(id)).length),
  1915. isCheckAll:item.CheckList.filter(id => [obj.Items[0].ChartPermissionId,obj.Items[2].ChartPermissionId,
  1916. obj.Items[4].ChartPermissionId,obj.Items[6].ChartPermissionId].includes(id)).length == 4,
  1917. isDisabled:item.CheckList.filter(id => [obj.Items[0].ChartPermissionId,obj.Items[2].ChartPermissionId,
  1918. obj.Items[4].ChartPermissionId,obj.Items[6].ChartPermissionId].includes(id)).length ==4
  1919. },
  1920. medicine:{
  1921. value:obj.Items[0].ChartPermissionId,
  1922. isDisabled:item.CheckList.includes(obj.Items[0].ChartPermissionId)
  1923. },
  1924. consumption:{
  1925. value:obj.Items[2].ChartPermissionId,
  1926. isDisabled:item.CheckList.includes(obj.Items[2].ChartPermissionId)
  1927. },
  1928. technology:{
  1929. value:obj.Items[4].ChartPermissionId,
  1930. isDisabled:item.CheckList.includes(obj.Items[4].ChartPermissionId)
  1931. },
  1932. smart:{
  1933. value:obj.Items[6].ChartPermissionId,
  1934. isDisabled:item.CheckList.includes(obj.Items[6].ChartPermissionId)
  1935. },
  1936. strategy:{
  1937. value:obj.Items[8].ChartPermissionId,
  1938. isDisabled:item.CheckList.includes(obj.Items[8].ChartPermissionId)
  1939. },
  1940. experts:{
  1941. value:obj.Items[9].ChartPermissionId,
  1942. isDisabled:item.CheckList.includes(obj.Items[9].ChartPermissionId)
  1943. },
  1944. roadshow:{
  1945. value:obj.Items[10].ChartPermissionId,
  1946. isDisabled:item.CheckList.includes(obj.Items[10].ChartPermissionId)
  1947. },
  1948. choose:{
  1949. value:obj.Items[11].ChartPermissionId,
  1950. isDisabled:item.CheckList.includes(obj.Items[11].ChartPermissionId)
  1951. },
  1952. points:{
  1953. value:obj.Items[12].ChartPermissionId,
  1954. isDisabled:item.CheckList.includes(obj.Items[12].ChartPermissionId)
  1955. }
  1956. },
  1957. {
  1958. PermissionTypeName:{
  1959. value:'客观',
  1960. isIndeterminate:[1,2,3].includes(item.CheckList.filter(id => [obj.Items[1].ChartPermissionId,obj.Items[3].ChartPermissionId,
  1961. obj.Items[5].ChartPermissionId,obj.Items[7].ChartPermissionId].includes(id)).length),
  1962. isCheckAll:item.CheckList.filter(id => [obj.Items[1].ChartPermissionId,obj.Items[3].ChartPermissionId,
  1963. obj.Items[5].ChartPermissionId,obj.Items[7].ChartPermissionId].includes(id)).length == 4,
  1964. isDisabled:item.CheckList.filter(id => [obj.Items[1].ChartPermissionId,obj.Items[3].ChartPermissionId,
  1965. obj.Items[5].ChartPermissionId,obj.Items[7].ChartPermissionId].includes(id)).length ==4
  1966. },
  1967. medicine:{
  1968. value:obj.Items[1].ChartPermissionId,
  1969. isDisabled:item.CheckList.includes(obj.Items[1].ChartPermissionId)
  1970. },
  1971. consumption:{
  1972. value:obj.Items[3].ChartPermissionId,
  1973. isDisabled:item.CheckList.includes(obj.Items[3].ChartPermissionId)
  1974. },
  1975. technology:{
  1976. value:obj.Items[5].ChartPermissionId,
  1977. isDisabled:item.CheckList.includes(obj.Items[5].ChartPermissionId)
  1978. },
  1979. smart:{
  1980. value:obj.Items[7].ChartPermissionId,
  1981. isDisabled:item.CheckList.includes(obj.Items[7].ChartPermissionId)
  1982. },
  1983. strategy:{
  1984. value:obj.Items[8].ChartPermissionId,
  1985. isDisabled:item.CheckList.includes(obj.Items[8].ChartPermissionId)
  1986. },
  1987. experts:{
  1988. value:obj.Items[9].ChartPermissionId,
  1989. isDisabled:item.CheckList.includes(obj.Items[9].ChartPermissionId)
  1990. },
  1991. roadshow:{
  1992. value:obj.Items[10].ChartPermissionId,
  1993. isDisabled:item.CheckList.includes(obj.Items[10].ChartPermissionId)
  1994. },
  1995. choose:{
  1996. value:obj.Items[11].ChartPermissionId,
  1997. isDisabled:item.CheckList.includes(obj.Items[11].ChartPermissionId)
  1998. },
  1999. points:{
  2000. value:obj.Items[12].ChartPermissionId,
  2001. isDisabled:item.CheckList.includes(obj.Items[12].ChartPermissionId)
  2002. }
  2003. }
  2004. ]
  2005. auth.push(obj)
  2006. })
  2007. this.authList = auth;
  2008. }
  2009. })
  2010. this.addTryId = item.CompanyId;
  2011. this.isAddTrial = true;
  2012. },
  2013. /* 增加试用完成 */
  2014. addTryOver() {
  2015. this.isAddTrial = false;
  2016. this.getTableData();
  2017. },
  2018. /* 到期天数排序发生变化 全局排序 */
  2019. sortChangeHandle(item) {
  2020. if(item.column.label==='To-Do'){
  2021. this.SortByTodo = !this.SortByTodo
  2022. this.sort_type=''
  2023. this.sort_param=''
  2024. }else if(item.prop==='Status'){
  2025. this.SortByTodo = false
  2026. this.sort_type='asc'
  2027. this.sort_param = this.sort_param==='tryStage'?'':'tryStage'
  2028. }else if(item.prop==='deadline'){
  2029. this.SortByTodo = false
  2030. this.sort_type='asc'
  2031. this.sort_param = this.sort_param==='deadline'?'':'deadline'
  2032. }else{
  2033. this.SortByTodo = false
  2034. this.sort_type = item.order === 'ascending' ? 'asc':item.order === 'descending' ? 'desc' : '';
  2035. this.sort_param = item.column.label=='转正时间'?'formalTime'
  2036. :item.column.label=='冻结时间'?'freezeTime'
  2037. :item.column.label=='流失时间'?'lossTime'
  2038. :item.column.label=='关闭时间'?'closeTime':item.prop;
  2039. }
  2040. this.page_no = 1;
  2041. this.getTableData();
  2042. },
  2043. // 处理修改销售数据 不可以修改到已存在销售
  2044. handleModifysalesArr(ids){
  2045. let idsArr=ids.split('/')
  2046. let arr = _.cloneDeep(this.modifysalesArrtem)
  2047. this.modifysalesArr=arr.map(item=>{
  2048. if(item.ChildrenList){
  2049. item.ChildrenList=item.ChildrenList.filter(e=>{
  2050. return !idsArr.includes(e.AdminId)
  2051. })
  2052. }
  2053. return item
  2054. })
  2055. },
  2056. // 按钮列表
  2057. btnList(btnItem,part){
  2058. const allBtnList=[]
  2059. for (const key in btnItem) {
  2060. btnItem[key] && allBtnList.push(key)
  2061. }
  2062. if(part==='front'){
  2063. // 返回前三个按钮
  2064. return allBtnList.slice(0,3)
  2065. }else{
  2066. // 返回三个后按钮
  2067. return allBtnList.slice(3)
  2068. }
  2069. },
  2070. // 用于返回按钮名称
  2071. btnName(btnItem,row){
  2072. if(btnItem!=='BtnSuspend' && btnItem!=='BtnShare') return this.btnCommandList[btnItem]
  2073. if(btnItem=='BtnSuspend') return row.IsSuspend===1?'启用':'暂停'
  2074. if(btnItem=='BtnShare') return row.IsShare===1?'取消共享':'设置共享'
  2075. },
  2076. // 设置/取消 共享
  2077. shareSetting(row){
  2078. customInterence.setCustomShare({CompanyId:row.CompanyId,IsShare:row.IsShare==0?1:0}).then(res=>{
  2079. if(res.Ret==200){
  2080. this.$message.success(row.IsShare==0?'设置共享成功':'取消共享成功')
  2081. this.getTableData()
  2082. }
  2083. })
  2084. },
  2085. /* 查看备注 */
  2086. lookRemarkHandle(item) {
  2087. /*
  2088. lookRemarkTitle:'',//查看备注标题
  2089. lookRemarkList:[],//查看备注列表
  2090. */
  2091. this.lookRemarkTitle = "备注";
  2092. this.lookAuthList = [];
  2093. this.lookRemarkItem = item;
  2094. customInterence.lookRemarkAuth({
  2095. CompanyId:item.CompanyId
  2096. }).then(res => {
  2097. if(res.Ret === 200) {
  2098. this.lookRemarkList=res.Data;
  2099. }
  2100. })
  2101. this.isRemarkLook = true;
  2102. },
  2103. //新增备注
  2104. async lookRemarkAdd(){
  2105. if(!this.lookRemarkTextarea) return this.$message.error("请输入文本内容")
  2106. const res = await customInterence.lookRemarkAuthAdd({
  2107. CompanyId:this.lookRemarkItem.CompanyId,
  2108. Remark:this.lookRemarkTextarea
  2109. })
  2110. if(res.Ret===200) {
  2111. this.$message.success('保存成功')
  2112. this.lookRemarkList = []
  2113. this.lookRemarkTextarea =''
  2114. customInterence.lookRemarkAuth({
  2115. CompanyId:this.lookRemarkItem.CompanyId
  2116. }).then(res => {
  2117. if(res.Ret === 200) {
  2118. this.lookRemarkList=res.Data;
  2119. }
  2120. })
  2121. }
  2122. },
  2123. //删除备注
  2124. async lookRemarkDelete(data){
  2125. this.$confirm('备注删除后不可恢复,确认删除吗?','提示',{
  2126. confirmButtonText: '确定',
  2127. cancelButtonText: '取消',
  2128. type:'warning',
  2129. appendToBody:false
  2130. }).then(async()=>{
  2131. const res = await customInterence.deleteRemark({
  2132. RemarkId:data.RemarkId
  2133. })
  2134. if(res.Ret!==200) return
  2135. this.$message.success("删除成功")
  2136. customInterence.lookRemarkAuth({
  2137. CompanyId:this.lookRemarkItem.CompanyId
  2138. }).then(res => {
  2139. if(res.Ret === 200) {
  2140. this.lookRemarkList=res.Data;
  2141. }
  2142. })
  2143. })
  2144. },
  2145. accumulativeFrequencyClick(item){
  2146. this.accumulativeFrequencyDlg = true
  2147. this.accumulativeFrequencyItem = item.row
  2148. },
  2149. //销售To-Do的按钮,根据每一行的信息决定显示哪些按钮,必须返回一个数组
  2150. getToDoBtn(row){
  2151. let todoBtn = []
  2152. //该字段为true说明已有任务,隐藏新建按钮
  2153. if(row.TodoStatus){
  2154. todoBtn = this.todoBtnType.filter(i=>i.key!=='add')
  2155. }else{
  2156. todoBtn = this.todoBtnType.filter(i=>i.key!=='edit')
  2157. }
  2158. todoBtn = todoBtn.filter(i=>i.key!=='confirm')
  2159. //该字段为false说明操作人有权限审核,显示确认完成按钮
  2160. if(!row.HiddenConfirm){
  2161. let temp = {label:'完成',key:'confirm'}
  2162. if(row.CanConfirm){
  2163. temp.disable=false
  2164. temp.style=''
  2165. }else{
  2166. temp.disable=true
  2167. temp.style='color:#DCDFE6;'
  2168. }
  2169. todoBtn.splice(1,todoBtn.length-2,temp)
  2170. }
  2171. if(row.HiddenCreate){
  2172. todoBtn.shift()
  2173. }
  2174. //console.log('?',todoBtn)
  2175. return todoBtn
  2176. },
  2177. //销售To-Do的点击事件
  2178. handleToDoBtnClick(row,type){
  2179. this.todoInfo = row
  2180. //打开新建/编辑弹窗
  2181. if(['add','edit'].includes(type)){
  2182. this.modifyToDoType = type
  2183. this.isModifyDialogShow = true
  2184. this.ischeckToDoDialogShow = false
  2185. this.isHistoryDialogShow=false
  2186. }
  2187. //打开审核记录弹窗
  2188. if(type==='confirm'){
  2189. this.ischeckToDoDialogShow=true
  2190. this.isModifyDialogShow=false
  2191. this.isHistoryDialogShow=false
  2192. }
  2193. //打开历史记录弹窗
  2194. if(type==='history'){
  2195. this.isHistoryDialogShow=true
  2196. this.isModifyDialogShow=false
  2197. this.ischeckToDoDialogShow=false
  2198. }
  2199. },
  2200. //处理销售ToDo
  2201. //新建\编辑弹窗的确认事件
  2202. async handleModifyToDo({type,Description,ProductId,CompanyId,Id,EndTime}){
  2203. console.log(type,Description,ProductId,CompanyId,Id,EndTime)
  2204. let res
  2205. if(type==='add'){
  2206. res = await customInterence.addToDoItem({Description,ProductId,CompanyId,EndTime})
  2207. }else{
  2208. res = await customInterence.editToDoItem({Description,Id,EndTime})
  2209. }
  2210. if(res.Ret===200){
  2211. this.isModifyDialogShow=false
  2212. this.$message.success(`${type==='add'?'提交':'保存'}成功`);
  2213. this.getTableData()
  2214. }
  2215. },
  2216. handleApprove({Id,Remark}){
  2217. customInterence.checkToDo({Id,Remark}).then(res=>{
  2218. if(res.Ret===200){
  2219. this.ischeckToDoDialogShow=false
  2220. this.$message.success(`审核完成`);
  2221. this.getTableData()
  2222. }
  2223. })
  2224. },
  2225. getTodoBtnColor(colorName){
  2226. if(colorName==='red'){
  2227. return '#D1433A'
  2228. }else if(colorName==='green'){
  2229. return '#61D13A'
  2230. }else{
  2231. return '#999999'
  2232. }
  2233. },
  2234. changeTodoType(){
  2235. this.page_no = 1;
  2236. this.getTableData()
  2237. },
  2238. changeSort(){
  2239. this.SortByTodo = !this.SortByTodo
  2240. this.page_no = 1;
  2241. //自定义排序规则互斥,把其他的排序设置成默认值
  2242. this.sort_type=''
  2243. this.getTableData()
  2244. },
  2245. //根据AdminId生成sales:[]替换this.sales,并请求数据
  2246. async getSaleByAdminId(){
  2247. let temp = [["department_2","group_2","46"],["department_2","group_2","63"]]
  2248. let salesArr = []
  2249. const {adminId} = this.$route.query
  2250. //从/todoTask来的AdminId只会有一个
  2251. const getSale = (list,AdminId)=>{
  2252. for (let i in list) {
  2253. if(list[i].AdminId==AdminId){
  2254. return [list[i]]
  2255. }
  2256. if(list[i].ChildrenList){
  2257. let node=getSale(list[i].ChildrenList,AdminId);
  2258. if(node!==undefined){
  2259. return node.concat(list[i])
  2260. }
  2261. }
  2262. }
  2263. }
  2264. const res = await customInterence.getSale()
  2265. if(res.Ret === 200) {
  2266. salesArr = res.Data.List;
  2267. }
  2268. temp = getSale(salesArr,adminId)
  2269. this.sales = [temp.map(i=>i.AdminId).reverse()]
  2270. this.modifySales++
  2271. this.act_status = '试用'
  2272. this.getTableData();
  2273. },
  2274. },
  2275. created() {
  2276. /* 除admin账号 客户类型默认 */
  2277. if(!(this.Role == 'admin'||this.Role=='finance')) {
  2278. this.type = this.RoleType;
  2279. }
  2280. this.variety = this.type=='ficc'?[[100,1]]:[]
  2281. },
  2282. mounted() {
  2283. if(sessionStorage.getItem('customListBack')) {
  2284. let backData = JSON.parse(sessionStorage.getItem('customListBack'));
  2285. this.search_txt = backData.keyword;
  2286. this.page_no = backData.page_no,
  2287. this.act_status = backData.act_status,
  2288. this.type = backData.type,
  2289. this.trade = backData.trade,
  2290. this.sales = backData.sales,
  2291. this.variety = backData.variety,
  2292. this.date = backData.date,
  2293. this.start_date = backData.start_date,
  2294. this.end_date = backData.end_date,
  2295. this.createdate = backData.createdate,
  2296. this.search_txt = backData.keyword,
  2297. this.setmealSelect =backData.setmealSelect,
  2298. this.valueLocation=JSON.parse(backData.valueLocation)
  2299. this.todoType = backData.todoStatus
  2300. // const arr =[]
  2301. // this.valueLocation.forEach(item=>{
  2302. // arr.push(item.join(''))
  2303. // })
  2304. // this.locationValue=arr.join(',')
  2305. this.handleChangeLocation()
  2306. }
  2307. this.getSale();
  2308. //this.getTableData();
  2309. //获取从/todoTask传来的参数,如果有
  2310. // console.log(this.$route);
  2311. // 从客户区域统计列表过来的参数
  2312. this.act_status=this.$route.params.Status ? this.$route.params.Status : this.act_status
  2313. this.type = this.$route.params.CompanyType ? this.$route.params.CompanyType : this.type
  2314. this.act_trialTag = this.$route.params.TryStage ? this.$route.params.TryStage : this.act_trialTag
  2315. this.valueLocation = this.$route.params.valueLocation ?
  2316. JSON.parse(sessionStorage.getItem('regionData')) || [] :[]
  2317. if(this.$route.query.adminId){
  2318. this.isShowloadding = true
  2319. this.getSaleByAdminId();
  2320. }else if(this.valueLocation.length>0){
  2321. this.handleChangeLocation()
  2322. sessionStorage.removeItem('regionData')
  2323. }else{
  2324. this.getTableData();
  2325. }
  2326. this.getmodifySale();
  2327. },
  2328. }
  2329. </script>
  2330. <style lang='scss'>
  2331. .self-dialog{
  2332. width: 100% !important;
  2333. max-width: 100% !important;
  2334. .el-dialog__header{
  2335. background-color: #fff;
  2336. .el-dialog__close.el-icon.el-icon-close{
  2337. color: #666;
  2338. }
  2339. }
  2340. }
  2341. .ficc-package {
  2342. display: inline-block;
  2343. font-size: 12px;
  2344. padding:0 5px;
  2345. border-radius: 5px;
  2346. color: #3994fb;
  2347. background-color: #dcecfc;
  2348. }
  2349. .color-red{
  2350. color:red !important;
  2351. }
  2352. .isShared::after{
  2353. content: '共享';
  2354. font-size: 12px;
  2355. // padding: 0px 0px 0px 2px;
  2356. width: 30px;
  2357. color: #3994fb;
  2358. background-color: #dcecfc;
  2359. position: absolute;
  2360. left: 0;
  2361. bottom: 0;
  2362. border-top-right-radius: 5px;
  2363. }
  2364. .customList_container {
  2365. .mx-datepicker {
  2366. width: 200px !important;
  2367. }
  2368. .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner {
  2369. background-color: #409EFF !important;
  2370. border-color: #409EFF;
  2371. }
  2372. .el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner {
  2373. background-color: #409EFF !important;
  2374. border-color: #409EFF;
  2375. }
  2376. .customList_bot_top {
  2377. display: flex;
  2378. justify-content: space-between;
  2379. align-items: center;
  2380. margin-bottom: 28px;
  2381. padding: 20px 30px;
  2382. background: #fff;
  2383. border: 1px solid #ECECEC;
  2384. border-radius: 4px;
  2385. box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  2386. }
  2387. .customList_bot {
  2388. min-height: calc(100vh - 324px);
  2389. padding: 20px 30px 80px;
  2390. background: #fff;
  2391. position: relative;
  2392. border: 1px solid #ECECEC;
  2393. border-radius: 4px;
  2394. box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  2395. .customList_top {
  2396. padding: 20px 0 30px;
  2397. background: #fff;
  2398. .el-cascader__search-input{
  2399. min-width: 30px;
  2400. }
  2401. }
  2402. .tabs_cont {
  2403. display: flex;
  2404. align-items: center;
  2405. color: #333;
  2406. margin-bottom: 30px;
  2407. &.trial-ul {
  2408. padding: 0 30px;
  2409. }
  2410. .tab {
  2411. width: 129px;
  2412. height: 22px;
  2413. line-height: 22px;
  2414. text-align: center;
  2415. font-size: 14px;
  2416. border-right:1px solid #707070;
  2417. cursor: pointer;
  2418. transition-delay: 0.05s;
  2419. &:hover {
  2420. color: #409EFF;
  2421. }
  2422. &.act {
  2423. // padding: 9px 24px;
  2424. height: 40px;
  2425. line-height: 40px;
  2426. background: #409EFF;
  2427. border-radius: 4px;
  2428. color: #fff;
  2429. border-color: #409EFF;
  2430. transform: scale(1.014);
  2431. }
  2432. &:last-child {
  2433. border: none;
  2434. }
  2435. }
  2436. .trial-item {
  2437. cursor: pointer;
  2438. margin-right: 30px;
  2439. &:hover {
  2440. color: #409EFF;
  2441. }
  2442. &.act {
  2443. color: #409EFF;
  2444. position: relative;
  2445. &::after {
  2446. content: "";
  2447. width: 100%;
  2448. height: 2px;
  2449. position: absolute;
  2450. bottom: -10px;
  2451. left: 50%;
  2452. transform: translateX(-50%);
  2453. background: #409EFF;
  2454. }
  2455. }
  2456. }
  2457. }
  2458. .try_style {
  2459. color: #BBBBBB;
  2460. }
  2461. .bot_cont{
  2462. //padding-bottom: 20px;
  2463. .fixedbar{
  2464. position: fixed;
  2465. right: 45px;
  2466. bottom: 20px;
  2467. background-color: transparent;
  2468. z-index: 2;
  2469. }
  2470. }
  2471. .todo-btn{
  2472. display: flex;
  2473. justify-content: space-around;
  2474. align-items: center;
  2475. /* padding: 0 10px; */
  2476. .hint{
  2477. width: 8px;
  2478. height: 8px;
  2479. background-color: #D1433A;
  2480. border-radius: 50%;
  2481. }
  2482. .btnwrap{
  2483. display: flex;
  2484. align-content: space-around;
  2485. flex-direction: column;
  2486. justify-content: space-between;
  2487. span.item{
  2488. margin-right: 10px;
  2489. font-size: 14px;
  2490. color:#409EFF;
  2491. cursor: pointer;
  2492. &:last-child{
  2493. margin-right: none;
  2494. }
  2495. }
  2496. }
  2497. }
  2498. .todolabel{
  2499. &+span.caret-wrapper{
  2500. .sort-caret.ascending{
  2501. border-bottom-color: #C0C4CC;
  2502. }
  2503. .sort-caret.descending{
  2504. border-top-color: #C0C4CC
  2505. }
  2506. }
  2507. }
  2508. .todolabel.sort{
  2509. &+span.caret-wrapper{
  2510. .sort-caret.ascending{
  2511. border-bottom-color: #409EFF;
  2512. }
  2513. }
  2514. }
  2515. .todolabel.hidden{
  2516. &+span.caret-wrapper{
  2517. display: none;
  2518. }
  2519. }
  2520. }
  2521. .menu_lists {
  2522. padding: 40px 18px;
  2523. border-radius: 4px;
  2524. .menu_item {
  2525. display: flex;
  2526. // align-items: center;
  2527. margin-bottom: 30px;
  2528. &:last-child {
  2529. margin-bottom: 0;
  2530. }
  2531. .list_item {
  2532. margin-right: 20px;
  2533. margin-bottom: 10px;
  2534. &:last-child {
  2535. margin-right: 0;
  2536. }
  2537. }
  2538. }
  2539. }
  2540. .mouse-enter {
  2541. &:hover {
  2542. text-decoration:underline;
  2543. }
  2544. }
  2545. .close-custom-dialog{
  2546. padding: 0 20px;
  2547. p{
  2548. font-weight: bold;
  2549. font-size: 16px;
  2550. }
  2551. textarea{
  2552. margin: 20px 0;
  2553. width:100%;
  2554. resize: none;
  2555. border-radius: 4px;
  2556. border:1px solid #DCDFE6;
  2557. box-sizing: border-box;
  2558. padding:15px;
  2559. }
  2560. .btn-list{
  2561. text-align: center;
  2562. margin: 25px 0;
  2563. }
  2564. }
  2565. }
  2566. </style>
  2567. <style lang="scss">
  2568. .customList_container {
  2569. .el-input--mini {
  2570. .el-input__inner{
  2571. padding: 0 6px !important;
  2572. height: 24px;
  2573. line-height: 24px;
  2574. color: #409EFF;
  2575. background: #ECF5FF;
  2576. border-color: #409EFF;
  2577. text-align: center;
  2578. }
  2579. .el-input__suffix {
  2580. right: -22px;
  2581. }
  2582. &.is-disabled {
  2583. .el-input__inner {
  2584. border-color: #E4E7ED;
  2585. }
  2586. .el-input__suffix {
  2587. display: none;
  2588. }
  2589. }
  2590. }
  2591. }
  2592. </style>
  2593. <style lang="scss">
  2594. .look-remark-commit{
  2595. width: 426px;
  2596. height: 41px;
  2597. background: #409EFF;
  2598. margin: 30px auto;
  2599. text-align: center;
  2600. line-height: 41px;
  2601. color: #fff;
  2602. box-shadow: 0px 2px 6px 1px rgba(64, 158, 255, 0.05);
  2603. border-radius: 4px 4px 4px 4px;
  2604. cursor: pointer;
  2605. }
  2606. </style>