IntegrityCheckingDrawer.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. <template>
  2. <a-drawer
  3. title="物料检测标准"
  4. :width="1200"
  5. :visible="visible"
  6. :body-style="{ paddingBottom: '24px' }"
  7. @close="closeDraw"
  8. >
  9. <a-row :gutter="16" style="margin-bottom: 20px">
  10. <a-col :span="3">
  11. <a-button type="primary" @click="submitAll" :loading="loading" :disabled="submitDisable">
  12. 保存
  13. </a-button>
  14. </a-col>
  15. </a-row>
  16. <a-table :columns="columns" :data-source="data" :pagination="false">
  17. <template
  18. v-for="col in ['weight']"
  19. :slot="col"
  20. slot-scope="text, record, index"
  21. :key="col"
  22. >
  23. <div>
  24. <a-input-number
  25. v-if="record.editable"
  26. style="margin: -5px 0"
  27. :value="text"
  28. :autoFocus="true"
  29. @change="e => handleChange(e, record.key, col)"
  30. :min="0"
  31. :step="0.1"
  32. :formatter="(value)=>{
  33. let reg = /^(-)*(\d+)\.(\d).*$/;
  34. return `${value}`.replace(/\B(?=(\d{3})+(?!\d))/g, ',').replace(reg,'$1$2.$3');
  35. }"
  36. :parser="(value)=>{
  37. let reg = /^(-)*(\d+)\.(\d).*$/;
  38. return value.replace(/\s?|(,*)/g, '').replace(reg,'$1$2.$3');
  39. }"
  40. />
  41. <template v-else>
  42. {{ text }}
  43. </template>
  44. </div>
  45. </template>
  46. <template
  47. v-for="col in ['limitMin']"
  48. :slot="col"
  49. slot-scope="text, record, index"
  50. :key="col"
  51. >
  52. <div>
  53. <a-input-number
  54. v-if="record.editable"
  55. style="margin: -5px 0"
  56. :value="text"
  57. @change="e => handleChange(e, record.key, col)"
  58. :min="0"
  59. :step="1"
  60. :autoFocus="true"
  61. :formatter="(value)=>{
  62. if (typeof value === 'string') {
  63. return !isNaN(Number(value)) ? value.replace(/^(0+)|[^\d]/g, '') : ''
  64. }else if (typeof value === 'number') {
  65. return !isNaN(value) ? String(value).replace(/^(0+)|[^\d]/g, '') : ''}
  66. else {
  67. return ''
  68. }}"/>
  69. <template v-else>
  70. {{ text }}
  71. </template>
  72. </div>
  73. </template>
  74. <template slot="required" slot-scope="text, record">
  75. <a-switch checked-children="是" un-checked-children="否" :autoFocus="true"
  76. :checked="record.required === 0" @change="changeRequired(record)"
  77. :loading="changeLoading"/>
  78. </template>
  79. <template slot="operation" slot-scope="text, record, index">
  80. <div class="editable-row-operations">
  81. <span v-if="record.editable">
  82. <a @click="() => save(record.key)">保存</a>
  83. <a-divider type="vertical"/>
  84. <a-popconfirm title="确定取消吗?" @confirm="() => cancel(record.key)">
  85. <a>取消</a>
  86. </a-popconfirm>
  87. </span>
  88. <span v-else>
  89. <a :disabled="editingKey !== ''" @click="() => edit(record.key)">编辑</a>
  90. </span>
  91. </div>
  92. </template>
  93. <template slot="sort" slot-scope="text, record, index">
  94. <a-tag color="pink" @click="up(index)" style="cursor: pointer"
  95. :class="index == 0 ? 'disabled' : '' ">
  96. <a-icon type="arrow-up"/>
  97. </a-tag>
  98. <a-tag color="blue" @click="down(index)" style="cursor: pointer"
  99. :class="index === data.length-1 ? 'disabled' : '' ">
  100. <a-icon type="arrow-down"/>
  101. </a-tag>
  102. </template>
  103. </a-table>
  104. </a-drawer>
  105. </template>
  106. <script>
  107. import { getAction, postAction } from '/src/api/manage/manage'
  108. export default {
  109. name: 'IntegrityCheckingDrawer',
  110. data() {
  111. return {
  112. visible: false,
  113. columns: [
  114. {
  115. title: '物料名称',
  116. dataIndex: 'materialLabel',
  117. align: 'center'
  118. },
  119. {
  120. title: '最低限制',
  121. dataIndex: 'limitMin',
  122. align: 'center',
  123. scopedSlots: {customRender: 'limitMin'}
  124. },
  125. {
  126. title: '评分占比',
  127. dataIndex: 'weight',
  128. align: 'center',
  129. scopedSlots: {customRender: 'weight'}
  130. },
  131. {
  132. title: '是否必填',
  133. dataIndex: 'required',
  134. align: 'center',
  135. scopedSlots: {customRender: 'required'}
  136. },
  137. {
  138. title: '排序',
  139. dataIndex: 'sort',
  140. align: 'center',
  141. scopedSlots: {customRender: 'sort'}
  142. },
  143. {
  144. title: '操作',
  145. dataIndex: 'operation',
  146. align: 'center',
  147. scopedSlots: {customRender: 'operation'}
  148. }
  149. ],
  150. data: [],
  151. cacheData: [],
  152. editingKey: '',
  153. sortChanged: false, // 判断排序是否改变,排序改变则在关闭的时候进行统一保存
  154. loading: false,
  155. loading2: false,
  156. id: '',
  157. changeLoading: false,
  158. submitDisable: false,
  159. }
  160. },
  161. methods: {
  162. submitAll() {
  163. let d = this.data
  164. let weight = 0
  165. for (let i in d) {
  166. weight += parseFloat(d[i].weight)
  167. }
  168. if (parseFloat(weight) !== 100) {
  169. this.$message.error('权重之和应为100')
  170. return
  171. }
  172. this.loading = true
  173. postAction('/serp/seoMarketPlan/saveTemplate', {
  174. checkList: JSON.stringify(d),
  175. planId: this.id
  176. }).then((res) => {
  177. this.loading = false
  178. if (res.code == 200) {
  179. this.$message.success('保存成功')
  180. this.showDrawer(this.id)
  181. } else {
  182. this.$message.error(res.message)
  183. }
  184. }).catch(e => {
  185. this.$message.error('保存数据失败!')
  186. })
  187. },
  188. showDrawer(id) {
  189. let that = this
  190. that.id = id
  191. getAction('/serp/seoMarketPlan/integrityChecking?planId=' + id).then((res) => {
  192. if (res.success) {
  193. that.data = res.result
  194. for (let i = 0; i < that.data.length; i++) {
  195. let item = that.data[i]
  196. item.key = item.id
  197. }
  198. that.cacheData = that.data.map(item => ({...item}))
  199. }
  200. }).catch(e => {
  201. this.$message.warning('获取数据失败!')
  202. })
  203. this.visible = true
  204. },
  205. closeDraw() {
  206. let that = this
  207. that.visible = false
  208. that.data = []
  209. that.cacheData = []
  210. that.sortChanged = false
  211. that.record = {}
  212. },
  213. handleChange(value, key, column) {
  214. const newData = [...this.data]
  215. const target = newData.filter(item => key === item.key)[0]
  216. if (target) {
  217. target[column] = value == null ? '' : value
  218. this.data = newData
  219. }
  220. },
  221. edit(key) {
  222. const newData = [...this.data]
  223. const target = newData.filter(item => key === item.key)[0]
  224. this.editingKey = key
  225. if (target) {
  226. target.editable = true
  227. this.data = newData
  228. }
  229. this.submitDisable = true
  230. },
  231. save(key) {
  232. const newData = [...this.data]
  233. const newCacheData = [...this.cacheData]
  234. const target = newData.filter(item => key === item.key)[0]
  235. const targetCache = newCacheData.filter(item => key === item.key)[0]
  236. if (target && targetCache) {
  237. delete target.editable
  238. this.data = newData
  239. Object.assign(targetCache, target)
  240. this.cacheData = newCacheData
  241. }
  242. this.editingKey = ''
  243. this.submitDisable = false
  244. },
  245. cancel(key) {
  246. const newData = [...this.data]
  247. const target = newData.filter(item => key === item.key)[0]
  248. this.editingKey = ''
  249. if (target) {
  250. Object.assign(target, this.cacheData.filter(item => key === item.key)[0])
  251. delete target.editable
  252. this.data = newData
  253. }
  254. this.submitDisable = false
  255. },
  256. up(index) {
  257. let that = this
  258. if (that.editingKey !== '') {
  259. that.$message.warn('请先完成编辑!')
  260. return
  261. }
  262. if (index === 0) {
  263. return
  264. }
  265. that.sortChanged = true
  266. // 修改展示顺序
  267. let data2 = that.data
  268. let temp1 = data2[index]
  269. data2[index] = data2[index - 1]
  270. data2[index - 1] = temp1
  271. that.cacheData = data2.map(item => ({...item}))
  272. that.data = that.cacheData
  273. },
  274. down(index) {
  275. let that = this
  276. if (that.editingKey !== '') {
  277. that.$message.warn('请先完成编辑!')
  278. return
  279. }
  280. if (index === that.data.length - 1) {
  281. return
  282. }
  283. that.sortChanged = true
  284. // 修改展示顺序
  285. let data2 = that.data
  286. let temp1 = data2[index]
  287. data2[index] = data2[index + 1]
  288. data2[index + 1] = temp1
  289. that.cacheData = data2.map(item => ({...item}))
  290. that.data = that.cacheData
  291. },
  292. changeRequired(record) {
  293. let that = this
  294. that.changeLoading = true
  295. postAction('/materialcollect/changeRequired?id=' + record.id + '&planId=' + record.planId).then((res) => {
  296. if (res.success) {
  297. that.$message.success(res.result)
  298. that.showDrawer(that.id)
  299. } else {
  300. that.$message.error(res.message)
  301. }
  302. that.changeLoading = false
  303. })
  304. },
  305. }
  306. }
  307. </script>
  308. <style lang="less" scoped>
  309. .ant-tag.disabled {
  310. cursor: no-drop !important;
  311. opacity: 0.3;
  312. }
  313. </style>