add-platform.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. <template>
  2. <div class="page">
  3. <div v-if="step === 1">
  4. <radio-group @change="radioChange">
  5. <div class="list">
  6. <label
  7. class="item"
  8. v-for="item of list"
  9. :key="item.platform"
  10. >
  11. <radio
  12. :value="item.platform"
  13. :checked="false"
  14. :disabled="item.enabled"
  15. />
  16. <div class="name">
  17. {{ item.platformName }}
  18. <span class="enabled" v-if="item.enabled"
  19. >(已关联)</span
  20. >
  21. </div>
  22. </label>
  23. </div>
  24. </radio-group>
  25. <button class="btn" @click="next()">下一步</button>
  26. </div>
  27. <div v-if="step === 2">
  28. <div class="form-card">
  29. <section class="form-item">
  30. <div class="label">
  31. <span class="required">*</span>
  32. 团长id:
  33. </div>
  34. <div class="box">
  35. <div class="con">
  36. <input
  37. type="text"
  38. v-model="pid"
  39. placeholder="90000*****"
  40. />
  41. </div>
  42. </div>
  43. </section>
  44. </div>
  45. <button class="btn" @click="save()">保存</button>
  46. </div>
  47. </div>
  48. </template>
  49. <script>
  50. import MyImage from "../../components/image/index";
  51. export default {
  52. name: "",
  53. components: { MyImage },
  54. // 数据
  55. data() {
  56. return {
  57. switchChecked: false,
  58. groupData: {},
  59. activeValue: "",
  60. pid: "",
  61. step: 1,
  62. list: [],
  63. };
  64. },
  65. onLoad(opts) {
  66. this.getAvailablePlatforms();
  67. },
  68. async onShow() {},
  69. // 函数
  70. methods: {
  71. getAvailablePlatforms() {
  72. this.api
  73. .get("/Group/GetAvailablePlatforms", {}, { pass: true })
  74. .then((res) => {
  75. this.list = res.data;
  76. });
  77. },
  78. radioChange: function (v) {
  79. this.activeValue = v.detail.value;
  80. },
  81. next() {
  82. if (!this.activeValue) {
  83. return this.fn.showModal({
  84. content: "请先选择平台",
  85. showCancel: false,
  86. });
  87. }
  88. this.step = 2;
  89. },
  90. save() {
  91. if (!this.pid) {
  92. return this.fn.showToast(`请输入团长id`);
  93. }
  94. uni.showLoading({
  95. title: "提交中",
  96. });
  97. let sendData = {
  98. pid: this.pid,
  99. platform: this.activeValue,
  100. };
  101. this.api
  102. .get("/Group/GetGroupInfo", sendData, { pass: true })
  103. .then((res) => {
  104. uni.hideLoading();
  105. if (res.success) {
  106. if (res.data) {
  107. this.fn
  108. .showModal({
  109. title: "团长信息",
  110. content: `当前团店铺名称为:${res.data.shopName},是否确认提交`,
  111. })
  112. .then((res) => {
  113. if (res.confirm) {
  114. this.commitPid(sendData);
  115. } else {
  116. }
  117. });
  118. } else {
  119. this.fn.showModal({
  120. title: "获取团长信息失败",
  121. content: "当前团长号未获取到团长信息",
  122. showCancel: false,
  123. });
  124. }
  125. } else {
  126. this.fn.showModal({
  127. title: "获取团长信息失败",
  128. content: res.message,
  129. showCancel: false,
  130. });
  131. }
  132. });
  133. },
  134. commitPid(sendData) {
  135. let pName = "";
  136. for (let item of this.list) {
  137. if (item.platform === this.activeValue) {
  138. pName = item.platformName;
  139. }
  140. }
  141. this.api
  142. .get("/Group/AddJDPlatform", sendData, { pass: true })
  143. .then((res) => {
  144. if (res.success) {
  145. this.fn.showModal({
  146. title: "添加平台成功",
  147. content: `你已成功添加${''},如果需要在群内关联平台,请在群详情下关联平台,获取点击“一键关联群”,现在一键关联`,
  148. confirmText: "一键关联",
  149. cancelText: "稍后关联",
  150. confirmColor: "#42b983",
  151. success: (res2) => {
  152. if (res2.confirm) {
  153. this.enableShopJDPlatform();
  154. } else {
  155. this.router.back();
  156. }
  157. },
  158. });
  159. } else {
  160. this.fn.showModal({
  161. title: "团长号提交失败",
  162. content: res.message,
  163. showCancel: false,
  164. });
  165. }
  166. });
  167. },
  168. enableShopJDPlatform() {
  169. this.api
  170. .get("/Group/enableShopJDPlatform", {}, { pass: true })
  171. .then((res) => {
  172. if (res.success) {
  173. this.fn.showToast("一键关联成功");
  174. this.router.back();
  175. } else {
  176. this.fn.showModal({
  177. title: "一键关联失败",
  178. content: res.message,
  179. showCancel: false,
  180. });
  181. }
  182. });
  183. },
  184. },
  185. // 数据计算
  186. computed: {
  187. user() {
  188. return this.$store.state.user.user;
  189. },
  190. },
  191. // 数据监听
  192. watch: {},
  193. };
  194. </script>
  195. <style lang="scss" scoped>
  196. .page {
  197. min-height: 100vh;
  198. background-color: #fff;
  199. padding-bottom: 4rem;
  200. }
  201. .list {
  202. border-top: 1px solid #f1f1f1;
  203. .item {
  204. height: px(130);
  205. padding: 0 px(35);
  206. font-size: px(44);
  207. display: flex;
  208. // justify-content: space-between;
  209. align-items: center;
  210. border-bottom: 1px solid #f1f1f1;
  211. }
  212. .arrow {
  213. width: px(40);
  214. height: px(40);
  215. flex-shrink: 0;
  216. transform: rotate(180deg);
  217. /deep/ img {
  218. width: px(40);
  219. height: px(40);
  220. }
  221. }
  222. }
  223. switch {
  224. transform: scale(0.7);
  225. }
  226. .btn {
  227. position: fixed;
  228. bottom: 1rem;
  229. left: px(30);
  230. right: px(30);
  231. z-index: 10;
  232. color: #fff;
  233. background-color: rgb(0, 188, 38);
  234. font-size: px(44);
  235. }
  236. .form-card {
  237. background-color: #fff;
  238. padding: 0 px(30);
  239. & ~ .form-card {
  240. margin-top: px(25);
  241. }
  242. .head {
  243. display: flex;
  244. align-items: center;
  245. justify-content: space-between;
  246. height: px(140);
  247. background-color: #fbfbfb;
  248. border-bottom: 1px solid #f1f1f1;
  249. border-top: 1px solid #f1f1f1;
  250. font-size: px(44);
  251. }
  252. }
  253. .form-item {
  254. display: flex;
  255. min-height: px(140);
  256. padding: px(30) 0;
  257. box-sizing: border-box;
  258. align-items: center;
  259. font-size: px(44);
  260. border-bottom: 1px solid #f1f1f1;
  261. &.dis-item {
  262. color: #999;
  263. background: #f9f9f9;
  264. }
  265. .label {
  266. width: px(240);
  267. flex-shrink: 0;
  268. color: #999;
  269. margin-right: px(10);
  270. }
  271. .box {
  272. width: 100%;
  273. position: relative;
  274. input {
  275. width: 100%;
  276. }
  277. }
  278. .tool {
  279. flex-shrink: 0;
  280. color: #999;
  281. margin-left: px(10);
  282. }
  283. .tip {
  284. font-size: px(36);
  285. color: #e6a23c;
  286. margin-top: px(5);
  287. }
  288. textarea,
  289. input {
  290. max-width: 100%;
  291. width: 100%;
  292. }
  293. }
  294. .required {
  295. color: #f00;
  296. font-size: px(44);
  297. &.hide {
  298. visibility: hidden;
  299. }
  300. }
  301. .enabled {
  302. color: #999;
  303. margin-left: px(30);
  304. }
  305. </style>