list.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. <template>
  2. <div class="page-indent-list py-4 px-2 shadow max-w-[1800px] mx-auto">
  3. <el-form
  4. ref="searchForm"
  5. :inline="true"
  6. :model="form"
  7. label-width="110px"
  8. >
  9. <div class="flex flex-wrap items-center search-form">
  10. <el-form-item :label="$t(prefix + 'label_Vendor_Name') + ':'">
  11. <el-input v-model="form.Vendor_Name"></el-input>
  12. </el-form-item>
  13. <el-form-item :label="$t(prefix + 'label_Payment_Terms') + ':'">
  14. <el-select
  15. v-model="form.Payment_Terms"
  16. clearable
  17. >
  18. <el-option
  19. v-for="item in categoryList"
  20. :key="item"
  21. :label="item"
  22. :value="item"
  23. ></el-option>
  24. </el-select>
  25. </el-form-item>
  26. <el-form-item :label="$t(prefix + 'label_status') + ':'">
  27. <el-select
  28. v-model="form.status"
  29. clearable
  30. >
  31. <el-option
  32. v-for="item in statusList"
  33. :key="item.value"
  34. :label="item.label"
  35. :value="item.value"
  36. ></el-option>
  37. </el-select>
  38. </el-form-item>
  39. <el-form-item>
  40. <div class="flex items-center btn-group">
  41. <el-button
  42. size="small"
  43. type="primary"
  44. @click="search"
  45. >
  46. {{ $t('btn_query') }}
  47. </el-button>
  48. <el-button
  49. size="small"
  50. type="default"
  51. @click="reset"
  52. >
  53. {{ $t('btn_reset') }}
  54. </el-button>
  55. </div>
  56. </el-form-item>
  57. </div>
  58. </el-form>
  59. <div class="mb-2">
  60. <el-button
  61. size="small"
  62. type="primary"
  63. @click="componentEditVisible = 1"
  64. >
  65. {{ $t('btn_add') }}
  66. </el-button>
  67. </div>
  68. <el-table
  69. ref="tableIndent"
  70. :header-cell-style="{ backgroundColor: '#F2F6FC' }"
  71. :row-style="{ backgroundColor: '#F2F6FC' }"
  72. :data="list"
  73. default-expand-all
  74. border
  75. >
  76. <el-table-column type="index"></el-table-column>
  77. <el-table-column
  78. v-for="value in mainTableConfig"
  79. :key="value.field"
  80. :align="value.align || 'center'"
  81. :width="value.width || ''"
  82. :prop="value.field"
  83. :label="$t(value.label)"
  84. >
  85. <template #default="scope">
  86. <div v-if="value.type === 'imageList'">
  87. <img
  88. v-if="scope.row[value.field].length"
  89. style="width: 100%"
  90. :src="scope.row[value.field][0]"
  91. @click="imgClick(scope.row[value.field][0])"
  92. />
  93. </div>
  94. <div v-else-if="value.field === 'status'">
  95. <div>
  96. {{ getStatusLabel(scope.row[value.field]) }}
  97. </div>
  98. <el-button
  99. size="small"
  100. type="primary"
  101. link
  102. @click="openRecord(scope.row)"
  103. >
  104. {{ $t(prefix + 'label_audit_detail') }}
  105. </el-button>
  106. </div>
  107. <div
  108. v-else
  109. class="table-cell-content"
  110. :style="value.style || {}"
  111. >
  112. {{ scope.row[value.field] }}
  113. </div>
  114. </template>
  115. </el-table-column>
  116. <el-table-column
  117. prop="status"
  118. width="220"
  119. :label="$t('table_operation')"
  120. >
  121. <template #default="scope">
  122. <el-button
  123. size="small"
  124. type="primary"
  125. :disabled="scope.row.status === 0"
  126. @click="edit(scope.row)"
  127. >
  128. {{ $t('btn_edit') }}
  129. </el-button>
  130. <el-button
  131. size="small"
  132. type="warning"
  133. :disabled="scope.row.status !== 0"
  134. @click="examine(scope.row)"
  135. >
  136. {{ $t('btn_audit') }}
  137. </el-button>
  138. <el-button
  139. :disabled="scope.row.status !== 2"
  140. size="small"
  141. type="danger"
  142. @click="deleteSupplierFunc(scope.row)"
  143. >
  144. {{ $t('btn_delete') }}
  145. </el-button>
  146. </template>
  147. </el-table-column>
  148. </el-table>
  149. <div class="flex justify-end my-4">
  150. <el-pagination
  151. v-show="total > 0"
  152. v-model:current-page="pageForm.page"
  153. v-model:page-size="pageForm.limit"
  154. v-model:total="total"
  155. layout="prev, pager, next, jumper, sizes"
  156. @current-change="getList"
  157. @size-change="getList"
  158. />
  159. </div>
  160. <comp-edit
  161. v-model:visible="componentEditVisible"
  162. :item-data="dataForEdit"
  163. :category-data="categoryList"
  164. :currency-data="currencyList"
  165. @update:visible="getList"
  166. ></comp-edit>
  167. <comp-record
  168. :id="recordId"
  169. v-model:visible="componentRecordVisible"
  170. :status-list="statusList"
  171. ></comp-record>
  172. <el-dialog
  173. v-model="bigImageVisible"
  174. style="margin: 5vh auto"
  175. width="800"
  176. >
  177. <div class="flex justify-center">
  178. <img
  179. :src="currentBigImage"
  180. style="max-width: 100%; height: auto"
  181. alt=""
  182. />
  183. </div>
  184. </el-dialog>
  185. </div>
  186. </template>
  187. <script lang="ts" setup>
  188. import { defineComponent, ref, watch } from 'vue'
  189. import {
  190. ElButton,
  191. ElForm,
  192. ElFormItem,
  193. ElInput,
  194. ElTable,
  195. ElTableColumn,
  196. ElSelect,
  197. ElOption,
  198. ElMessageBox,
  199. ElNotification,
  200. ElPagination,
  201. ElDialog,
  202. } from 'element-plus'
  203. import compEdit from './components/edit.vue'
  204. import compRecord from './components/record.vue'
  205. import { $t } from '@/i18n/index'
  206. import { getSupplierList, deleteSupplier } from '@/api/supplier.js'
  207. defineComponent({
  208. name: 'ComponentIndentSupplierList',
  209. })
  210. const prefix = 'order.supplier.'
  211. let componentEditVisible = ref(0) // 1 新增, 2编辑. 0关闭
  212. let componentRecordVisible = ref(false) // 审核记录
  213. let dataForEdit = ref({}) // 修改时用, 只是用作传递给子组件数据的变量
  214. let recordId = ref('')
  215. let loading = ref(false)
  216. let categoryList = ref([
  217. '阿里巴巴平台付款',
  218. '70%定金',
  219. '50%定金',
  220. '40%定金',
  221. '30%定金',
  222. '全款',
  223. '月结',
  224. '半月结(两周结)',
  225. ])
  226. const currencyList = ref([
  227. 'AUD',
  228. 'NZD',
  229. 'CHY',
  230. 'GBP',
  231. 'EUR',
  232. 'USD',
  233. 'HKD',
  234. 'CAD',
  235. 'JPY',
  236. 'SGD',
  237. ])
  238. let form = ref({
  239. Vendor_Name: '',
  240. Payment_Terms: '',
  241. status: '',
  242. } as any)
  243. let total = ref(0)
  244. let pageForm = ref({
  245. page: 1,
  246. limit: 20,
  247. })
  248. let list = ref([])
  249. const mainTableConfig: any[] = [
  250. {
  251. label: 'order.supplier.label_Vendor_Name',
  252. field: 'Vendor_Name',
  253. },
  254. {
  255. label: 'order.supplier.label_Phone',
  256. field: 'Phone',
  257. width: '120',
  258. },
  259. {
  260. label: 'order.supplier.label_Payment_Terms',
  261. field: 'Payment_Terms',
  262. width: '110',
  263. },
  264. {
  265. label: '数据来源',
  266. field: 'fromwhere',
  267. width: '110',
  268. },
  269. {
  270. label: 'order.supplier.label_status',
  271. field: 'status',
  272. width: '110',
  273. style: 'font-weight: bold;',
  274. },
  275. {
  276. label: 'table_operator',
  277. field: 'admin_name',
  278. width: '90',
  279. },
  280. {
  281. label: 'table_operated_time',
  282. field: 'update_time',
  283. width: '180',
  284. },
  285. ]
  286. const statusList = [
  287. {
  288. value: 0,
  289. label: '待审核',
  290. },
  291. {
  292. value: 1,
  293. label: '审核通过',
  294. },
  295. {
  296. value: 2,
  297. label: '审核不通过',
  298. },
  299. ]
  300. const search = () => {
  301. pageForm.value = {
  302. page: 1,
  303. limit: 20,
  304. }
  305. getList()
  306. }
  307. const getStatusLabel = (value: number) => {
  308. const temp = statusList.filter((i: any) => i.value === value)
  309. return temp.length ? temp[0].label : '-'
  310. }
  311. const reset = () => {
  312. form.value = {
  313. Vendor_Name: '',
  314. Payment_Terms: '',
  315. status: '',
  316. }
  317. pageForm.value = {
  318. page: 1,
  319. limit: 20,
  320. }
  321. total.value = 0
  322. getList()
  323. }
  324. const edit = (row: any) => {
  325. dataForEdit.value = row
  326. componentEditVisible.value = 2
  327. }
  328. const deleteSupplierFunc = (row: any) => {
  329. ElMessageBox.confirm('将删除该供应商, 是否继续?', '提示', {
  330. confirmButtonText: '确定',
  331. cancelButtonText: '取消',
  332. type: 'warning',
  333. }).then(() => {
  334. deleteSupplier({ id: row.id }).then((res: any) => {
  335. if (res.code === 1) {
  336. getList()
  337. ElNotification({
  338. title: '删除成功',
  339. message: '正在刷新数据',
  340. duration: 3000,
  341. })
  342. }
  343. })
  344. })
  345. }
  346. const examine = (row: any) => {
  347. dataForEdit.value = row
  348. componentEditVisible.value = 3
  349. }
  350. const openRecord = (row: any) => {
  351. recordId.value = row.id
  352. componentRecordVisible.value = true
  353. }
  354. const getList = () => {
  355. const p: any = Object.assign({}, pageForm.value, form.value)
  356. loading.value = true
  357. getSupplierList(p)
  358. .then((res: any) => {
  359. list.value =
  360. res.result?.data?.map((main: any) => {
  361. let status = Number(main.status)
  362. if (typeof status !== 'number') status = 0
  363. return {
  364. ...main,
  365. status,
  366. }
  367. }) || []
  368. total.value = res.result.total
  369. })
  370. .finally(() => {
  371. loading.value = false
  372. })
  373. }
  374. getList()
  375. const currentBigImage = ref('')
  376. const bigImageVisible = ref(false)
  377. const imgClick = (url: string) => {
  378. currentBigImage.value = url
  379. bigImageVisible.value = true
  380. }
  381. watch(bigImageVisible, () => {
  382. if (!bigImageVisible.value) currentBigImage.value = ''
  383. })
  384. </script>
  385. <style lang="scss" scoped>
  386. .search-form {
  387. .el-input,
  388. .el-select,
  389. .el-date-editor {
  390. width: 220px;
  391. }
  392. }
  393. </style>