AdwebEnquirySiteRuleForm.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <template>
  2. <a-spin :spinning="confirmLoading">
  3. <j-form-container :disabled="formDisabled">
  4. <a-form :form="form" slot="detail">
  5. <a-row>
  6. <a-col :span="24">
  7. <a-form-item label="站点" :labelCol="labelCol" :wrapperCol="wrapperCol">
  8. <a-select placeholder="请选择站点" v-decorator="['siteId',formRules.siteId]" showSearch :filterOption="filterOption">
  9. <a-select-option v-for="option in siteOptions" :key="option.id" :value="option.id">{{option.name}}</a-select-option>
  10. </a-select>
  11. </a-form-item>
  12. </a-col>
  13. <a-col :span="24">
  14. <a-form-item label="关键词" :labelCol="labelCol" :wrapperCol="wrapperCol">
  15. <a-input v-decorator="['word',formRules.word]" placeholder="请输入关键词" ></a-input>
  16. </a-form-item>
  17. </a-col>
  18. <a-col :span="24">
  19. <a-form-item label="黑白名单" :labelCol="labelCol" :wrapperCol="wrapperCol">
  20. <a-select v-decorator="['blackOrWhite',formRules.blackOrWhite]" placeholder="请选择黑白名单">
  21. <a-select-option :value="0">黑名单</a-select-option>
  22. <a-select-option :value="1">白名单</a-select-option>
  23. </a-select>
  24. </a-form-item>
  25. </a-col>
  26. <!-- <a-col :span="24">-->
  27. <!-- <a-form-item label="状态" :labelCol="labelCol" :wrapperCol="wrapperCol">-->
  28. <!-- <a-select v-decorator="['isEnable',formRules.isEnable]" placeholder="请选择是否启用该关键词">-->
  29. <!-- <a-select-option :value="1">启用</a-select-option>-->
  30. <!-- <a-select-option :value="0">停用</a-select-option>-->
  31. <!-- </a-select>-->
  32. <!-- </a-form-item>-->
  33. <!-- </a-col>-->
  34. <!-- <a-col :span="24">-->
  35. <!-- <a-form-item label="作用域" :labelCol="labelCol" :wrapperCol="wrapperCol">-->
  36. <!-- <a-select v-decorator="['useStatus',formRules.useStatus]" placeholder="请选择作用域">-->
  37. <!-- <a-select-option :value="0">询盘关键词</a-select-option>-->
  38. <!-- <a-select-option :value="1">OpenAi关键词</a-select-option>-->
  39. <!-- </a-select>-->
  40. <!-- </a-form-item>-->
  41. <!-- </a-col>-->
  42. <a-col v-if="showFlowSubmitButton" :span="24" style="text-align: center">
  43. <a-button @click="submitForm">提 交</a-button>
  44. </a-col>
  45. </a-row>
  46. </a-form>
  47. </j-form-container>
  48. </a-spin>
  49. </template>
  50. <script>
  51. import { httpAction, getAction } from '@/api/manage'
  52. import pick from 'lodash.pick'
  53. import { validateDuplicateValue } from '@/utils/util'
  54. import JFormContainer from '@/components/jeecg/JFormContainer'
  55. import JDate from '@/components/jeecg/JDate'
  56. export default {
  57. name: 'AdwebEnquirySiteRuleForm',
  58. components: {
  59. JFormContainer,
  60. JDate,
  61. },
  62. props: {
  63. //流程表单data
  64. formData: {
  65. type: Object,
  66. default: ()=>{},
  67. required: false
  68. },
  69. //表单模式:true流程表单 false普通表单
  70. formBpm: {
  71. type: Boolean,
  72. default: false,
  73. required: false
  74. },
  75. //表单禁用
  76. disabled: {
  77. type: Boolean,
  78. default: false,
  79. required: false
  80. }
  81. },
  82. data () {
  83. return {
  84. form: this.$form.createForm(this),
  85. model: {},
  86. labelCol: {
  87. xs: { span: 24 },
  88. sm: { span: 5 },
  89. },
  90. wrapperCol: {
  91. xs: { span: 24 },
  92. sm: { span: 16 },
  93. },
  94. confirmLoading: false,
  95. validatorRules: {
  96. },
  97. url: {
  98. add: "/adweb/adwebEnquirySiteRule/add",
  99. edit: "/adweb/adwebEnquirySiteRule/edit",
  100. queryById: "/adweb/adwebEnquirySiteRule/queryById"
  101. },
  102. formRules: {
  103. siteId: {
  104. rules: [
  105. { required: true, message: '请选择站点'},
  106. ],
  107. trigger: 'change'
  108. },
  109. word: {
  110. rules: [
  111. { required: true, message: '请输入关键词'},
  112. { max: 100, message: '关键词长度不能超过100'},
  113. ],
  114. trigger: 'blur'
  115. },
  116. blackOrWhite: {
  117. initialValue: 0,
  118. rules: [
  119. { required: true, message: '请选择黑白名单'},
  120. ],
  121. },
  122. },
  123. siteOptions:[],
  124. }
  125. },
  126. computed: {
  127. formDisabled(){
  128. if(this.formBpm===true){
  129. if(this.formData.disabled===false){
  130. return false
  131. }
  132. return true
  133. }
  134. return this.disabled
  135. },
  136. showFlowSubmitButton(){
  137. if(this.formBpm===true){
  138. if(this.formData.disabled===false){
  139. return true
  140. }
  141. }
  142. return false
  143. }
  144. },
  145. created () {
  146. //如果是流程中表单,则需要加载流程表单data
  147. this.showFlowData();
  148. this.getSiteList();
  149. },
  150. methods: {
  151. add () {
  152. this.edit({});
  153. },
  154. edit (record) {
  155. this.form.resetFields();
  156. this.model = Object.assign({}, record);
  157. this.visible = true;
  158. this.$nextTick(() => {
  159. this.form.setFieldsValue(pick(this.model,'siteId','siteCode','word','blackOrWhite','createTime'))
  160. })
  161. },
  162. //渲染流程表单数据
  163. showFlowData(){
  164. if(this.formBpm === true){
  165. let params = {id:this.formData.dataId};
  166. getAction(this.url.queryById,params).then((res)=>{
  167. if(res.success){
  168. this.edit (res.result);
  169. }
  170. });
  171. }
  172. },
  173. submitForm () {
  174. const that = this;
  175. // 触发表单验证
  176. this.form.validateFields((err, values) => {
  177. if (!err) {
  178. that.confirmLoading = true;
  179. let httpurl = '';
  180. let method = '';
  181. if(!this.model.id){
  182. httpurl+=this.url.add;
  183. method = 'post';
  184. }else{
  185. httpurl+=this.url.edit;
  186. method = 'put';
  187. }
  188. let formData = Object.assign(this.model, values);
  189. console.log("表单提交数据",formData)
  190. httpAction(httpurl,formData,method).then((res)=>{
  191. if(res.success){
  192. that.$message.success(res.message);
  193. that.$emit('ok');
  194. }else{
  195. that.$message.warning(res.message);
  196. }
  197. }).finally(() => {
  198. that.confirmLoading = false;
  199. })
  200. }
  201. })
  202. },
  203. popupCallback(row){
  204. this.form.setFieldsValue(pick(row,'siteId','siteCode','status','word','blackOrWhiteList','isEnable','useStatus','createTime'))
  205. },
  206. filterOption(input, option) {
  207. return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
  208. },
  209. //获取站点列表
  210. getSiteList() {
  211. let that = this
  212. getAction('/sys/api/getSiteListByUid').then(function (res) {
  213. if (res.code == 0) {
  214. that.siteOptions = res.data;
  215. } else {
  216. that.$message.error('获取站点失败!')
  217. }
  218. }).catch(function (err) {
  219. console.log(err)
  220. })
  221. },
  222. }
  223. }
  224. </script>