publish.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812
  1. <template>
  2. <view class="pages">
  3. <form @submit="formSubmit" @reset="formReset">
  4. <view class="form-item-type nomal-top">
  5. <view class="form-item required">
  6. <view class="form-item-til">类目</view>
  7. <view class="form-item-con">
  8. <input type="text" disabled placeholder="商品类目" v-model="params.type" value="" />
  9. </view>
  10. </view>
  11. <!-- <view class="form-item arrow">
  12. <view class="form-item-til">地理位置</view>
  13. <view class="form-item-con" @click="chooseaddr">
  14. <input type="text" placeholder="请选择地理位置" v-model="params.myposition" value="" />
  15. </view>
  16. </view> -->
  17. </view>
  18. <view class="form-item-type">
  19. <view class="form-item required">
  20. <view class="form-item-til">名称</view>
  21. <view class="form-item-con">
  22. <input type="text" placeholder="请输入发布产品名称" v-model="params.name" value="" />
  23. </view>
  24. </view>
  25. <view class="form-item required arrow" @click="openbrand">
  26. <view class="form-item-til">品牌</view>
  27. <view class="form-item-con">
  28. <input type="text" placeholder="请输入品牌" v-model="params.brandName" value="" />
  29. </view>
  30. </view>
  31. <view class="form-item required">
  32. <view class="form-item-til">供应商</view>
  33. <view class="form-item-con">
  34. <input type="text" disabled placeholder="" v-model="params.compName" value="" />
  35. </view>
  36. </view>
  37. <view class="form-item required arrow" @click="openplaceoforigin">
  38. <view class="form-item-til">生产地</view>
  39. <view class="form-item-con">
  40. <input type="text" disabled="disabled" placeholder="" v-model="params.placeOfProduction" value="" />
  41. </view>
  42. </view>
  43. <!-- <view class="form-item arrow" @click="openspec"> -->
  44. <view class="form-item required">
  45. <view class="form-item-til">规格</view>
  46. <view class="form-item-con">
  47. <!-- <text v-for="(item,index) in params.spec">{{item}},</text> -->
  48. <input type="text" placeholder="" v-model="params.spec" value="" />
  49. </view>
  50. </view>
  51. <view class="form-item">
  52. <view class="form-item-til">零售价</view>
  53. <view class="form-item-con">
  54. <input type="text" placeholder="请输入零售价" v-model="params.price" value="" />
  55. </view>
  56. </view>
  57. <view class="form-item">
  58. <view class="form-item-til">市场价</view>
  59. <view class="form-item-con">
  60. <input type="text" placeholder="请输入市场价" v-model="params.originalPrice" value="" />
  61. </view>
  62. </view>
  63. <view class="form-item">
  64. <view class="form-item-til">保质期</view>
  65. <view class="form-item-con">
  66. <input type="text" placeholder="请输入保质期" v-model="params.qualityGuaranteePeriod" value="" />
  67. </view>
  68. </view>
  69. <view class="form-item">
  70. <view class="form-item-til">生产日期</view>
  71. <view class="form-item-con">
  72. <picker mode="date" :value="params.dateOfManufacture" :start="startDate" :end="endDate" @change="bindDateChange">
  73. <view class="uni-input">{{params.dateOfManufacture}}</view>
  74. </picker>
  75. <!-- <input type="text" placeholder="请输入生产日期" v-model="params.productiondate" value="" /> -->
  76. </view>
  77. </view>
  78. <view class="form-item">
  79. <view class="form-item-til">商品介绍</view>
  80. <view class="form-item-con" style="text-align: left;">
  81. <!-- <editor id="editor" class="ql-container" v-model="params.description" placeholder="请输入商品介绍" ></editor> -->
  82. <textarea placeholder="请输入商品介绍" v-model="params.description" auto-height />
  83. <!-- <input type="text" placeholder="请输入商品介绍" v-model="params.description" value="" /> -->
  84. </view>
  85. </view>
  86. <view class="form-item">
  87. <view class="form-item-til">商品货号</view>
  88. <view class="form-item-con">
  89. <input type="text" placeholder="请输入商品货号" v-model="params.productSn" value="" />
  90. </view>
  91. </view>
  92. <view class="form-item">
  93. <view class="form-item-til">计量单位</view>
  94. <view class="form-item-con">
  95. <input type="text" placeholder="请输入计量单位" v-model="params.unit" value="" />
  96. </view>
  97. </view>
  98. <!-- <view class="form-item">
  99. <view class="form-item-til">标签</view>
  100. <view class="form-item-con">
  101. <input type="text" placeholder="请输入标签,用逗号隔开" v-model="params.productlabel" value="" />
  102. </view>
  103. </view> -->
  104. <view class="form-item">
  105. <view class="form-item-til">排序</view>
  106. <view class="form-item-con">
  107. <input type="text" placeholder="排序数字" v-model="params.sort" value="" />
  108. </view>
  109. </view>
  110. </view>
  111. <view class="form-item upfile">
  112. <view class="form-item-til">上传图片</view>
  113. <view class="form-item-con">
  114. <view class="form-item-chooseIMGs-wrap">
  115. <view class="img-item" v-for="(item,index) in pics" :key="index" >
  116. <icon type="cancel" @click="delImg(index)" size="26"/>
  117. <image :src="item" @click="previewPic(index)" class="choosedIMG" ></image>
  118. </view>
  119. </view>
  120. <view class="chooseIMG-btn">
  121. <image class="chooseIMG-btn-img" @click="chooseimg" src="/static/img/icon-upload.png"></image>
  122. </view>
  123. </view>
  124. </view>
  125. </form>
  126. <view class="bottom-btn-wrap">
  127. <button class="bottom-btn" @click="publish" type="primary">发布</button>
  128. </view>
  129. <!-- 页面显示结束 下面是隐藏内容 -->
  130. <!-- 供应商开始 -->
  131. <!-- <view class="supplier-page fix-content translate" :class="{ 'open': supplieropen }" >
  132. <view class="search-wrap search-left-color">
  133. <view class="search">
  134. <view class="searchTxt">
  135. <uni-search-bar placeholder="搜索供应商关键词" @confirm="searchsupplier" @input="searchsupplier" ></uni-search-bar>
  136. </view>
  137. </view>
  138. </view>
  139. <view class="simplepage-wrap">
  140. <mescroll-body ref="mescrollRef0" @init="mescrollInit" @down="downCallback" @up="upCallback" :down="downOption" :up="upOption">
  141. <view>
  142. <view v-for="(item,index) in supplierlist" :key="index" @click="supplierclick(item)" class="simplepage-item">{{item}}</view>
  143. </view>
  144. </mescroll-body>
  145. </view>
  146. </view> -->
  147. <!-- 供应商结束 -->
  148. <!-- 产地开始 -->
  149. <view class="placeoforigin-page fix-content translate" :class="{ 'open': placeoforiginopen }" >
  150. <view class="search-wrap search-left-color">
  151. <view class="search">
  152. <view class="searchTxt">
  153. <uni-search-bar placeholder="搜索产地关键词" @confirm="searchplace" @input="searchplace" ></uni-search-bar>
  154. </view>
  155. </view>
  156. </view>
  157. <!-- 搜索 结束 -->
  158. <scroll-view class="simplepage-wrap" scroll-y="true">
  159. <view v-for="(item,index) in placeoforiginlist" :key="index" @click="placeoforiginclick(item)" class="simplepage-item">{{item.detailAddress}}</view>
  160. </scroll-view>
  161. </view>
  162. <!-- 产地结束 -->
  163. <!-- 品牌开始 -->
  164. <view class="placeoforigin-page fix-content translate" :class="{ 'open':brandopen }" >
  165. <view class="search-wrap search-left-color">
  166. <view class="search">
  167. <view class="searchTxt">
  168. <uni-search-bar placeholder="搜索品牌关键词" @confirm="searchbrand" @input="searchbrand" ></uni-search-bar>
  169. </view>
  170. </view>
  171. </view>
  172. <!-- 搜索 结束 -->
  173. <scroll-view class="simplepage-wrap" scroll-y="true">
  174. <view v-for="(item,index) in brandlist" :key="index" @click="brandclick(item)" class="simplepage-item">{{item.brandName}}</view>
  175. </scroll-view>
  176. </view>
  177. <!-- 牌结束 -->
  178. <!-- 规格开始 -->
  179. <view class="spec-page fix-content translate" :class="{ 'open': specopen }" >
  180. <view class="spec-wrap wrap">
  181. <checkbox-group @change="checkboxChange">
  182. <label v-for="(item,index) in speclist" :key="index" class="checkbox-style" >
  183. <checkbox :value="item.value" :checked="item.checked" />{{item.name}}
  184. </label>
  185. </checkbox-group>
  186. <view class="pecifications-btn-wrap">
  187. <button type="default" class="big-btn big-btn-hollow" @click="resetcheckbox">重置</button>
  188. <button type="default" class="big-btn primary" @click="specclick">确定</button>
  189. </view>
  190. </view>
  191. </view>
  192. <!-- 规格结束 -->
  193. </view>
  194. </template>
  195. <script>
  196. // 引入mescroll-mixins.js
  197. import MescrollMixin from "@/components/mescroll-uni/mescroll-mixins.js";
  198. // 引入mescroll-body组件 (如已在main.js注册全局组件,则省略此步骤)
  199. import MescrollBody from "@/components/mescroll-uni/mescroll-body.vue"; // 注意.vue后缀不能省
  200. import uniSearchBar from '@/components/uni-search-bar/uni-search-bar.vue';
  201. import { bus } from '../../utils/bus.js';
  202. export default {
  203. mixins: [MescrollMixin], // 使用mixin
  204. components: {
  205. MescrollBody,
  206. uniSearchBar,
  207. },
  208. data() {
  209. const currentDate = this.getDate({
  210. format: true
  211. })
  212. return {
  213. mescroll: null, // mescroll实例对象 (此行可删,mixins已默认)
  214. // 下拉刷新的配置(可选, 绝大部分情况无需配置)
  215. downOption: {
  216. // ...
  217. },
  218. // 上拉加载的配置(可选, 绝大部分情况无需配置)
  219. upOption: {
  220. page: {
  221. size: 10 // 每页数据的数量,默认10
  222. },
  223. noMoreSize: 5, // 配置列表的总数量要大于等于5条才显示'-- END --'的提示
  224. empty: {
  225. tip: '暂无相关数据'
  226. }
  227. },
  228. thetoken:'',
  229. params: {
  230. token: '',
  231. type:'',
  232. myposition:'',
  233. name:'',
  234. brandName:'',
  235. brandId:'',
  236. price:'',
  237. originalPrice:'',//市场价
  238. compName:'默认的供应商',//供应商
  239. compId:'',
  240. placeOfProduction:'',//产地
  241. spec:'',//规格
  242. qualityGuaranteePeriod:'',//保质期
  243. dateOfManufacture: currentDate,//生产日期 // productiondate:'',//生产日期
  244. unit:'',//包装
  245. productlabel:'',//标签
  246. albumPics:'',//图片视频
  247. pic:'',
  248. productBigCategoryId:'',//大类ID
  249. productCategoryId:'',//类别id
  250. productCategoryName:'',//类别名称
  251. productBigCategoryName:'',//大类名称
  252. placeOfProductionId:0,
  253. publishStatus:"0",
  254. productSn:'',//商品货号
  255. sort:'',//排序
  256. description:'',
  257. },
  258. pics:[],
  259. //表单检查结果
  260. checkStatus:false,
  261. //供应商
  262. supplieropen:false,
  263. supplierlist:[],
  264. // 产地
  265. placeoforiginopen:false,
  266. placeoforiginlist:[],
  267. brandopen:false,
  268. brandlist:[],
  269. places:[],//临时暂存
  270. brands:[],
  271. // 规格
  272. specopen:false,
  273. speclist:[
  274. {value: '500g/提(250g/盒*2)',name: '500g/提(250g/盒*2)',checked: false},
  275. {value: '10g/罐',name: '10g/罐',checked: false},
  276. {value: '30g/盒',name: '30g/盒',checked: false},
  277. {value: '150g/盒',name: '150g/盒',checked: false},
  278. {value: '30g/盒(1.5g*20瓶)',name: '30g/盒(1.5g*20瓶)',checked: false},
  279. ],
  280. backtyep:1,
  281. }
  282. },
  283. onShow() {
  284. uni.hideTabBar();
  285. let serf = this;
  286. //检查登录,获取token
  287. // let loginRes = this.checkLogin('/pages/publish/publish', '2');
  288. // if (!loginRes) {
  289. // return false;
  290. // }
  291. // serf.params.token = loginRes[0];
  292. },
  293. onHide() {
  294. uni.showTabBar()
  295. },
  296. onLoad(option) {
  297. let self = this;
  298. if(Object.keys(bus.data).length>0){
  299. console.log('bus.data',bus.data)
  300. this.params.type = bus.data.name;
  301. this.params.productBigCategoryId = bus.data.parentId;
  302. this.params.productCategoryId = bus.data.id;
  303. this.params.productBigCategoryName = bus.data.productBigCategoryName;
  304. this.params.productCategoryName = bus.data.name;
  305. // console.log(this.params.type);
  306. };
  307. // console.log(option);
  308. // this.params.type = option.type;
  309. uni.getStorage({
  310. key:'token',
  311. success: function (res) {
  312. self.params.token = res.data;
  313. // console.log(res.data);
  314. }
  315. });
  316. uni.getStorage({
  317. key:'tokenhead',
  318. success: function (res) {
  319. self.params.tokenhead = res.data;
  320. // console.log(res.data);
  321. }
  322. });
  323. //供应商详情
  324. this.thetoken = this.params.tokenhead+this.params.token;
  325. uni.getStorage({
  326. key:'userInfo',
  327. success: function (res) {
  328. self.params.compId = res.data.company.compId;
  329. self.params.compName = res.data.company.compName;
  330. // console.log(res.data);
  331. }
  332. });
  333. this.$api.http.get(this.config.apiBaseurl+'/company/cp/detail',{header: {Authorization:this.thetoken},params:{compId:this.params.compId}}).then(res =>{
  334. console.log('res',JSON.parse(JSON.stringify(res)));
  335. this.placeoforiginlist = res.data.data.origines;
  336. this.brandlist = res.data.data.products;
  337. this.brands = res.data.data.products;
  338. this.places = res.data.data.origines;
  339. this.params.compName= res.data.data.compName;
  340. }).catch( err => {
  341. console.log(err)
  342. });
  343. },
  344. computed: {
  345. startDate() {
  346. return this.getDate('start');
  347. },
  348. endDate() {
  349. return this.getDate('end');
  350. }
  351. },
  352. methods: {
  353. getDate(type) {
  354. const date = new Date();
  355. let year = date.getFullYear();
  356. let month = date.getMonth() + 1;
  357. let day = date.getDate();
  358. if (type === 'start') {
  359. year = year - 60;
  360. } else if (type === 'end') {
  361. year = year + 2;
  362. }
  363. month = month > 9 ? month : '0' + month;;
  364. day = day > 9 ? day : '0' + day;
  365. return `${year}-${month}-${day}`;
  366. },
  367. bindDateChange: function(e) {
  368. this.params.dateOfManufacture = e.target.value
  369. // console.log(this.params.dateOfManufacture);
  370. },
  371. /*mescroll组件初始化的回调,可获取到mescroll对象 (此处可删,mixins已默认)*/
  372. mescrollInit(mescroll) {
  373. this.mescroll = mescroll;
  374. },
  375. downCallback(){
  376. this.mescroll.resetUpScroll(); // 重置列表为第一页 (自动执行 page.num=1, 再触发upCallback方法 )
  377. },
  378. /*上拉加载的回调*/
  379. upCallback(page) {
  380. let pageNum = page.num; // 页码, 默认从1开始
  381. let pageSize = page.size; // 页长, 默认每页10条
  382. this.params = Object.assign(this.params,{page:pageNum,rows:pageSize});
  383. this.$api.http.post(this.config.apiBaseurl+'hotel/reserve/data',this.params,{
  384. header: {
  385. Accept:'application/json',
  386. Authorization: 'Bearer '+ this.params.token, //注意Bearer后面有一空格
  387. }
  388. }).then(data => {
  389. if(data.data.code=='1001'){
  390. // uni.redirectTo({
  391. // url:'/pages/login/login?backpage=/pages/index/index'+'&backtype='+2,
  392. // });
  393. };
  394. console.log(data);
  395. // 接口返回的当前页数据列表 (数组)
  396. let curPageData = data.data.rows;
  397. console.log('curPageData',curPageData);
  398. // 接口返回的当前页数据长度 (如列表有26个数据,当前页返回8个,则curPageLen=8)
  399. let curPageLen = curPageData.length;
  400. // 接口返回的总页数 (如列表有26个数据,每页10条,共3页; 则totalPage=3)
  401. // let totalPage = data.xxx;
  402. // 接口返回的总数据量(如列表有26个数据,每页10条,共3页; 则totalSize=26)
  403. let totalSize = data.data.total;
  404. // 接口返回的是否有下一页 (true/false)
  405. // let hasNext = data.xxx;
  406. //设置列表数据
  407. if(page.num == 1) this.dataList = []; //如果是第一页需手动置空列表
  408. this.dataList = this.dataList.concat(curPageData); //追加新数据
  409. //方法二(推荐): 后台接口有返回列表的总数据量 totalSize
  410. this.mescroll.endBySize(curPageLen, totalSize);
  411. // setTimeout(()=>{
  412. // this.mescroll.endSuccess(curPageLen)
  413. // },20)
  414. }).catch(err => {
  415. this.mescroll.endErr()
  416. console.log(err)
  417. });
  418. },
  419. //选择图片
  420. chooseimg() {
  421. let _self = this;
  422. uni.chooseImage({
  423. // count: 3,
  424. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  425. sourceType: ['album', 'camera'], //从相册选择
  426. success: function(res) {
  427. console.log('res111',res);
  428. const tempFilePaths = res.tempFilePaths;
  429. _self.image = tempFilePaths[0];
  430. console.log("tempFilePaths[0]", tempFilePaths[0]) //能够打印出选中的图片
  431. _self.iconcheck = 1; //点击后图片更改状态由0变成1
  432. console.log('111', JSON.stringify(res.tempFilePaths));
  433. // _self.pics = res.tempFilePaths;
  434. // console.log(_self.pics);
  435. const isLt10M = res.tempFiles[0].size / 1024 / 1024 < 10;
  436. if(!isLt10M) {
  437. uni.showToast({
  438. title: "上传文件大小不能超过 10MB!",
  439. icon:'none'
  440. })
  441. return false;
  442. };
  443. const imgNumber = _self.pics.length<5;
  444. if(!imgNumber) {
  445. uni.showToast({
  446. title: "图片不能超过5张!",
  447. icon:'none'
  448. })
  449. return false;
  450. };
  451. //上传图片
  452. let obj = new Object();
  453. let file=[];
  454. obj.name = "file";
  455. obj.uri = res.tempFiles[0].path;
  456. file.push(obj);
  457. _self.uploadTheImg(file);
  458. },
  459. error: function(e) {
  460. console.log(e);
  461. }
  462. });
  463. },
  464. uploadTheImg(imgFiles){
  465. let _self = this;
  466. //上传图片
  467. uni.uploadFile({
  468. url: _self.config.apiBaseurl + '/upload/fileImg', // 后端api接口
  469. fileType: "image",
  470. files:imgFiles,
  471. // filePath: imgFiles[0], // uni.chooseImage函数调用后获取的本地文件路劲
  472. name: 'file', //后端通过'file'获取上传的文件对象(字段)
  473. formData: {
  474. // file:_self.image,
  475. // openid:_self.openid, //剩下的字段
  476. },
  477. header: {
  478. // "Content-Type":"multipart/form-data",
  479. // Accept:'application/json',
  480. Accept:'*/*',
  481. Authorization: 'Bearer '+ _self.params.token, //注意Bearer后面有一空格
  482. },
  483. success: (res) => {
  484. console.log(JSON.parse(res.data))
  485. let data = JSON.parse(res.data);
  486. _self.pics.push(data.data);
  487. if (res.statusCode == 200) {
  488. uni.showToast({
  489. icon: 'success',
  490. title: "添加成功...",
  491. })
  492. }
  493. },
  494. error(error) {
  495. uni.showToast({
  496. title: "添加失败...",
  497. })
  498. }
  499. });
  500. },
  501. previewPic(index){
  502. // 预览图片
  503. uni.previewImage({
  504. urls: this.pics,
  505. current:index,
  506. longPressActions: {//长按图片显示操作菜单,如不填默认为保存相册
  507. success: function(data) {
  508. console.log('选中了第' + (data.tapIndex + 1) + '个按钮,第' + (data.index + 1) + '张图片');
  509. },
  510. fail: function(err) {
  511. console.log(err.errMsg);
  512. }
  513. }
  514. });
  515. },
  516. //删除图片
  517. delImg(index){
  518. console.log('index',index);
  519. console.log('t',this.pics);
  520. this.pics.splice(index,1);
  521. console.log('t',this.pics);
  522. },
  523. //发布
  524. publish() {
  525. this.params.albumPics = this.pics.toString();
  526. this.params.pic = this.pics[0];
  527. this.checkStatus = this.check_form();
  528. if(this.checkStatus){
  529. let _self = this;
  530. uni.showLoading({
  531. title: '请稍等'
  532. });
  533. this.$api.http.post(this.config.apiBaseurl+'/prod/pub/add',this.params,{
  534. header: {
  535. Accept:'application/json',
  536. Authorization: 'Bearer '+ this.params.token, //注意Bearer后面有一空格
  537. }
  538. }).then(res => {
  539. uni.hideLoading();
  540. console.log('res',res);
  541. if(res.data.message =='暂未登录或token已经过期'){
  542. // let loginurl = `${this.config.apiBaseurl}/wechat/h5/authorize?returnUrl=/pages/publish/publish`
  543. // console.log('loginurl',loginurl);
  544. uni.showToast({
  545. title:res.data.message,
  546. duration: 2000
  547. });
  548. setTimeout(() => {
  549. window.location.replace(this.config.loginUrl);
  550. }, 2000);
  551. };
  552. uni.showToast({
  553. icon:'success',
  554. title:`发布成功,请等待审核!`,
  555. duration: 2000
  556. });
  557. setTimeout(() => {
  558. uni.redirectTo({
  559. url:'/pages/publish/publishsuccess/publishsuccess'
  560. })
  561. }, 2000);
  562. }).catch(err => {
  563. uni.hideLoading();
  564. console.log(err)
  565. });
  566. // setTimeout(function () {
  567. // uni.hideLoading();
  568. // }, 2000);
  569. // setTimeout(()=>{
  570. // uni.showToast({
  571. // icon:'success',
  572. // title:`发布成功,请等待审核!`,
  573. // duration: 2000
  574. // });
  575. // },2000);
  576. // setTimeout(() => {
  577. // uni.redirectTo({
  578. // url:'/pages/publish/publishsuccess/publishsuccess'
  579. // })
  580. // }, 2000);
  581. }
  582. },
  583. //表单验证
  584. check_form() {
  585. console.log('this.params',this.params);
  586. if(this.params.type.length <= 0) {
  587. uni.showToast({icon:'none',title:`请到'我要发布页'选择类别!`,duration: 2000});
  588. return false;
  589. }
  590. // if(this.params.myposition.length <= 0) {
  591. // console.log(this.params.myposition);
  592. // uni.showToast({icon:'none',title:`请填写地理位置!`,duration: 2000});
  593. // return false;
  594. // }
  595. if(this.params.name.length <= 0) {
  596. uni.showToast({icon:'none',title:`请填写商品名称!`,duration: 2000});
  597. return false;
  598. }
  599. if(this.params.brandName.length <= 0) {
  600. uni.showToast({icon:'none',title:`请填写品牌!`,duration: 2000});
  601. return false;
  602. }
  603. // if(this.params.price.length <= 0) {
  604. // uni.showToast({icon:'none',title:`请填写零售价!`,duration: 2000});
  605. // return false;
  606. // }
  607. if(this.params.compName.length <= 0) {
  608. uni.showToast({icon:'none',title:`请填写供应商!`,duration: 2000});
  609. return false;
  610. }
  611. if(this.params.placeOfProduction.length <= 0) {
  612. uni.showToast({icon:'none',title:`请填写生产地!`,duration: 2000});
  613. return false;
  614. }
  615. if(this.params.spec.length <= 0) {
  616. uni.showToast({icon:'none',title:`请填写规格!`,duration: 2000});
  617. return false;
  618. }
  619. // if(this.params.qualityGuaranteePeriod.length <= 0) {
  620. // uni.showToast({icon:'none',title:`请填写保质期!`,duration: 2000});
  621. // return false;
  622. // }
  623. // if(this.params.dateOfManufacture.length <= 0) {
  624. // uni.showToast({icon:'none',title:`请填写生产日期!`,duration: 2000});
  625. // return false;
  626. // }
  627. // if(this.params.unit.length <= 0) {
  628. // uni.showToast({icon:'none',title:`请填写计量单位!`,duration: 2000});
  629. // return false;
  630. // }
  631. // if(this.params.productlabel.length <= 0) {
  632. // uni.showToast({icon:'none',title:`请填写标签!`,duration: 2000});
  633. // return false;
  634. // }
  635. if(this.params.albumPics.length <= 0) {
  636. uni.showToast({icon:'none',title:`请上传图片!`,duration: 2000});
  637. return false;
  638. }
  639. return true;
  640. },
  641. //选择供应商
  642. // supplierclick(name){
  643. // this.params.compName = name;
  644. // this.supplieropen = false;
  645. // this.showback();
  646. // },
  647. //打开供应商弹出框
  648. // opensupplier(){
  649. // this.supplieropen = true;
  650. // this.hideback();
  651. // },
  652. // 搜索供应商
  653. // searchsupplier(e){
  654. // console.log(e);
  655. // },
  656. //选择生产地
  657. placeoforiginclick(item){
  658. console.log('placeoforiginclick',item);
  659. this.params.placeOfProduction = item.detailAddress;
  660. this.params.placeOfProductionId = item.id;
  661. this.placeoforiginopen = false;
  662. this.showback();
  663. },
  664. //打开生产地弹出框
  665. openplaceoforigin(){
  666. this.placeoforiginopen = true;
  667. this.hideback();
  668. },
  669. //选择品牌
  670. brandclick(brand){
  671. // console.log('brand',brand);
  672. this.params.brandName = brand.brandName;
  673. this.params.brandId = brand.brandId;
  674. this.brandopen = false;
  675. this.showback();
  676. },
  677. //打开品牌弹出框
  678. openbrand(){
  679. this.brandopen = true;
  680. this.hideback();
  681. },
  682. //选择规格
  683. specclick(e){
  684. // this.params.spec = name;
  685. this.specopen = false;
  686. this.showback();
  687. },
  688. //打开规格弹出框
  689. openspec(){
  690. this.specopen = true;
  691. this.hideback();
  692. },
  693. // 规格checkbox
  694. checkboxChange: function (e) {
  695. var items = this.speclist,
  696. values = e.detail.value;
  697. for (var i = 0, lenI = items.length; i < lenI; ++i) {
  698. const item = items[i]
  699. if(values.includes(item.value)){
  700. this.$set(item,'checked',true)
  701. }else{
  702. this.$set(item,'checked',false)
  703. }
  704. }
  705. this.params.spec = e.detail.value;
  706. console.log(this.params.spec);
  707. },
  708. resetcheckbox(){
  709. var items = this.speclist;
  710. for (var i = 0, lenI = items.length; i < lenI; ++i) {
  711. const item = items[i];
  712. this.$set(item,'checked',false)
  713. }
  714. this.params.spec = [];
  715. // console.log(this.params.spec);
  716. },
  717. //隐藏返回按钮
  718. hideback(){
  719. // let backbtn = document.getElementsByClassName('uni-page-head-hd')[0];
  720. // backbtn.style.display = 'none';
  721. this.backtyep = 2;
  722. console.log(this.backtyep)
  723. },
  724. // 显示返回按钮
  725. showback(){
  726. // let backbtn = document.getElementsByClassName('uni-page-head-hd')[0];
  727. // backbtn.style.display = 'block';
  728. this.backtyep = 1;
  729. // console.log(this.backtyep)
  730. },
  731. // 导航返回按钮
  732. onBackPress(e){
  733. // console.log(this.backtyep)
  734. if(this.backtyep == 2){
  735. this.placeoforiginopen = false;
  736. this.backtyep = 1;
  737. return true;
  738. };
  739. },
  740. // 选择位置
  741. chooseaddr(){
  742. let self = this;
  743. uni.chooseLocation({
  744. success: function (res) {
  745. self.params.myposition = res.address;
  746. console.log('位置名称:' + res.name);
  747. console.log('详细地址:' + res.address);
  748. console.log('纬度:' + res.latitude);
  749. console.log('经度:' + res.longitude);
  750. }
  751. });
  752. },
  753. // 搜索产地
  754. searchplace(e){
  755. if(e.value){
  756. let place = this.placeoforiginlist.filter(function (value) {
  757. console.log(value.detailAddress);
  758. return value.detailAddress.includes(e.value);
  759. });
  760. console.log('place',place);
  761. this.placeoforiginlist = place;
  762. }else{
  763. this.placeoforiginlist = this.places;
  764. }
  765. },
  766. // 搜索品牌
  767. searchbrand(e){
  768. console.log('品牌',e);
  769. if(e.value){
  770. let brand = this.brandlist.filter(function (value) {
  771. console.log(value);
  772. return value.brandName.includes(e.value);
  773. });
  774. console.log('brand',brand);
  775. this.brandlist = brand;
  776. }else{
  777. this.brandlist = this.brands;
  778. }
  779. }
  780. }
  781. }
  782. </script>
  783. <style >
  784. @import url("./publish.css");
  785. </style>