AI销管
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

addreception.vue 11 KiB

2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
2 vuotta sitten
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. <template>
  2. <view class="cented-box">
  3. <view class="Pinspeak">客户信息</view>
  4. <view class="chented">
  5. <view class="title">
  6. <view class="titletext">客户姓名</view>
  7. <view class="titletext2">
  8. <input maxlength="10" class="titletext-input" style="color: #333333;" v-model="parames.name"
  9. placeholder-class="titletext-input" placeholder-style="color:#B2B2B2;" type="text"
  10. placeholder="请输入客户姓名(必填)" />
  11. </view>
  12. <view class="titleimg">
  13. </view>
  14. </view>
  15. <view class="title">
  16. <view class="titletext">客户性别</view>
  17. <view class="titletext2 displayclick" style="display: flex;align-items: center;padding-left: 10rpx;">
  18. <view class="sexRadio" @click="changeSex(1)" :class="{active:parames.sex == 1}">男士</view>
  19. <view class="sexRadio" @click="changeSex(2)" :class="{active:parames.sex == 2}">女士</view>
  20. </view>
  21. </view>
  22. <view class="title">
  23. <view class="titletext">联系电话</view>
  24. <view class="titletext2">
  25. <input class="titletext-input" style="color: #333333;" v-model="parames.phone" maxlength="11"
  26. placeholder-class="titletext-input" placeholder-style="color:#B2B2B2;" type="number"
  27. placeholder="请输入联系电话" />
  28. </view>
  29. </view>
  30. <view class="title">
  31. <view class="titletext">接待人数</view>
  32. <view class="titletext2" style="display: flex;align-items: center;justify-content: space-around;">
  33. <view class="num" v-for="i in 6" :key="i" :class="{active:parames.howMany == i+1}"
  34. @click="changeHowMany(i+1)">
  35. {{i + 1}}
  36. </view>
  37. </view>
  38. </view>
  39. <view class="title" style="border: none;" @click="Buildingselection()">
  40. <view class="titletext">客户来源</view>
  41. <view class="titletext2"
  42. style="font-size: 30rpx;font-weight: 400;color: #B2B2B2;line-height: 110rpx;padding-left: 10rpx;">
  43. <!-- {{parames.sourceName||'请选择客户来源'}} -->
  44. <text v-if="parames.sourceName" style="color: #333333;">{{parames.sourceName}}</text>
  45. <text v-else>请选择客户来源</text>
  46. </view>
  47. <view class="titleimg">
  48. <image class="titleimg1" src="../../../static/images/arrow.png" mode=""></image>
  49. </view>
  50. </view>
  51. </view>
  52. <view class="Pinspeak">顾问</view>
  53. <view class="chented" @click="clickShowhid()">
  54. <view class="title" style="border: none;">
  55. <view class="titletext">接待顾问</view>
  56. <view class="titletext2"
  57. style="font-size: 30rpx;font-weight: 400;color: #B2B2B2;line-height: 110rpx;padding-left: 10rpx;">
  58. <text v-if="text" style="color: #333333;">{{text}}</text>
  59. <text v-else>请选择接待顾问</text>
  60. </view>
  61. <view class="titleimg">
  62. <image class="titleimg1" src="../../../static/images/arrow.png" mode=""></image>
  63. </view>
  64. </view>
  65. </view>
  66. <view class="clive" @click="$noMultipleClicks(save)">确定</view>
  67. <u-select :mask-close-able="false" v-model="Showhiddenunits" mode="single-column" :list="list"
  68. @cancel="cancel" @confirm="confirm"></u-select>
  69. <u-select :mask-close-able="false" v-model="Showhid" mode="single-column" :list="freeList" @cancel="cancel1"
  70. @confirm="confirm1"></u-select>
  71. <u-modal v-model="show" :mask-close-able="true" :title="'代接待提醒'" :confirm-text="confirmtext"
  72. :cancel-text='canceltext' @cancel="confirmA" @confirm="confirmB" :show-cancel-button='true'
  73. :content="content"></u-modal>
  74. </view>
  75. </template>
  76. <script>
  77. var app = getApp();
  78. var config = require("../../../config");
  79. export default {
  80. data() {
  81. return {
  82. noClick: true,
  83. Showhiddenunits: false,
  84. list: [{
  85. label: '自然到访',
  86. value: '自然到访'
  87. },
  88. {
  89. label: '渠道推荐',
  90. value: '渠道推荐'
  91. },
  92. ],
  93. parames: {
  94. name: '',
  95. // 性别1男 2女
  96. sex: 1,
  97. phone: '',
  98. source: null,
  99. sourceName: null,
  100. howMany: 1,
  101. agentId: null,
  102. projectId: '',
  103. replaceReception: 0
  104. },
  105. freeList: [],
  106. Showhid: false,
  107. text: null,
  108. show: false,
  109. content: '东临碣石,以观沧海',
  110. confirmtext: '1', //确认文字
  111. canceltext: '2', //取消文字
  112. daitiReceptionobj: {},
  113. isShow: false, // 默认隐藏该权限
  114. userInfo: {}, // 用户信息
  115. };
  116. },
  117. onLoad() {
  118. this.userInfo = uni.getStorageSync('weapp_session_userInfo_data');
  119. console.log(this.userInfo, 'adkljsakldjaskljdklasjdklsajdklasjdklasjdlk')
  120. },
  121. onShow() {
  122. let newmenulist = uni.getStorageSync('weapp_session_Menu_data');
  123. this.isShow = newmenulist.jd_zp
  124. this.parames.projectId = uni.getStorageSync('buildingID').id;
  125. this.getFreeList();
  126. },
  127. methods: {
  128. //取消
  129. confirmA() {
  130. if (this.daitiReceptionobj.assign != null) {
  131. this.parames.agentId = this.daitiReceptionobj.assign.accountId;
  132. this.baochunfun()
  133. } else {
  134. uni.showToast({
  135. icon: "none",
  136. title: "【" + this.daitiReceptionobj.owner.name + "】正在接待中"
  137. })
  138. return;
  139. }
  140. },
  141. // 确认
  142. confirmB() {
  143. console.log(this.daitiReceptionobj.replacement.accountId)
  144. this.parames.agentId = this.daitiReceptionobj.replacement.accountId;
  145. this.parames.replaceReception = 1;
  146. this.baochunfun()
  147. },
  148. save() {
  149. if (this.parames.name.length == 0) {
  150. uni.showToast({
  151. icon: "none",
  152. title: "客户姓名不能为空"
  153. })
  154. return;
  155. }
  156. if (this.parames.phone && this.parames.phone.length < 11) {
  157. uni.showToast({
  158. icon: "none",
  159. title: "手机号码不能小于11位"
  160. })
  161. return;
  162. }
  163. if (this.parames.phone && this.parames.phone.length > 11) {
  164. uni.showToast({
  165. icon: "none",
  166. title: "手机号码不能大于11位"
  167. })
  168. return;
  169. }
  170. const that = this;
  171. this.$u.post("customer/daitiReception", {
  172. phone: that.parames.phone,
  173. projectId: that.parames.projectId,
  174. agentId: that.parames.agentId
  175. }).then(res => {
  176. if (res.unchecked == 0) {
  177. that.baochunfun()
  178. } else {
  179. if (res.zs == 0) {
  180. that.parames.agentId = res.assign.accountId;
  181. that.baochunfun()
  182. } else {
  183. if (res.assign == null && res.replacement == null) {
  184. that.baochunfun()
  185. } else {
  186. if (res.assign == null) {
  187. that.daitiReceptionobj = res;
  188. that.content = "此客户的顾问为【" + res.owner.name + "】,确认让【" + res.replacement.name +
  189. "】代接待吗?"
  190. that.confirmtext = res.replacement.name + "代接待", //确认文字
  191. that.canceltext = res.owner.name + '接待', //取消文字
  192. that.show = true;
  193. } else {
  194. that.daitiReceptionobj = res;
  195. console.log(that.daitiReceptionobj)
  196. that.content = "此客户的顾问为【" + res.owner.name + "】,确认让【" + res.replacement.name +
  197. "】代接待吗?"
  198. that.confirmtext = res.replacement.name + "代接待", //确认文字
  199. that.canceltext = res.assign.name + '接待', //取消文字
  200. that.show = true;
  201. }
  202. }
  203. }
  204. }
  205. })
  206. },
  207. baochunfun() {
  208. const {
  209. dataCode
  210. } = uni.getStorageSync("weapp_session_userInfo_data");
  211. if (this.parames.phone.length == 0) {
  212. this.parames.phone = null
  213. }
  214. uni.showLoading({
  215. title: "保存中",
  216. mask: true
  217. })
  218. if (dataCode == 6) {
  219. this.$u.post("/customer/gwAdd", this.parames).then(res => {
  220. uni.hideLoading();
  221. uni.showToast({
  222. icon: "none",
  223. title: "保存成功"
  224. })
  225. uni.navigateBack()
  226. })
  227. } else {
  228. this.$u.post("/customer/add", this.parames).then(res => {
  229. uni.hideLoading();
  230. uni.showToast({
  231. icon: "none",
  232. title: "保存成功"
  233. })
  234. uni.navigateBack()
  235. })
  236. }
  237. },
  238. changeSex(sex) {
  239. this.parames.sex = sex;
  240. },
  241. changeHowMany(num) {
  242. this.parames.howMany = num;
  243. },
  244. clickShowhid() {
  245. if (!this.isShow) {
  246. uni.showToast({
  247. icon: "none",
  248. title: '您没有指派权限~'
  249. })
  250. return
  251. }
  252. if (this.freeList.length == 0) {
  253. uni.showToast({
  254. icon: 'none',
  255. title: '当前无可用排班顾问',
  256. duration: 2000
  257. });
  258. } else {
  259. this.Showhid = true;
  260. }
  261. },
  262. cancel1() {
  263. this.Showhid = false;
  264. },
  265. confirm1(e) {
  266. this.text = e[0].label;
  267. this.parames.agentId = e[0].value;
  268. this.Showhid = false;
  269. },
  270. Buildingselection() {
  271. this.Showhiddenunits = true;
  272. },
  273. cancel() {
  274. this.Showhiddenunits = false;
  275. },
  276. confirm(e) {
  277. this.parames.sourceName = e[0].value;
  278. this.Showhiddenunits = false;
  279. },
  280. //获取顾问列表
  281. getFreeList() {
  282. this.$u.get("/zkAgentPool/freeList?itemId=" + this.parames.projectId).then(res => {
  283. this.freeList = res;
  284. this.freeList.forEach(item => {
  285. // console.log(item, '顾问')
  286. if (item.onLine == 0) {
  287. item.label = item.name + "(离线)";
  288. } else if (item.onLine == 1) {
  289. item.label = item.name + "(在线)";
  290. } else {
  291. item.label = item.name + "(无设备)";
  292. }
  293. item.value = item.agentId
  294. if (this.userInfo.accountId == item.agentId) {
  295. this.text = item.label
  296. this.parames.agentId = item.agentId;
  297. }
  298. })
  299. })
  300. },
  301. }
  302. };
  303. </script>
  304. <style lang="scss" scoped>
  305. .sexRadio {
  306. color: #BFBFBF;
  307. border: 1rpx solid #BFBFBF;
  308. font-size: 24rpx;
  309. width: 120rpx;
  310. height: 60rpx;
  311. text-align: center;
  312. display: flex;
  313. align-items: center;
  314. justify-content: center;
  315. &:last-child {
  316. margin-left: 20rpx;
  317. }
  318. &.active {
  319. background: #2B6FFF;
  320. color: #fff;
  321. border-color: #2B6FFF;
  322. }
  323. }
  324. .num {
  325. width: 50rpx;
  326. height: 50rpx;
  327. background: rgba(43, 110, 253, 0.1);
  328. color: #2B6EFD;
  329. font-size: 30rpx;
  330. display: flex;
  331. align-items: center;
  332. justify-content: center;
  333. &.active {
  334. background: #2B6EFD;
  335. color: #FFFFFF;
  336. }
  337. }
  338. .cented-box {
  339. background: #F8F8F8;
  340. width: 100%;
  341. height: 100vh;
  342. }
  343. .Pinspeak {
  344. width: 100%;
  345. height: 92rpx;
  346. border-bottom: 1rpx solid #E0E0E0;
  347. font-size: 32rpx;
  348. font-weight: bold;
  349. color: #333333;
  350. text-indent: 30rpx;
  351. line-height: 92rpx;
  352. background: #FFFFFF;
  353. margin-top: 20rpx;
  354. padding-left: 10rpx;
  355. }
  356. .chented {
  357. width: 100%;
  358. padding-left: 30rpx;
  359. padding-right: 30rpx;
  360. background-color: #FFFFFF;
  361. .title {
  362. width: 100%;
  363. height: 110rpx;
  364. border-bottom: 1rpx solid #E0E0E0;
  365. display: flex;
  366. align-items: center;
  367. .titletext {
  368. width: 21%;
  369. height: 110rpx;
  370. font-size: 30rpx;
  371. font-weight: 400;
  372. color: #333333;
  373. line-height: 110rpx;
  374. text-indent: 10rpx;
  375. }
  376. .titletext2 {
  377. width: 71%;
  378. height: 110rpx;
  379. }
  380. .titletext-input {
  381. width: 100%;
  382. height: 110rpx;
  383. font-size: 30rpx;
  384. font-weight: 400;
  385. color: #B2B2B2;
  386. line-height: 110rpx;
  387. padding-left: 10rpx;
  388. }
  389. .titleimg {
  390. width: 8%;
  391. text-align: right;
  392. .titleimg1 {
  393. width: 16rpx;
  394. height: 36rpx;
  395. }
  396. }
  397. }
  398. }
  399. .clive {
  400. position: absolute;
  401. bottom: 32rpx;
  402. left: 30rpx;
  403. right: 30rpx;
  404. width: 690rpx;
  405. height: 88rpx;
  406. background: #2671E2;
  407. text-align: center;
  408. line-height: 88rpx;
  409. color: #FFFFFF;
  410. border-radius: 8rpx;
  411. font-size: 32rpx;
  412. }
  413. </style>