index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. <template>
  2. <template-page
  3. ref="pageRef"
  4. :getList="getList"
  5. :exportList="exportList"
  6. :columnParsing="columnParsing"
  7. :optionsEvensGroup="optionsEvensGroup"
  8. :tableAttributes="tableAttributes"
  9. :tableEvents="tableEvents"
  10. :operation="operation()"
  11. >
  12. <div class="cartographer_big">
  13. <el-dialog title="配置" width="100%" :modal="false" :visible.sync="formBool" :before-close="handleClose">
  14. <zj-page-container v-if="formBool">
  15. <zj-page-fill class="neibuview">
  16. <zj-form-container
  17. ref="formRef"
  18. :form-data="formData"
  19. :form-rules="formRules"
  20. :form-attributes="{ size: 'mini' }"
  21. >
  22. <zj-form-module title="基础信息" label-width="140px" :form-data="formData" :form-items="items" />
  23. </zj-form-container>
  24. </zj-page-fill>
  25. <!-- 操作按钮 -->
  26. <div style="box-sizing: border-box; padding: 10px; text-align: right">
  27. <el-button size="mini" @click="handleClose">取 消</el-button>
  28. <el-button v-if="~[0, 1].indexOf(formType)" size="mini" @click="formConfirm" type="primary"
  29. >确 定</el-button
  30. >
  31. </div>
  32. </zj-page-container>
  33. </el-dialog>
  34. </div>
  35. </template-page>
  36. </template>
  37. <script>
  38. import TemplatePage from '@/components/template/template-page-1.vue'
  39. import import_mixin from '@/components/template/import_mixin.js'
  40. import pagingTransfer from '@/components/paging-transfer.vue'
  41. import {
  42. companyCaAuthList,
  43. companyCaAuthListExport,
  44. companyCaAuthAdd,
  45. companyCaAuthUpdate,
  46. companyCaAuthDetail,
  47. companyCaAuthDel,
  48. companyCaAuthGetAuth
  49. } from '@/api/enterpriseCaCertification'
  50. import { commonTemplateDownload } from '@/api/common.js'
  51. import operation_mixin from '@/components/template/operation_mixin.js'
  52. import { required, requiredValueMin } from '@/components/template/rules_verify.js'
  53. import { getWebsit } from '@/api/customerManagement.js'
  54. import { EventBus } from '@/utils/eventBus'
  55. import ImageUpload from '@/components/file-upload'
  56. import { lbsAmapRegion } from '@/api/common.js'
  57. import geographicalPosi from '@/components/geographicalPosi/index.vue'
  58. export default {
  59. components: { TemplatePage },
  60. mixins: [import_mixin, operation_mixin],
  61. data() {
  62. return {
  63. // 表格属性
  64. tableAttributes: {
  65. selectColumn: false
  66. },
  67. // 表格事件
  68. tableEvents: {
  69. 'selection-change': this.selectionChange
  70. },
  71. recordSelected: [],
  72. formBool: false,
  73. formType: 0,
  74. formData: {
  75. businessLicenseUrl: [],
  76. companyAddress: '',
  77. companyCaAuthId: '',
  78. companyName: '',
  79. companyWechatId: '',
  80. companyWechatName: '',
  81. shortName: '',
  82. createBy: '',
  83. createTime: '',
  84. fadadaAuditFailReason: '',
  85. fadadaAuthAutoContractId: '',
  86. fadadaAuthAutoDownloadUrl: '',
  87. fadadaAuthAutoId: '',
  88. fadadaAuthAutoStatus: '',
  89. fadadaAuthAutoUrl: '',
  90. fadadaAuthAutoViewpdfUrl: '',
  91. fadadaAuthUrl: '',
  92. fadadaCustomerId: '',
  93. fadadaIsAuth: '',
  94. fadadaStatus: '',
  95. fadadaTransactionNo: '',
  96. legalIdCard: '',
  97. legalMobile: '',
  98. legalName: '',
  99. taxNo: '',
  100. updateBy: '',
  101. updateTime: '',
  102. websitId: '',
  103. websitName: '',
  104. lng: '',
  105. lat: ''
  106. },
  107. formRules: {},
  108. websitList: []
  109. }
  110. },
  111. computed: {
  112. optionsEvensGroup() {
  113. return [
  114. [
  115. [
  116. this.optionsEvensAuth('add', {
  117. click: () => {
  118. this.openWindow(() => {
  119. this.formType = 0
  120. this.formBool = true
  121. })
  122. }
  123. })
  124. ]
  125. ]
  126. ]
  127. },
  128. items() {
  129. return [
  130. {
  131. name: 'el-select',
  132. md: 6,
  133. options: this.websitList.map(item => ({ label: item.name, value: item.websitId })),
  134. attributes: {
  135. clearable: true,
  136. filterable: true,
  137. disabled: false,
  138. placeholder: '请输入'
  139. },
  140. formItemAttributes: {
  141. label: '网点名称',
  142. prop: 'websitId',
  143. rules: [...required]
  144. },
  145. events: {
  146. change: val => {
  147. var data = this.websitList.find(item => item.websitId === val)
  148. this.formData.websitName = data?.name || ''
  149. }
  150. }
  151. },
  152. {
  153. name: 'el-input',
  154. md: 6,
  155. attributes: {
  156. placeholder: '请输入'
  157. },
  158. formItemAttributes: {
  159. label: '网点简称',
  160. prop: 'shortName',
  161. rules: [...required]
  162. }
  163. },
  164. {
  165. name: 'el-input',
  166. md: 9,
  167. attributes: {
  168. placeholder: '请输入'
  169. },
  170. formItemAttributes: {
  171. label: '网点地址',
  172. prop: 'companyAddress',
  173. rules: [...required]
  174. }
  175. },
  176. {
  177. name: 'slot-component',
  178. md: 3,
  179. formItemAttributes: {
  180. 'label-width': '0px',
  181. prop: ''
  182. },
  183. render: (h, { props }) => {
  184. return (
  185. <geographicalPosi
  186. formData={{
  187. lng: this.formData?.lng || '',
  188. lat: this.formData?.lat || '',
  189. address: this.formData?.companyAddress || ''
  190. }}
  191. onSelectPosi={data => {
  192. this.formData.lng = data.center[0]
  193. this.formData.lat = data.center[1]
  194. this.formData.companyAddress = data.name
  195. }}
  196. />
  197. )
  198. }
  199. },
  200. {
  201. name: 'el-input',
  202. md: 6,
  203. attributes: {
  204. placeholder: '请输入'
  205. },
  206. formItemAttributes: {
  207. label: '统一社会信用代码',
  208. prop: 'taxNo',
  209. rules: [...required]
  210. }
  211. },
  212. {
  213. name: 'el-input',
  214. md: 6,
  215. attributes: {
  216. placeholder: '请输入'
  217. },
  218. formItemAttributes: {
  219. label: '法人代表',
  220. prop: 'legalName',
  221. rules: [...required]
  222. }
  223. },
  224. {
  225. name: 'el-input',
  226. md: 6,
  227. attributes: {
  228. placeholder: '请输入'
  229. },
  230. formItemAttributes: {
  231. label: '法人联系方式',
  232. prop: 'legalMobile',
  233. rules: [...required]
  234. }
  235. },
  236. {
  237. name: 'el-input',
  238. md: 6,
  239. attributes: {
  240. placeholder: '请输入'
  241. },
  242. formItemAttributes: {
  243. label: '法人身份证',
  244. prop: 'legalIdCard',
  245. rules: [...required]
  246. }
  247. },
  248. {
  249. md: 24,
  250. isShow: true,
  251. name: 'slot-component',
  252. formItemAttributes: {
  253. label: '营业执照',
  254. prop: 'businessLicenseUrl',
  255. rules: [...required]
  256. },
  257. render: (h, { props, onInput }) => {
  258. var { value } = props
  259. return (
  260. <div>
  261. <ImageUpload fileList={this.formData.businessLicenseUrl} limit={1} fileType={['image']} />
  262. <h4 style="color:#ffa700">上传图片</h4>
  263. </div>
  264. )
  265. }
  266. },
  267. {
  268. name: 'el-input',
  269. md: 6,
  270. attributes: {
  271. disabled: true,
  272. placeholder: '请输入'
  273. },
  274. formItemAttributes: {
  275. label: '创建人',
  276. prop: 'createBy'
  277. }
  278. },
  279. {
  280. name: 'el-input',
  281. md: 6,
  282. attributes: {
  283. disabled: true,
  284. placeholder: '请输入'
  285. },
  286. formItemAttributes: {
  287. label: '创建时间',
  288. prop: 'createTime'
  289. }
  290. },
  291. {
  292. name: 'el-input',
  293. md: 6,
  294. attributes: {
  295. disabled: true,
  296. placeholder: '请输入'
  297. },
  298. formItemAttributes: {
  299. label: '修改人',
  300. prop: 'updateBy'
  301. }
  302. },
  303. {
  304. name: 'el-input',
  305. md: 6,
  306. attributes: {
  307. disabled: true,
  308. placeholder: '请输入'
  309. },
  310. formItemAttributes: {
  311. label: '修改时间',
  312. prop: 'updateTime'
  313. }
  314. }
  315. ]
  316. }
  317. },
  318. methods: {
  319. // 列表请求函数
  320. getList: companyCaAuthList,
  321. exportList: companyCaAuthListExport,
  322. // 表格列解析渲染数据更改
  323. columnParsing(item, defaultData) {
  324. return defaultData
  325. },
  326. // 获取勾选框数据
  327. selectionChange(data) {
  328. this.recordSelected = data
  329. },
  330. handleClose() {
  331. this.$refs?.pageRef?.refreshList()
  332. this.$data.formData = this.$options.data().formData
  333. this.formType = 0
  334. this.formBool = false
  335. },
  336. formConfirm() {
  337. this.$refs.formRef.validate((valid, invalidFields, errLabels) => {
  338. if (valid) {
  339. ;(this.formType ? companyCaAuthUpdate : companyCaAuthAdd)({
  340. ...this.formData,
  341. businessLicenseUrl: this.formData?.businessLicenseUrl?.[0]?.url || ''
  342. }).then(res => {
  343. this.$message({ type: 'success', message: '配置成功!' })
  344. this.$refs.pageRef.refreshList()
  345. this.handleClose()
  346. })
  347. }
  348. })
  349. },
  350. operation() {
  351. return this.operationBtn({
  352. edit: {
  353. click: ({ row, index, column }) => {
  354. this.openWindow(() => {
  355. companyCaAuthDetail({
  356. companyCaAuthId: row.companyCaAuthId
  357. }).then(res => {
  358. this.formData = {
  359. ...res.data,
  360. businessLicenseUrl: res.data?.businessLicenseUrl ? [{ url: res.data?.businessLicenseUrl }] : []
  361. }
  362. this.$nextTick(() => {
  363. this.formType = 1
  364. this.formBool = true
  365. })
  366. })
  367. })
  368. }
  369. },
  370. del: {
  371. prompt: '此操作将永久删除数据, 是否继续?',
  372. click: ({ row, index, column }) => {
  373. companyCaAuthDel({
  374. companyCaAuthId: row.companyCaAuthId
  375. }).then(res => {
  376. this.$message({
  377. message: '删除成功',
  378. type: 'success'
  379. })
  380. this.$refs?.pageRef?.refreshList()
  381. })
  382. }
  383. },
  384. authentication: {
  385. prompt: '是否确定认证?',
  386. conditions: ({ row, index, column }) => {
  387. return row.fadadaIsAuth === 'NO'
  388. },
  389. click: ({ row, index, column }) => {
  390. companyCaAuthGetAuth({
  391. companyCaAuthId: row.companyCaAuthId
  392. }).then(res => {
  393. window.open(res.data, '_blank')
  394. this.$refs?.pageRef?.refreshList()
  395. })
  396. }
  397. },
  398. authorizeAutomaticSignature: {
  399. prompt: '是否授权自动签章?',
  400. conditions: ({ row, index, column }) => {
  401. return row.fadadaIsAuth === 'YES' && row.fadadaAuthAutoStatus === 'NO' && row.fadadaAuthAutoUrl
  402. },
  403. click: ({ row, index, column }) => {
  404. window.open(row.fadadaAuthAutoUrl, '_blank')
  405. }
  406. }
  407. })
  408. },
  409. openWindow(cb) {
  410. Promise.all([getWebsit({ type: 'C', status: true, level: 1 })]).then(([res1]) => {
  411. this.websitList = res1.data
  412. this.$nextTick(() => {
  413. cb?.()
  414. })
  415. })
  416. }
  417. }
  418. }
  419. </script>
  420. <style lang="scss" scoped>
  421. .neibuview {
  422. box-sizing: border-box;
  423. padding-left: 16px;
  424. ::v-deep & > .zj-page-fill-scroll {
  425. box-sizing: border-box;
  426. padding-right: 16px;
  427. & > div:nth-child(1) {
  428. margin-top: 20px;
  429. }
  430. }
  431. }
  432. </style>