ContractInfo.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  1. <script setup>
  2. import { watch, ref } from 'vue'
  3. import { customInterence } from '@/api/api.js'
  4. import { CalculationDate } from '@/utils/CalculationDate'
  5. import { ElMessage } from 'element-plus';
  6. function formatType(e) {
  7. if (e === "申请转正") {
  8. return "试用转正式";
  9. } else {
  10. return e;
  11. }
  12. }
  13. function formatDate(e) {
  14. if (e === '0001-01-01T00:00:00Z') {
  15. return ''
  16. } else {
  17. return e.split('T')[0].replace(/-/g, '.')
  18. }
  19. }
  20. function formateYear(start, end) {
  21. if (start) {
  22. return `${CalculationDate(start, end)}`
  23. } else {
  24. return "";
  25. }
  26. }
  27. const props = defineProps({
  28. initData: {
  29. show: false
  30. }
  31. })
  32. const emits = defineEmits(['contractInfoDialogClose'])
  33. watch(
  34. () => props.initData.show,
  35. () => {
  36. if (props.initData?.show) {
  37. init()
  38. }
  39. }
  40. )
  41. function handleClose(e) {
  42. search.value = ''
  43. info.value = {}
  44. emits('contractInfoDialogClose', e)
  45. }
  46. const search = ref('')
  47. const showCustomeInfo = ref(false)
  48. const info = ref(null)
  49. const cusInfo = ref(null)
  50. async function init() {
  51. console.log('init');
  52. let res = await customInterence.contractSearch({ CreditCode: props.initData.cusdata.CreditCode })
  53. if (res.Ret === 200) {
  54. if (res.Data) {
  55. const res2 = await customInterence.sysContractDetail({ ContractId: res.Data[0].ContractId })
  56. if (res2.Ret === 200) {
  57. info.value = res2.Data
  58. info.value.PermissionList = res2.Data.PermissionList.filter(item => {
  59. return item.CheckList.length > 0
  60. })
  61. }
  62. }
  63. }
  64. // 获取客户详情
  65. let cus = await customInterence.customDetail({ CompanyId: props.initData.cusdata.CompanyId })
  66. if (cus.Ret === 200) {
  67. if (cus.Data.CreateAuth === 1) {
  68. cusInfo.value = { Item: cus.Data.Item, info: cus.Data.FiccItem }
  69. } else {
  70. cusInfo.value = { Item: cus.Data.Item, info: cus.Data.RaiItem }
  71. }
  72. }
  73. }
  74. async function handleSearchResult(queryString, cb) {
  75. cb([])
  76. let res = await customInterence.contractSearch({ Keyword: queryString })
  77. if (res.Ret === 200 && res.Data) {
  78. cb(res.Data)
  79. }
  80. }
  81. async function handleSelect(e) {
  82. search.value = e.CompanyName
  83. const res = await customInterence.sysContractDetail({ ContractId: e.ContractId })
  84. if (res.Ret === 200) {
  85. info.value = res.Data
  86. info.value.PermissionList = res.Data.PermissionList.filter(item => {
  87. return item.CheckList.length > 0
  88. })
  89. }
  90. }
  91. function handlePreviewContract() {
  92. const url = info.value.ContractDetail.CheckBackFileUrl
  93. if (!url) {
  94. ElMessage.warning('文件错误')
  95. return
  96. }
  97. const reg = /\.(pdf)$/;
  98. // pdf
  99. if (reg.test(url)) {
  100. window.open(url, '_blank');
  101. } else {
  102. window.open('https://view.officeapps.live.com/op/view.aspx?src=' + url, '_blank');
  103. }
  104. }
  105. async function handleSubmit() {
  106. const res = await customInterence.sysCustomeApply({
  107. CompanyApprovalId: props.initData.cusdata.CompanyApprovalId || 0,
  108. CompanyId: props.initData.cusdata.CompanyId,
  109. ContractId: info.value.ContractDetail.ContractId
  110. })
  111. if (res.Ret === 200) {
  112. ElMessage.success('申请成功')
  113. handleClose('updateList')
  114. }
  115. }
  116. </script>
  117. <template>
  118. <el-dialog
  119. :model-value="props.initData.show"
  120. :modal-append-to-body="false"
  121. class="dialog-body-no"
  122. top="5vh"
  123. @close="handleClose"
  124. draggable
  125. width="55%"
  126. >
  127. <template #header>
  128. <div>
  129. <img
  130. width="15"
  131. src="../../../assets/img/cus_m/man.png"
  132. alt=""
  133. style="margin-right: 15px"
  134. /><span>{{ props.initData.type }}</span>
  135. </div>
  136. </template>
  137. <div class="contractinfo-wrap">
  138. <div class="top">
  139. <div>
  140. <span style="margin-right: 20px; color: #333"
  141. >申请内容:{{ formatType(props.initData.type) }}</span
  142. >
  143. </div>
  144. <span
  145. style="
  146. border: 1px solid #409eff;
  147. color: #409eff;
  148. padding: 2px 10px;
  149. border-radius: 4px;
  150. cursor: pointer;
  151. "
  152. @click="showCustomeInfo = true"
  153. >客户信息</span
  154. >
  155. </div>
  156. <div class="search-wrap">
  157. <el-autocomplete
  158. clearable
  159. v-model="search"
  160. :fetch-suggestions="handleSearchResult"
  161. placeholder="请输入公司全称搜合同"
  162. @select="handleSelect"
  163. style="width: 100%"
  164. prefix-icon="el-icon-search"
  165. >
  166. <template #default>
  167. <span
  168. style="margin-right: 40px; width: 450px; display: inline-block"
  169. >{{ scope.item.CompanyName }}</span
  170. >
  171. <span style="margin-right: 40px">{{
  172. scope.item.ContractType
  173. }}</span>
  174. <span style="margin-right: 40px"
  175. >{{ formatDate(scope.item.StartDateStr) }}~{{
  176. formatDate(scope.item.EndDateStr)
  177. }}</span
  178. >
  179. <span>{{ scope.item.Price }}元</span>
  180. </template>
  181. </el-autocomplete>
  182. </div>
  183. <div class="content">
  184. <div v-if="info && info.ContractDetail">
  185. <div class="table-wrap">
  186. <div class="flex">
  187. <div class="table-item" style="flex: 1; display: flex">
  188. 甲方名称:{{ info.ContractDetail.CompanyName }}
  189. <span
  190. style="
  191. margin-left: 10px;
  192. border: 1px solid #409eff;
  193. color: #409eff;
  194. padding: 2px;
  195. border-radius: 4px;
  196. cursor: pointer;
  197. flex-shrink: 0;
  198. height: 20px;
  199. "
  200. @click="handlePreviewContract"
  201. >预览合同</span
  202. >
  203. </div>
  204. <div class="table-item" style="flex: 1">
  205. 合同期限:{{ formatDate(info.ContractDetail.StartDate) }}~{{
  206. formatDate(info.ContractDetail.EndDate)
  207. }}(有效期:{{
  208. formateYear(
  209. info.ContractDetail.StartDate,
  210. info.ContractDetail.EndDate
  211. )
  212. }})
  213. </div>
  214. </div>
  215. <div class="flex">
  216. <div class="table-item" style="flex: 1">
  217. 合同金额:{{ info.ContractDetail.Price }}元
  218. </div>
  219. <div class="table-item" style="flex: 1">
  220. 付款方式:{{ info.ContractDetail.PayRemark }}
  221. </div>
  222. </div>
  223. <div class="flex">
  224. <div class="table-item" style="flex: 1">
  225. 付款渠道:{{ info.ContractDetail.PayChannel }}
  226. </div>
  227. <div class="table-item" style="flex: 1">
  228. 合同类型:{{ info.ContractDetail.ContractType }}
  229. </div>
  230. </div>
  231. <div class="table-item">
  232. <div class="flex">
  233. <h2 style="font-size: 14px; color: #333; margin-right: 20px">
  234. 购买品种:
  235. </h2>
  236. <ul style="flex: 1">
  237. <li
  238. v-for="item in info.PermissionList"
  239. :key="item.ClassifyName"
  240. >
  241. <span>{{ item.ClassifyName }}:</span>
  242. <template v-for="tag in item.Items">
  243. <el-tag
  244. size="small"
  245. :key="tag.ChartPermissionId"
  246. style="margin: 0 8px 5px"
  247. v-if="item.CheckList.includes(tag.ChartPermissionId)"
  248. >{{ tag.PermissionName }}</el-tag
  249. >
  250. </template>
  251. </li>
  252. </ul>
  253. </div>
  254. </div>
  255. </div>
  256. <div style="text-align: center; padding: 59px 0 20px 0">
  257. <el-button
  258. style="width: 152px; margin-right: 30px"
  259. type="primary"
  260. @click="handleSubmit"
  261. >提交</el-button
  262. >
  263. <el-button
  264. style="width: 152px"
  265. type="primary"
  266. plain
  267. @click="handleClose"
  268. >取消</el-button
  269. >
  270. </div>
  271. </div>
  272. <div v-else style="text-align: center; padding: 50px 0 200px 0">
  273. <img width="135" src="../../../assets/img/cus_m/nodata.png" alt="" />
  274. <p style="font-size: 14px; color: #aab4cc">暂无结果</p>
  275. </div>
  276. </div>
  277. </div>
  278. </el-dialog>
  279. <el-dialog
  280. v-model="showCustomeInfo"
  281. :modal-append-to-body="false"
  282. class="cus-dialog"
  283. width="660px"
  284. top="20vh"
  285. v-dialogDrag
  286. >
  287. <template #header>
  288. <div style="color: #333; font-size: 16px; font-weight: bold">
  289. 客户基本信息
  290. </div>
  291. </template>
  292. <div v-if="cusInfo" class="contractinfo-wrap">
  293. <div class="table-wrap">
  294. <div class="flex">
  295. <div class="table-item" style="flex: 1; padding: 14px 20px">
  296. 客户名称:{{ cusInfo.Item.CompanyName }}
  297. </div>
  298. <div class="table-item" style="flex: 1; padding: 14px 20px">
  299. 地址:{{ cusInfo.Item.Province }}{{ cusInfo.Item.City
  300. }}{{ cusInfo.Item.Address }}
  301. </div>
  302. </div>
  303. <div class="flex">
  304. <div class="table-item" style="flex: 1; padding: 14px 20px">
  305. 社会信用码:{{ cusInfo.Item.CreditCode }}
  306. </div>
  307. <div class="table-item" style="flex: 1; padding: 14px 20px">
  308. 客户状态:{{ cusInfo.info.Status }}
  309. </div>
  310. </div>
  311. <div class="flex">
  312. <div class="table-item" style="flex: 1; padding: 14px 20px">
  313. 客户来源:{{ cusInfo.info.Source }}
  314. </div>
  315. <div class="table-item" style="flex: 1; padding: 14px 20px">
  316. 行业:{{ cusInfo.info.IndustryName }}
  317. </div>
  318. </div>
  319. <div class="flex">
  320. <div class="table-item" style="flex: 1; padding: 14px 20px">
  321. 所属销售:{{ cusInfo.info.SellerName }}
  322. </div>
  323. <div class="table-item" style="flex: 1; padding: 14px 20px">
  324. 备注:{{ cusInfo.info.Reasons }}
  325. </div>
  326. </div>
  327. </div>
  328. <div style="text-align: center; margin-top: 40px; margin-bottom: 33px">
  329. <el-button
  330. type="primary"
  331. style="width: 200px"
  332. @click="showCustomeInfo = false"
  333. >知道了</el-button
  334. >
  335. </div>
  336. </div>
  337. </el-dialog>
  338. </template>
  339. <style lang="scss">
  340. .cus-dialog {
  341. .el-dialog__header {
  342. background-color: #fff;
  343. border-bottom: 1px solid #dcdfe6;
  344. .el-dialog__close.el-icon.el-icon-close {
  345. color: #666;
  346. }
  347. }
  348. }
  349. .dialog-body-no {
  350. .el-dialog__body {
  351. padding: 20px 0 !important;
  352. }
  353. .el-input {
  354. width: 100%;
  355. }
  356. .el-dialog {
  357. min-width: 750px;
  358. }
  359. }
  360. .contractinfo-wrap {
  361. .top {
  362. display: flex;
  363. justify-content: space-between;
  364. padding: 10px 30px 30px 30px;
  365. border-bottom: 1px solid #dcdfe6;
  366. align-items: center;
  367. }
  368. .search-wrap {
  369. padding: 30px;
  370. }
  371. .content {
  372. padding: 0px 30px;
  373. }
  374. .table-wrap {
  375. border-top: 1px solid #dcdfe6;
  376. border-left: 1px solid #dcdfe6;
  377. .flex {
  378. display: flex;
  379. }
  380. .table-item {
  381. border-bottom: 1px solid #dcdfe6;
  382. border-right: 1px solid #dcdfe6;
  383. padding: 14px 40px;
  384. li {
  385. padding-bottom: 17px;
  386. margin-bottom: 17px;
  387. border-bottom: 1px dashed #dcdfe6;
  388. }
  389. li:last-child {
  390. border-bottom: none;
  391. margin-bottom: 0;
  392. padding-bottom: 0;
  393. }
  394. }
  395. }
  396. }
  397. </style>