index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  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="上级网点信息" :form-data="formData" :form-items="items" />
  23. <zj-form-module title="下级网点信息" :form-data="formData" :form-items="items2" />
  24. </zj-form-container>
  25. </zj-page-fill>
  26. <!-- 操作按钮 -->
  27. <div style="box-sizing: border-box; padding: 10px; text-align: right">
  28. <el-button size="mini" @click="handleClose">取 消</el-button>
  29. <el-button v-if="~[0, 1].indexOf(formType)" size="mini" @click="formConfirm" type="primary"
  30. >确 定</el-button
  31. >
  32. </div>
  33. </zj-page-container>
  34. </el-dialog>
  35. </div>
  36. </template-page>
  37. </template>
  38. <script>
  39. import TemplatePage from '@/components/template/template-page-1.vue'
  40. import import_mixin from '@/components/template/import_mixin.js'
  41. import pagingTransfer from '@/components/paging-transfer.vue'
  42. import {
  43. settleRelaConfigList,
  44. settleRelaConfigListExport,
  45. settleRelaConfigAdd,
  46. settleRelaConfigEdit,
  47. settleRelaConfigDetail,
  48. settleRelaConfigQuerySubWebsit,
  49. settleRelaConfigImport
  50. } from '@/api/settlementRelationshipAllocation'
  51. import { commonTemplateDownload } from '@/api/common.js'
  52. import operation_mixin from '@/components/template/operation_mixin.js'
  53. import { required, requiredValueMin } from '@/components/template/rules_verify.js'
  54. import { getWebsit } from '@/api/customerManagement.js'
  55. import { EventBus } from '@/utils/eventBus'
  56. export default {
  57. components: { TemplatePage },
  58. mixins: [import_mixin, operation_mixin],
  59. data() {
  60. return {
  61. // 表格属性
  62. tableAttributes: {
  63. selectColumn: false
  64. },
  65. // 表格事件
  66. tableEvents: {
  67. 'selection-change': this.selectionChange
  68. },
  69. recordSelected: [],
  70. formBool: false,
  71. formType: 0,
  72. formData: {
  73. companyWechatId: '',
  74. companyWechatName: '',
  75. items: [
  76. // {
  77. // belongCompany: '',
  78. // belongCompanyCode: '',
  79. // companyWechatId: '',
  80. // companyWechatName: '',
  81. // id: '',
  82. // name: '',
  83. // parentId: '',
  84. // subWebsitId: ''
  85. // }
  86. ],
  87. websitId: ''
  88. },
  89. formRules: {},
  90. websitList: [],
  91. formInline: {
  92. websitId: '',
  93. websitName: ''
  94. }
  95. }
  96. },
  97. computed: {
  98. optionsEvensGroup() {
  99. return [
  100. [
  101. [
  102. this.optionsEvensAuth('add', {
  103. click: () => {
  104. this.openWindow(() => {
  105. this.formType = 0
  106. this.formBool = true
  107. })
  108. }
  109. })
  110. ],
  111. [
  112. this.optionsEvensAuth('downloadImportTemplate', {
  113. click: () => {
  114. commonTemplateDownload({ name: '结算上下级关系配置模板.xlsx' }, `${this.$route.meta.title}`)
  115. .then(res => {
  116. this.$message({
  117. message: '下载成功',
  118. type: 'success'
  119. })
  120. })
  121. .catch(err => {
  122. this.$message.error('下载失败')
  123. })
  124. }
  125. })
  126. ],
  127. [
  128. this.optionsEvensAuth('import', ({ moduleName }) => {
  129. return {
  130. name: moduleName,
  131. render: () => {
  132. return this.importButton(settleRelaConfigImport, moduleName)
  133. }
  134. }
  135. })
  136. ]
  137. ]
  138. ]
  139. },
  140. items() {
  141. return [
  142. {
  143. name: 'el-select',
  144. md: 12,
  145. options: this.websitList.map(item => ({ label: item.name, value: item.websitId })),
  146. attributes: {
  147. clearable: true,
  148. filterable: true,
  149. disabled: false,
  150. placeholder: '请输入'
  151. },
  152. formItemAttributes: {
  153. label: '上级网点',
  154. prop: 'websitId',
  155. rules: [...required]
  156. },
  157. events: {
  158. change: val => {
  159. var data = this.websitList.find(item => item.websitId === val)
  160. this.formData.websitName = data?.name || ''
  161. }
  162. }
  163. },
  164. {
  165. name: 'slot-component',
  166. md: 12,
  167. attributes: {},
  168. formItemAttributes: {
  169. label: '',
  170. prop: '',
  171. rules: []
  172. },
  173. render: (h, { props, onInput }) => {
  174. return null
  175. }
  176. },
  177. {
  178. name: 'el-input',
  179. md: 6,
  180. attributes: {
  181. disabled: true,
  182. placeholder: '请输入'
  183. },
  184. formItemAttributes: {
  185. label: '创建人',
  186. prop: 'createBy'
  187. }
  188. },
  189. {
  190. name: 'el-input',
  191. md: 6,
  192. attributes: {
  193. disabled: true,
  194. placeholder: '请输入'
  195. },
  196. formItemAttributes: {
  197. label: '创建时间',
  198. prop: 'createTime'
  199. }
  200. },
  201. {
  202. name: 'el-input',
  203. md: 6,
  204. attributes: {
  205. disabled: true,
  206. placeholder: '请输入'
  207. },
  208. formItemAttributes: {
  209. label: '修改人',
  210. prop: 'updateBy'
  211. }
  212. },
  213. {
  214. name: 'el-input',
  215. md: 6,
  216. attributes: {
  217. disabled: true,
  218. placeholder: '请输入'
  219. },
  220. formItemAttributes: {
  221. label: '修改时间',
  222. prop: 'updateTime'
  223. }
  224. }
  225. ]
  226. },
  227. items2() {
  228. return [
  229. {
  230. name: 'slot-component',
  231. md: 24,
  232. attributes: {},
  233. formItemAttributes: { label: '', 'label-width': '0px', prop: 'items', rules: [...required] },
  234. render: (h, { props, onInput }) => {
  235. var { formData } = props
  236. return (
  237. <div>
  238. <div>
  239. <el-form
  240. size="mini"
  241. inline={true}
  242. value={this.formInline}
  243. onInput={v => {
  244. this.formInline = v
  245. }}
  246. label-width="0px"
  247. >
  248. <el-form-item label="">
  249. <el-input
  250. value={this.formInline.websitId}
  251. onInput={v => {
  252. this.formInline.websitId = v
  253. }}
  254. placeholder="网点编号"
  255. ></el-input>
  256. </el-form-item>
  257. <el-form-item label="">
  258. <el-input
  259. value={this.formInline.websitName}
  260. onInput={v => {
  261. this.formInline.websitName = v
  262. }}
  263. placeholder="网点名称"
  264. ></el-input>
  265. </el-form-item>
  266. <el-form-item>
  267. <el-button
  268. type="primary"
  269. onClick={() => {
  270. console.log(this)
  271. EventBus.$emit('handlePaginationCallBack')
  272. }}
  273. >
  274. 查询
  275. </el-button>
  276. <el-button
  277. onClick={() => {
  278. this.formInline.websitId = ''
  279. this.formInline.websitName = ''
  280. }}
  281. >
  282. 重置
  283. </el-button>
  284. </el-form-item>
  285. </el-form>
  286. </div>
  287. <pagingTransfer
  288. handlePaginationCallBackKey="handlePaginationCallBack"
  289. value={this.formData.items}
  290. onInput={v => {
  291. this.formData.items = v
  292. }}
  293. left-columns={[
  294. { id: 'companyWechatName', label: '所属公司编号', width: '160' },
  295. { id: 'websitId', label: '网点编号', width: '120' },
  296. { id: 'name', label: '网点名称', width: '' }
  297. ]}
  298. right-columns={[
  299. { id: 'companyWechatName', label: '所属公司编号', width: '160' },
  300. { id: 'websitId', label: '网点编号', width: '120' },
  301. { id: 'name', label: '网点名称', width: '' }
  302. ]}
  303. show-pagination={true}
  304. pagination-call-back={this.paginationCallback}
  305. title-texts={['待选项', '已选项']}
  306. min-height="300px"
  307. table-row-key={row => row.websitId}
  308. />
  309. </div>
  310. )
  311. }
  312. }
  313. ]
  314. }
  315. },
  316. methods: {
  317. // 列表请求函数
  318. getList: settleRelaConfigList,
  319. exportList: settleRelaConfigListExport,
  320. // 表格列解析渲染数据更改
  321. columnParsing(item, defaultData) {
  322. return defaultData
  323. },
  324. // 获取勾选框数据
  325. selectionChange(data) {
  326. this.recordSelected = data
  327. },
  328. handleClose() {
  329. this.$refs?.pageRef?.refreshList()
  330. this.$data.formData = this.$options.data().formData
  331. this.formType = 0
  332. this.formBool = false
  333. },
  334. formConfirm() {
  335. this.$refs.formRef.validate((valid, invalidFields, errLabels) => {
  336. if (valid) {
  337. ;(this.formData.id ? settleRelaConfigEdit : settleRelaConfigAdd)(this.formData).then(res => {
  338. this.$message({ type: 'success', message: '配置成功!' })
  339. this.$refs.pageRef.refreshList()
  340. this.handleClose()
  341. })
  342. }
  343. })
  344. },
  345. operation() {
  346. return this.operationBtn({
  347. edit: {
  348. click: ({ row, index, column }) => {
  349. this.openWindow(() => {
  350. settleRelaConfigDetail({
  351. id: row.id
  352. }).then(res => {
  353. this.formData = res.data
  354. this.$nextTick(() => {
  355. this.formType = 1
  356. this.formBool = true
  357. })
  358. })
  359. })
  360. }
  361. }
  362. })
  363. },
  364. openWindow(cb) {
  365. Promise.all([getWebsit({ type: 'C', status: true, queryPartsWebsit: true, level: 1 })]).then(([res1]) => {
  366. this.websitList = res1.data
  367. this.$nextTick(() => {
  368. cb?.()
  369. })
  370. })
  371. },
  372. paginationCallback({ pageIndex, pageSize }) {
  373. return new Promise(resolve => {
  374. settleRelaConfigQuerySubWebsit({ pageNum: pageIndex, pageSize: pageSize, ...this.formInline }).then(res => {
  375. resolve({
  376. total: res.data.total,
  377. data: res.data.records
  378. })
  379. })
  380. })
  381. }
  382. }
  383. }
  384. </script>
  385. <style lang="scss" scoped>
  386. .neibuview {
  387. box-sizing: border-box;
  388. padding-left: 16px;
  389. ::v-deep & > .zj-page-fill-scroll {
  390. box-sizing: border-box;
  391. padding-right: 16px;
  392. & > div:nth-child(1) {
  393. margin-top: 20px;
  394. }
  395. }
  396. }
  397. </style>