authorityAppEdit.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. <!--
  2. * @Author: your name
  3. * @Date: 2021-11-29 09:18:04
  4. * @LastEditTime: 2022-03-16 15:18:03
  5. * @LastEditors: your name
  6. * @Description: 新增/编辑应用
  7. * @FilePath: \Foshan4A2.0\src\views\authorityManagement\components\addApp.vue
  8. -->
  9. <template>
  10. <div class="addApp flex-wrap">
  11. <!--新增应用-->
  12. <div class="addApp-form r24">
  13. <div class="addApp-form-title flex">
  14. <div class="title">
  15. 编辑应用
  16. <!-- <span class="isqy">
  17. <span>是否启用</span>
  18. <el-radio-group v-model="radio">
  19. <el-radio :label="1">是</el-radio>
  20. <el-radio :label="0">否</el-radio>
  21. </el-radio-group>
  22. </span> -->
  23. </div>
  24. <div class="btn">
  25. <!-- <el-button @click="deleteApp" class="r24" type="danger">删除</el-button> -->
  26. <el-button @click="onSubmit('form')" type="primary">保存</el-button>
  27. </div>
  28. </div>
  29. <div class="addApp-form-content dialog-public-background">
  30. <el-form ref="form" class="form" :rules="rules" :model="form">
  31. <div class="flex">
  32. <el-form-item prop="name" label="应用名称">
  33. <el-input placeholder="请输入应用名称" v-model.trim="form.name"></el-input>
  34. </el-form-item>
  35. <el-form-item label="请求类型">
  36. <el-select v-model="form.id" placeholder="请求类型">
  37. <el-option label="get" :value="1"></el-option>
  38. <el-option label="post" :value="2"></el-option>
  39. </el-select>
  40. <!-- <el-input placeholder="请输入APPID" disabled v-model="form.id"></el-input> -->
  41. </el-form-item>
  42. <el-form-item label="参数类型">
  43. <el-input placeholder="请输入参数类型" v-model.trim="form.app"></el-input>
  44. </el-form-item>
  45. </div>
  46. <el-form-item class="url" prop="url" label="应用地址">
  47. <el-input placeholder="请输入应用地址" v-model.trim="form.url"></el-input>
  48. </el-form-item>
  49. <el-form-item prop="desc" class="desc" label="描述">
  50. <el-input type="textarea" rows="3" placeholder="请输入描述" v-model.trim="form.desc"></el-input>
  51. </el-form-item>
  52. </el-form>
  53. <div class="addApp-form-title domain-title flex">
  54. <div class="title">参数管理</div>
  55. <div class="btn">
  56. <el-button @click="addDomain" type="primary">新增</el-button>
  57. </div>
  58. </div>
  59. <div class="addApp-form-content domain">
  60. <el-form :model="dynamicValidateForm" ref="dynamicValidateForm" label-width="85px" class="demo-dynamic">
  61. <div class="flex" v-for="(domain, index) in dynamicValidateForm.domains" :key="index">
  62. <div class="flex-wrap">
  63. <el-form-item label="参数名称" :prop="'domains.' + index + '.name'">
  64. <el-input v-model.trim="domain.AppInputName"></el-input>
  65. </el-form-item>
  66. <el-form-item label="参数类型" :prop="'domains.' + index + '.type'">
  67. <el-input placeholder="请输入参数类型" v-model.trim="domain.AppInputType"></el-input>
  68. </el-form-item>
  69. <el-form-item label="参数位置" :prop="'domains.' + index + '.place'">
  70. <el-input placeholder="请输入参数位置" v-model.trim="domain.AppInputSite"></el-input>
  71. </el-form-item>
  72. </div>
  73. <div>
  74. <el-button size="small" type="danger" @click.prevent="removeDomain(domain)">删除</el-button>
  75. </div>
  76. </div>
  77. </el-form>
  78. </div>
  79. </div>
  80. </div>
  81. <!--上传logo-->
  82. <div class="addApp-upload">
  83. <div class="flex-wrap">
  84. <div class="upload">
  85. <div class="title">上传Logo</div>
  86. <el-upload action="https://jsonplaceholder.typicode.com/posts/" list-type="picture-card" :on-preview="handlePictureCardPreview" :on-remove="handleRemove">
  87. <i class="el-icon-plus"></i>
  88. </el-upload>
  89. </div>
  90. <div class="preview">
  91. <div class="title">预览</div>
  92. <div class="box"></div>
  93. </div>
  94. </div>
  95. </div>
  96. </div>
  97. </template>
  98. <script>
  99. import {
  100. GetAppDetails,
  101. EditApp,
  102. UpdateAppStatus,
  103. DeleteApp,
  104. } from "@/api/apiAuthority";
  105. import { lengthValidator } from '@/utils/validate'
  106. export default {
  107. name: "Addapp",
  108. data () {
  109. return {
  110. form: {
  111. //应用表单
  112. name: "",
  113. id: "",
  114. app: "",
  115. url: "",
  116. desc: "",
  117. },
  118. rules: {
  119. //表单验证
  120. name: [
  121. { required: true, message: "请输入应用名称", trigger: "blur" },
  122. { validator: lengthValidator, max: 32, message: '长度在 1 到 32 个字符', trigger: ['change', 'blur'] }
  123. ],
  124. url: [{ validator: lengthValidator, max: 128, message: '长度在 1 到 128 个字符', trigger: ['change', 'blur'] }],
  125. desc: [
  126. { required: true, message: "请输入描述", trigger: "blur" },
  127. { validator: lengthValidator, max: 128, message: '长度在 1到 128 个字符', trigger: ['change', 'blur'] }
  128. ],
  129. },
  130. radio: 1,
  131. AppId: null,
  132. type: null, //参数类型
  133. dialogImageUrl: "",
  134. dialogVisible: false,
  135. dynamicValidateForm: {
  136. domains: [{
  137. AppInputName: '',
  138. AppInputType: '',
  139. AppInputSite: ''
  140. }]
  141. },
  142. };
  143. },
  144. created () {
  145. const { AuthId, Status } = this.$route.query;
  146. this.radio = Status;
  147. this.AppId = AuthId;
  148. this.getAppDetails(AuthId);
  149. },
  150. methods: {
  151. handleRemove (file, fileList) {
  152. console.log(file, fileList);
  153. },
  154. handlePictureCardPreview (file) {
  155. this.dialogImageUrl = file.url;
  156. this.dialogVisible = true;
  157. },
  158. //获取应用详情
  159. async getAppDetails (id) {
  160. try {
  161. const res = await GetAppDetails({
  162. AppId: id,
  163. });
  164. if (res.code === 0) {
  165. const { AppName, AppShowId, AppShowSecret, AppDesc, AppUrl, Inputs, RequestType, BodyType } =
  166. res.returnData;
  167. this.form.name = AppName;
  168. // this.form.id = AppShowId;
  169. // this.form.app = AppShowSecret;
  170. this.form.id = Number(RequestType);
  171. this.form.app = BodyType;
  172. this.form.desc = AppDesc;
  173. this.form.url = AppUrl;
  174. this.dynamicValidateForm.domains = Inputs;
  175. } else {
  176. this.$message.error(res.message);
  177. }
  178. } catch (error) {
  179. console.log("出错了", error);
  180. }
  181. },
  182. //应用状态变更
  183. async handleChange (val) {
  184. try {
  185. const res = await UpdateAppStatus({
  186. AppId: this.AppId,
  187. Status: val,
  188. });
  189. if (res.code === 0) {
  190. this.$message.success(res.message);
  191. } else {
  192. this.$message.error(res.message);
  193. }
  194. } catch (error) {
  195. console.log("出错了", error);
  196. }
  197. },
  198. onSubmit (formName) {
  199. this.$refs[formName].validate((valid) => {
  200. if (valid) {
  201. this.editApp();
  202. } else {
  203. return false;
  204. }
  205. });
  206. },
  207. //应用状态变更
  208. async editApp () {
  209. try {
  210. const res = await EditApp({
  211. AppId: this.AppId,
  212. AppDesc: this.form.desc,
  213. AppName: this.form.name,
  214. AppUrl: this.form.url,
  215. RequestType: this.form.id,
  216. BodyType: this.form.app,
  217. Inputs: this.dynamicValidateForm.domains
  218. });
  219. if (res.code === 0) {
  220. this.$message.success(res.message);
  221. this.$store.dispatch("tagsView/delView", this.$route);
  222. this.$router.push("/authority");
  223. } else {
  224. this.$message.error(res.message);
  225. }
  226. } catch (error) {
  227. console.log("出错了", error);
  228. }
  229. },
  230. //应用删除
  231. async deleteApp () {
  232. try {
  233. const res = await DeleteApp({
  234. AppId: this.AppId,
  235. });
  236. if (res.code === 0) {
  237. this.$message.success(res.message);
  238. setTimeout(() => {
  239. this.$router.push("/authority");
  240. }, 2000);
  241. } else {
  242. this.$message.error(res.message);
  243. }
  244. } catch (error) {
  245. console.log("出错了", error);
  246. }
  247. },
  248. removeDomain (item) {
  249. var index = this.dynamicValidateForm.domains.indexOf(item)
  250. if (index !== -1) {
  251. this.dynamicValidateForm.domains.splice(index, 1)
  252. }
  253. },
  254. addDomain () {
  255. this.dynamicValidateForm.domains.push({
  256. AppInputName: '',
  257. AppInputType: '',
  258. AppInputSite: '',
  259. AppId: this.AppId
  260. });
  261. }
  262. },
  263. };
  264. </script>
  265. <style lang="scss" scoped>
  266. .addApp {
  267. padding: 0 64px;
  268. padding-top: 32px;
  269. .addApp-form {
  270. flex: 1;
  271. background: #ffffff;
  272. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  273. border-radius: 16px;
  274. padding: 32px 32px 40px 32px;
  275. .title {
  276. font-size: 24px;
  277. font-family: Microsoft YaHei;
  278. font-weight: bold;
  279. color: #303133;
  280. .isqy {
  281. span {
  282. font-weight: 400;
  283. font-size: 14px;
  284. margin: 0 28px 0 42px;
  285. }
  286. }
  287. }
  288. .addApp-form-content {
  289. margin-top: 40px;
  290. ::v-deep .form {
  291. .el-form-item {
  292. display: flex;
  293. }
  294. .el-input__inner {
  295. height: 32px;
  296. line-height: 32px;
  297. }
  298. .url {
  299. margin-left: 10px;
  300. .el-form-item__content {
  301. width: calc(100% - 70px);
  302. }
  303. }
  304. .content {
  305. .el-form-item__content {
  306. flex: 1;
  307. }
  308. .el-form-item__label {
  309. margin-left: 27px;
  310. }
  311. }
  312. textarea {
  313. resize: none;
  314. }
  315. }
  316. }
  317. .domain {
  318. ::v-deep .demo-dynamic {
  319. .el-input__inner {
  320. height: 32px;
  321. line-height: 32px;
  322. }
  323. .el-button--danger {
  324. position: relative;
  325. top: 4px;
  326. }
  327. }
  328. }
  329. .domain-title {
  330. margin-top: 56px;
  331. }
  332. }
  333. .addApp-upload {
  334. width: 767px;
  335. background: #ffffff;
  336. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  337. border-radius: 16px;
  338. padding: 32px 32px 40px 32px;
  339. .title {
  340. font-size: 24px;
  341. font-family: Microsoft YaHei;
  342. font-weight: bold;
  343. color: #303133;
  344. margin-bottom: 22px;
  345. }
  346. ::v-deep .el-upload--picture-card {
  347. height: 160px;
  348. line-height: 160px;
  349. width: 160px;
  350. background: #f5f7fa;
  351. border: 1px dashed #767eba;
  352. border-radius: 4px;
  353. .el-icon-plus {
  354. font-size: 51px;
  355. color: #767eba;
  356. }
  357. }
  358. .preview {
  359. margin-left: 40px;
  360. .box {
  361. width: 160px;
  362. height: 160px;
  363. background: #3b3c3d;
  364. border-radius: 4px;
  365. }
  366. }
  367. }
  368. }
  369. </style>