AdwebSiteBlackIpForm.vue 6.3 KB

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